Compare commits

...

114 Commits

Author SHA1 Message Date
github-actions
f659ef4b7a chore: version v1.132.0 2025-04-23 16:44:47 +00:00
Zack Pollard
bb6cdc99ab ci: correct permissions for building mobile during release flow (#17814) 2025-04-23 11:38:43 -05:00
Weblate (bot)
830b4dadcb chore(web): update translations (#17808)
Co-authored-by: Aleksander Vae Haaland <aleksander@vaehaaland.no>
Co-authored-by: Bezruchenko Simon <worcposj44@gmail.com>
Co-authored-by: Bonov <bonov@mail.ru>
Co-authored-by: Bruno López Barcia <brunolopar46@gmail.com>
Co-authored-by: Chris Axell <chris.axell@gmail.com>
Co-authored-by: Dymitr <zasvab@gmail.com>
Co-authored-by: Florian Ostertag <florian.kuepper@gmail.com>
Co-authored-by: GiannosOB <giannos2105@gmail.com>
Co-authored-by: Happy <happygamernintendoswitch@gmail.com>
Co-authored-by: Hurricane-32 <rodrigorimo@hotmail.com>
Co-authored-by: Indrek Haav <indrek.haav@hotmail.com>
Co-authored-by: Jane <asetmalik@gmail.com>
Co-authored-by: Javier Villanueva García <jvg2203@gmail.com>
Co-authored-by: Junghyuk Kwon <kwon@junghy.uk>
Co-authored-by: Karl Solgård <karl.f91@gmail.com>
Co-authored-by: Leo Bottaro <github@leobottaro.com>
Co-authored-by: Linerly <linerly@proton.me>
Co-authored-by: MannyLama <Manfred@lama.be>
Co-authored-by: Matjaž T <matjaz@moj-svet.si>
Co-authored-by: Miki Mrvos <medolino2009@gmail.com>
Co-authored-by: RWDai <869759838@qq.com>
Co-authored-by: Roi Gabay <roigby@gmail.com>
Co-authored-by: Runskrift <anders@rimfrost.nu>
Co-authored-by: Sebastian <sebastiankiwidk@gmail.com>
Co-authored-by: Shawn <xiaxinx@gmail.com>
Co-authored-by: Sidewave Tech <tech@sidewave.it>
Co-authored-by: Sylvain Pichon <service@spichon.fr>
Co-authored-by: Temuri Doghonadze <temuri.doghonadze@gmail.com>
Co-authored-by: Xo <xocodokie@users.noreply.hosted.weblate.org>
Co-authored-by: Zvonimir <zzrakic@protonmail.com>
Co-authored-by: adri1m64 <adrien.melle@laposte.net>
Co-authored-by: catelixor <catelixor+weblate@proton.me>
Co-authored-by: eav5jhl0 <eav5jhl0@users.noreply.hosted.weblate.org>
Co-authored-by: kiwinho <kiwicaja@gmail.com>
Co-authored-by: millallo <millallo@tiscali.it>
Co-authored-by: pyccl <changcongliang@163.com>
Co-authored-by: stanciupaul <stanciupaul90@yahoo.com>
Co-authored-by: thehijacker <thehijacker@gmail.com>
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: xuars <yago.rana.gayoso@gmail.com>
Co-authored-by: Вячеслав Лукьяненко <madeinchuguev@gmail.com>
Co-authored-by: 灯笼 <gh_denglong@163.com>
2025-04-23 17:26:58 +01:00
Zack Pollard
d2f2f8d672 fix: retrieve version from lockfile and fallback to cli command (#17812) 2025-04-23 17:10:43 +01:00
Alex
be1062474b chore: memory spacing (#17813)
chore(web): memory spacing
2025-04-23 16:02:49 +00:00
bo0tzz
64000d9d76 feat: static analysis job for gha workflows (#17688)
* fix: set persist-credentials explicitly for checkout

https://woodruffw.github.io/zizmor/audits/#artipacked

* fix: minimize permissions scope for workflows

https://woodruffw.github.io/zizmor/audits/#excessive-permissions

* fix: remove potential template injections

https://woodruffw.github.io/zizmor/audits/#template-injection

* fix: only pass needed secrets in workflow_call

https://woodruffw.github.io/zizmor/audits/#secrets-inherit

* fix: push perm for single-arch build jobs

I hadn't realised these push to the registry too :x

* chore: fix formatting

* fix: $

* fix: retag job quoting

* feat: static analysis job for gha workflows

* chore: fix formatting

* fix: clear last zizmor checks

* fix: broken merge

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-23 15:49:06 +00:00
Toni
59fa8fbd0e perf(mobile): remove small thumbnail and cache generated thumbnails (#17792)
* Remove small thumbnail and cache generated thumbnails

* Creating the small thumbnails takes quite some time, which should not be underestimated.
* The time needed to generate the small or big thumbnail is not too different from each other. Therefore there is no real benefit of the small thumbnail and it only adds frustration to the end user experience. That is because the image appeared to have loaded (the visual move from blur to something better) but it's still so bad that it is basically a blur. The better solution is therefore to stay at the blur until the actual thumbnail has loaded.
* Additionaly to the faster generation of the thumbnail, it now also gets cached similarly to the remote thumbnail which already gets cached. This further speeds up the all over usage of the app and prevents a repeatet thumbnail generation when opening the app.
* Decreased the quality from the default 95 to 80 to provide similar quality with much reduces thumbnail size.
* Use try catch around the read of the cache file.
* Use the key provided in the loadImage method instead of the asset of the constructor.

* Use userId instead of ownerId

* Remove import

* Add checksum to thumbnail cache key
2025-04-23 10:31:35 -05:00
Zack Pollard
19746a8685 fix: cache build versions (#17811) 2025-04-23 16:31:18 +01:00
Thomas
987e5ab76c fix(server): start job workers after DB (#17806)
Job workers are currently started on app init, which means they are started
before the DB is initialised. This can be problematic if jobs which need to use
the DB start running before it's ready. It also means that swapping out the
queue implementation for something which uses the DB won't work.
2025-04-23 15:07:32 +00:00
Jason Rasmussen
1b5e981a45 fix: failing ci checks (#17810) 2025-04-23 10:59:54 -04:00
Tin Pecirep
b7a0cf2470 feat: add oauth2 code verifier
* fix: ensure oauth state param matches before finishing oauth flow

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* chore: upgrade openid-client to v6

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* feat: use PKCE for oauth2 on supported clients

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* feat: use state and PKCE in mobile app

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: remove obsolete oauth repository init

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: rewrite callback url if mobile redirect url is enabled

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: propagate oidc client error cause when oauth callback fails

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: adapt auth service tests to required state and PKCE params

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: update sdk types

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: adapt oauth e2e test to work with PKCE

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

* fix: allow insecure (http) oauth clients

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>

---------

Signed-off-by: Tin Pecirep <tin.pecirep@gmail.com>
Co-authored-by: Jason Rasmussen <jason@rasm.me>
2025-04-23 15:08:11 +01:00
Alex
13d6bd67b1 feat: no small local thumbnail (#17787)
* feat: no small local thumbnail

* pr feedback
2025-04-23 14:02:51 +00:00
Toni
1de2eae12d perf(mobile): remove load of thumbnails in the image provider (#17773)
Remove loading of thumbnail in the image provider

* Removed the load of the thumbnail from the local and remote image provider as they shall provide the image, not the thumbnail. The thumbnail gets provided by the thumbnail provider.
* The thumbnail provider is used as the loadingBuilder and the image provider as the imageProvider. Therefore loading the thumbnail in the image provider loads it a second time which is completely redundant, uses precious time and yields no results.

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-23 13:55:51 +00:00
Zack Pollard
bc5875ba8d chore: multithreaded web linting (#17809) 2025-04-23 13:05:31 +01:00
renovate[bot]
0426b574fe fix(deps): update typescript-projects (#17625)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Zack Pollard <zackpollard@ymail.com>
2025-04-23 11:45:38 +00:00
renovate[bot]
2c3658e642 fix(deps): update machine-learning (#17769) 2025-04-23 07:44:30 -04:00
renovate[bot]
a493dab294 chore(deps): update github-actions (#17766)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-23 11:41:51 +00:00
Matthew Momjian
699fdd0d1b fix(mobile): recently added -> taken (#17780) 2025-04-23 12:38:25 +01:00
Weblate (bot)
a774153f67 chore(web): update translations (#17627)
Co-authored-by: Aleksander Vae Haaland <aleksander@vaehaaland.no>
Co-authored-by: Bezruchenko Simon <worcposj44@gmail.com>
Co-authored-by: Bonov <bonov@mail.ru>
Co-authored-by: Bruno López Barcia <brunolopar46@gmail.com>
Co-authored-by: Chris Axell <chris.axell@gmail.com>
Co-authored-by: Dymitr <zasvab@gmail.com>
Co-authored-by: Florian Ostertag <florian.kuepper@gmail.com>
Co-authored-by: GiannosOB <giannos2105@gmail.com>
Co-authored-by: Happy <happygamernintendoswitch@gmail.com>
Co-authored-by: Hurricane-32 <rodrigorimo@hotmail.com>
Co-authored-by: Indrek Haav <indrek.haav@hotmail.com>
Co-authored-by: Jane <asetmalik@gmail.com>
Co-authored-by: Junghyuk Kwon <kwon@junghy.uk>
Co-authored-by: Leo Bottaro <github@leobottaro.com>
Co-authored-by: Linerly <linerly@proton.me>
Co-authored-by: MannyLama <Manfred@lama.be>
Co-authored-by: Matjaž T <matjaz@moj-svet.si>
Co-authored-by: Miki Mrvos <medolino2009@gmail.com>
Co-authored-by: RWDai <869759838@qq.com>
Co-authored-by: Roi Gabay <roigby@gmail.com>
Co-authored-by: Runskrift <anders@rimfrost.nu>
Co-authored-by: Sebastian <sebastiankiwidk@gmail.com>
Co-authored-by: Shawn <xiaxinx@gmail.com>
Co-authored-by: Sidewave Tech <tech@sidewave.it>
Co-authored-by: Sylvain Pichon <service@spichon.fr>
Co-authored-by: Temuri Doghonadze <temuri.doghonadze@gmail.com>
Co-authored-by: Xo <xocodokie@users.noreply.hosted.weblate.org>
Co-authored-by: Zvonimir <zzrakic@protonmail.com>
Co-authored-by: adri1m64 <adrien.melle@laposte.net>
Co-authored-by: catelixor <catelixor+weblate@proton.me>
Co-authored-by: eav5jhl0 <eav5jhl0@users.noreply.hosted.weblate.org>
Co-authored-by: kiwinho <kiwicaja@gmail.com>
Co-authored-by: millallo <millallo@tiscali.it>
Co-authored-by: pyccl <changcongliang@163.com>
Co-authored-by: stanciupaul <stanciupaul90@yahoo.com>
Co-authored-by: thehijacker <thehijacker@gmail.com>
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: xuars <yago.rana.gayoso@gmail.com>
Co-authored-by: Вячеслав Лукьяненко <madeinchuguev@gmail.com>
Co-authored-by: 灯笼 <gh_denglong@163.com>
2025-04-23 12:30:38 +01:00
Bastian Machek
ca12aff3a4 docs: updated community-projects.tsx: lrc-immich-plugin (#17801) 2025-04-23 12:11:42 +01:00
renovate[bot]
550c1c0a10 chore(deps): update prom/prometheus docker digest to 339ce86 (#17767)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-23 12:04:33 +01:00
Mert
92ac1193e6 fix(server): queue android motion assets for transcoding (#17781) 2025-04-23 12:03:28 +01:00
Min Idzelis
2a95eccf6a fix: vscode vitest ext - missing jsdom dev dependency (#17799) 2025-04-22 23:01:22 -04:00
Łukasz Wawrzyk
ee017803bf fix(mobile): use immutable cache keys for local images (#17794) 2025-04-23 02:32:03 +00:00
Alex
0986a71ce3 fix(mobile): revert cache fixes (#17786)
* Revert "fix(mobile): use immutable cache keys for local images (#17736)"

This reverts commit 010b144754.

* Revert "perf(mobile): remove small thumbnail and cache generated thumbnails (#17682)"

This reverts commit b71039e83c.
2025-04-22 12:15:54 -05:00
Alex
af36eaa61b fix(mobile): video player initialization (#17778)
* fix(mobile): video player initialization

* nit
2025-04-22 11:51:20 -04:00
Alex
fda68f972f fix(web): forceDark control app bar doesn't work (#17759) 2025-04-22 09:25:27 -04:00
renovate[bot]
a8eec92da7 chore(deps): update dependency @types/node to ^22.14.1 (#17770)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Dietzler <mail@ddietzler.dev>
2025-04-22 10:18:44 +00:00
Alex
ad8511c978 feat(docs): APK download button (#17768) 2025-04-21 23:27:00 -05:00
Bonne Eggleston
fe8c5e8107 feat: add album start and end dates for storage template (#17188) 2025-04-21 19:54:33 -04:00
Yaros
c70140e707 fix(web): map marker positioning in details pane (#17754)
fix: map marker positioning in details pane
2025-04-21 13:01:38 -05:00
Łukasz Wawrzyk
010b144754 fix(mobile): use immutable cache keys for local images (#17736)
fix(mobile): usse immutable cache keys for local images
2025-04-21 13:00:46 -05:00
Toni
b71039e83c perf(mobile): remove small thumbnail and cache generated thumbnails (#17682)
* Remove small thumbnail and cache generated thumbnails

* Creating the small thumbnails takes quite some time, which should not be underestimated.
* The time needed to generate the small or big thumbnail is not too different from each other. Therefore there is no real benefit of the small thumbnail and it only adds frustration to the end user experience. That is because the image appeared to have loaded (the visual move from blur to something better) but it's still so bad that it is basically a blur. The better solution is therefore to stay at the blur until the actual thumbnail has loaded.
* Additionaly to the faster generation of the thumbnail, it now also gets cached similarly to the remote thumbnail which already gets cached. This further speeds up the all over usage of the app and prevents a repeatet thumbnail generation when opening the app.

* Decrease quality and use try catch

* Decreased the quality from the default 95 to 80 to provide similar quality with much reduces thumbnail size.
* Use try catch around the read of the cache file.

* Replace ImmutableBuffer.fromUint8List with ImmutableBuffer.fromFilePath

* Removed unnecessary comment

* Replace debugPrint with log.severe for catch of error

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-21 12:51:37 -05:00
Jason Rasmussen
56a4aa9ffe refactor: email repository (#17746) 2025-04-21 12:53:37 -04:00
Jason Rasmussen
488dc4efbd refactor: notification-admin controller (#17748) 2025-04-21 10:49:26 -04:00
Yaros
f0ff8581da feat(mobile): map improvements (#17714)
* fix: remove unnecessary db operations in map

* feat: use user's location for map thumbnails

* chore: refactored handleMapEvents

* fix: location fails fetching & update geolocator

* chore: minor refactor

* chore: small style tweak

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-21 05:55:13 +00:00
Yaros
c49fd2065b chore(mobile): bump ios deployment target (#17715)
* chore: bump ios deployment target

* podfile

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-21 05:18:25 +00:00
aviv926
21a6eb30ff feat(docs): documentation update (#17720)
Documentation update
2025-04-20 23:55:58 -05:00
Matthew Momjian
9e063c993c fix(docs): Database dump warnings (#17676)
* docs

* admin page

* roadmap

* whitespace

* whitespace

* no danger
2025-04-20 23:54:37 -05:00
Daniel Dietzler
dd1fcd5be5 chore: remove asset entity (#17703) 2025-04-18 21:39:56 +00:00
Daniel Dietzler
52ae06c119 refactor: remove album entity, update types (#17450) 2025-04-18 23:10:34 +02:00
Daniel Dietzler
854ea13d6a chore: simplify asset getByIds (#17699) 2025-04-18 16:52:41 -04:00
bo0tzz
504930947d fix: various actions workflow security improvements (#17651)
* fix: set persist-credentials explicitly for checkout

https://woodruffw.github.io/zizmor/audits/#artipacked

* fix: minimize permissions scope for workflows

https://woodruffw.github.io/zizmor/audits/#excessive-permissions

* fix: remove potential template injections

https://woodruffw.github.io/zizmor/audits/#template-injection

* fix: only pass needed secrets in workflow_call

https://woodruffw.github.io/zizmor/audits/#secrets-inherit

* fix: push perm for single-arch build jobs

I hadn't realised these push to the registry too :x

* chore: fix formatting

* fix: $

* fix: retag job quoting

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-18 15:10:27 -05:00
Alex
0e6ac87645 feat(mobile): assets + exif stream sync placeholder (#17677)
* feat(mobile): assets + exif stream sync placeholder

* feat(mobile): assets + exif stream sync placeholder

* refactor

* fix: test

* fix:test

* refactor(mobile): sync stream service (#17687)

* refactor: sync stream to use callbacks

* pr feedback

* pr feedback

* pr feedback

* fix: test

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
Co-authored-by: Alex Tran <alex.tran1502@gmail.com>

---------

Co-authored-by: shenlong <139912620+shenlong-tanwen@users.noreply.github.com>
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2025-04-18 19:01:16 +00:00
Yaros
bd2deda50c feat(mobile): search on places page (#17679)
* feat: search on places page

* chore: use searchfield on people page
2025-04-18 11:19:51 -05:00
Jason Rasmussen
160bb492a2 fix: skip initial kysely migration for existing installs (#17690)
* fix: skip initial kysely migration for existing installs

* Update docs/src/pages/errors.md

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-18 11:19:11 -05:00
Jason Rasmussen
6474a78b8b feat: initial kysely migration file (#17678) 2025-04-17 17:38:47 -04:00
Jason Rasmussen
e275f2d8b3 feat: add foreign key indexes (#17672) 2025-04-17 14:41:06 -04:00
shenlong
81ed54aa61 feat: user sync stream (#16862)
* refactor: user entity

* chore: rebase fixes

* refactor: remove int user Id

* refactor: migrate store userId from int to string

* refactor: rename uid to id

* feat: drift

* pr feedback

* refactor: move common overrides to mixin

* refactor: remove int user Id

* refactor: migrate store userId from int to string

* refactor: rename uid to id

* feat: user & partner sync stream

* pr changes

* refactor: sync service and add tests

* chore: remove generated change

* chore: move sync model

* rebase: convert string ids to byte uuids

* rebase

* add processing logs

* batch db calls

* rewrite isolate manager

* rewrite with worker_manager

* misc fixes

* add sync order test

---------

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-17 10:25:27 -05:00
Daniel Dietzler
067338b0ed chore: remove transfer encoding header (#17671) 2025-04-17 09:46:52 -05:00
Min Idzelis
5e68f8c519 fix: longpress triggers contextmenu (#17602) 2025-04-16 19:24:26 -04:00
Mert
242a559e0f refactor: query for fetching faces and people of assets (#17661)
* use json instead of jsonb

* missing condition
2025-04-16 19:00:55 -04:00
Jonathan Jogenfors
ed2b54527c chore(server): don't check null dates (#17664) 2025-04-16 18:40:08 -04:00
Daniel Dietzler
8b38f8a58d fix: do not select album in time bucket query (#17662) 2025-04-16 17:52:22 -04:00
yparitcher
29b30570bf fix: use IMMICH_HOST in microservices (#17659) 2025-04-16 23:05:12 +02:00
Daniel Dietzler
586a7a173b refactor: handle detect faces job query (#17660) 2025-04-16 22:52:54 +02:00
Daniel Dietzler
1bbfacfc09 refactor: more job query stuff (#17658) 2025-04-16 22:10:20 +02:00
Daniel Dietzler
85c2d36d99 refactor: dedicated get album thumbnail files query (#17657) 2025-04-16 21:10:27 +02:00
Jason Rasmussen
8cefa0b84b refactor: migrate some e2e to medium (#17640) 2025-04-16 14:59:08 -04:00
Daniel Dietzler
f50e5d006c refactor: dedicated queries for asset jobs (#17652) 2025-04-16 14:08:49 -04:00
renovate[bot]
8f8ff3adc0 fix(deps): update machine-learning (#17610) 2025-04-16 10:56:40 -04:00
Zack Pollard
c4c35ed140 fix(ci): images missing correct OCI annotations and PR cache (#17378)
Co-authored-by: secustor <sebastian@poxhofer.at>
2025-04-15 22:31:23 +01:00
Nils Uliczka
be2f670d35 fix: skip places that no longer exist in geo import (#17637) 2025-04-15 21:27:47 +00:00
Alex
7efcba2b12 chore(mobile): flutter 3.29.3 (#17638)
* chore(mobile): flutter 3.29.3

* chore(mobile): flutter 3.29.3

* upgrade background_downloader
2025-04-15 21:03:22 +00:00
Paul Puschmann
459c815086 feat(docs): Clarify the usage of immich-cli with Docker (#17595)
Add some explanation how to use the various usage parameters together
with the `immich-cli` in the container.
2025-04-15 20:08:55 +00:00
Alex
36fa61c013 fix(mobile): new loading icon too small (#17636) 2025-04-15 20:08:34 +00:00
Jason Rasmussen
8da5f21fcf refactor: medium tests (#17634) 2025-04-15 15:54:23 -04:00
Jonathan Jogenfors
76db8cf604 refactor(server): remove asset placeholder (#17621)
chore: remove AssetEntityPlaceholder

Co-authored-by: Jason Rasmussen <jason@rasm.me>
2025-04-15 15:53:49 -04:00
Daniel Dietzler
21becbf1b0 refactor: dedicated query for asset migration job (#17631) 2025-04-15 15:49:15 -04:00
Min Idzelis
26f0ea4cb5 feat: responsive controlbar (#17601) 2025-04-15 14:39:30 -05:00
Alex
19e5a6f68f chore(doc): translation instruction for mobile app (#17629) 2025-04-15 14:31:13 -05:00
shenlong
78f8e23834 fix(mobile): exif not updated on sync (#17633)
Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
2025-04-15 14:30:58 -05:00
Daniel Dietzler
5bceefce75 refactor: stream assets for thumbnail job (#17623) 2025-04-15 19:53:28 +02:00
Jason Rasmussen
b710ad36f3 feat: upgrade kysely (#17630)
* feat: upgrade kysely

* chore: pr feedback
2025-04-15 13:26:56 -04:00
Daniel Dietzler
270d178a2e fix: unsafe cast (#17590) 2025-04-15 11:35:00 -05:00
Daniel Dietzler
309528c807 chore: upgrade package locks (#17626) 2025-04-15 11:34:21 -05:00
Toni
7c422363fb chore(mobile): clear the backup detail view when no backup is in progress (#17619)
Clear the backup detail view when no backup is in progress

* When no backup is in progress, display a simple "-" for the details in the upload file info, instead of the data of the last uploaded asset.
* This prevents confusion if a upload job is stuck or just finished.
2025-04-15 11:30:24 -05:00
Weblate (bot)
3eb316abea chore(web): cleanup unused translations (#17624) 2025-04-15 17:24:29 +01:00
renovate[bot]
b3371e16f2 fix(deps): update typescript-projects (#17611)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 15:55:03 +00:00
Alex
b2c903c000 feat(mobile): use Weblate for i18n (2) (#17620)
* feat(mobile): use Weblate for i18n (2)

* remove old translation files

* dedup keys

* remove migration report

* chore

* remove localizely.yml
2025-04-15 15:54:26 +00:00
Jason Rasmussen
17e720440d refactor: new asset-job repository (#17622)
* refactor: new asset-job repository

* fix: broken medium tests on main
2025-04-15 10:24:51 -04:00
Alex
a522130122 feat(mobile): use Weblate for i18n (1) (#17609) 2025-04-15 08:30:01 -05:00
Weblate (bot)
cecd9c24a4 chore(web): update translations (#17438)
Co-authored-by: Alex <rainbowpulp@gmail.com>
Co-authored-by: Andreas Johansen <andreas@josern.com>
Co-authored-by: Bezruchenko Simon <worcposj44@gmail.com>
Co-authored-by: Ciprriann <cipriannebeja@gmail.com>
Co-authored-by: Eskuero <3skuero@gmail.com>
Co-authored-by: Fjuro <fjuro@alius.cz>
Co-authored-by: GiannosOB <giannos2105@gmail.com>
Co-authored-by: Gustavo Batista <gustavo_prg@hotmail.com>
Co-authored-by: Happy <happygamernintendoswitch@gmail.com>
Co-authored-by: Indrek Haav <indrek.haav@hotmail.com>
Co-authored-by: Josep Mengual <josep@truita.es>
Co-authored-by: Leo Bottaro <github@leobottaro.com>
Co-authored-by: Leonard Baki <leonard.baki@gmail.com>
Co-authored-by: Matjaž T <matjaz@moj-svet.si>
Co-authored-by: Miki Mrvos <medolino2009@gmail.com>
Co-authored-by: Molnar Eduard <edimolnar@posteo.ro>
Co-authored-by: Nergis <me@nergis.dev>
Co-authored-by: Nghiem Long Phan <nghiemlong@gmail.com>
Co-authored-by: Shawn <xiaxinx@gmail.com>
Co-authored-by: Stein-Aksel Basma <stein-aksel@basma.no>
Co-authored-by: Sylvain Pichon <service@spichon.fr>
Co-authored-by: TheScientistPT <joao.ed.reis.gomes@gmail.com>
Co-authored-by: User 123456789 <w0g-1es-5qq@cld3.com>
Co-authored-by: Xo <xocodokie@users.noreply.hosted.weblate.org>
Co-authored-by: alexxss <rainbowpulp+weblate@gmail.com>
Co-authored-by: anton garcias <isaga.percompartir@gmail.com>
Co-authored-by: bittin1ddc447d824349b2 <bittin@reimu.nl>
Co-authored-by: hachimaru <eugenereuh@gmail.com>
Co-authored-by: kylo32 <kylo32@gmail.com>
Co-authored-by: millallo <millallo@tiscali.it>
Co-authored-by: shiuh67 <shiuh.cheng@gmail.com>
Co-authored-by: stelle <itsazripp2@gmail.com>
Co-authored-by: szelek <janek.szelewicz@gmail.com>
Co-authored-by: timmy61109 <qazzxcasdqwewsxedc@gmail.com>
Co-authored-by: waclaw66 <waclaw66@seznam.cz>
Co-authored-by: xuars <yago.rana.gayoso@gmail.com>
2025-04-15 14:27:57 +01:00
Jason Rasmussen
f189c7b101 refactor: medium tests (#17599) 2025-04-15 08:53:14 -04:00
renovate[bot]
c5f087a3ca chore(deps): update mcr.microsoft.com/devcontainers/typescript-node:22 docker digest to a20b8a3 (#17606)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:56:00 +01:00
renovate[bot]
72f6d7791e chore(deps): update dependency @sveltejs/kit to v2.20.6 [security] (#17603)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:47:30 +01:00
renovate[bot]
f73fce1046 chore(deps): update base-image to v202504081114 (major) (#17613)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:47:10 +01:00
renovate[bot]
f2edcde1b2 chore(deps): update actions/create-github-app-token action to v2 (#17612)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:04:43 +01:00
renovate[bot]
9d0dd9dff8 chore(deps): update github-actions (#17605)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-15 12:03:45 +01:00
Mert
c3d10c5be2 refactor(server): non-nullable file metadata (#17598) 2025-04-15 12:03:31 +01:00
Andrei Mironov
bd92748ddd perf(mobile): optimize date loading with batch loading (#17240)
* perf(mobile): optimize date loading with batch loading

Introduce DateBatchLoader to reduce the number of database queries by loading dates in batches, improving performance when querying large lists.

* remove unused totalCount parameter from DateBatchLoader

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-14 19:06:36 +00:00
Toni
aad5c3bada chore(mobile): don't show drag scroll date in search page (#17594)
Dont show drag scroll date in search page

* When using the drag scroll, the date of the current image is shown. This is now made toggleable.
* For the mobile search result page, the display of the date is now disabled because the results are not sorted by date and therefore a display of the date is not desirable.
2025-04-14 14:03:18 -05:00
Jason Rasmussen
b2753103c6 chore: remove unused logger (#17593) 2025-04-14 15:01:49 -04:00
Aamir Azad
e3f3baadb0 fix(web): improve mobile web album viewer padding (#17575)
Reduce margin on mobile web album viewer
2025-04-14 13:46:53 -05:00
Daniel Dietzler
0b69d1c147 refactor: selected columns in queries (#17589) 2025-04-14 13:34:06 -05:00
Min Idzelis
5a51ad3622 fix: responsive: timeline glitch and keyboard-accessible scrubber (#17556)
* fix: responsive: timeline glitch

* lint

* fix margin-right on mobile

---------

Co-authored-by: Alex <alex.tran1502@gmail.com>
2025-04-14 11:56:40 -05:00
AutisticShark
664c99278a feat(mobile): remove duplicated i18n file (#17591)
https://github.com/immich-app/immich/issues/8946

Co-authored-by: Cat <cat@nextpanel.dev>
2025-04-14 11:36:18 -05:00
Daniel Dietzler
184e142d87 refactor: migrate asset job status entity (#17560) 2025-04-14 12:21:56 +02:00
Andreas Tollkötter
8b00578c7b fix: read longitude and latitude when reverse geocoding is off (#17558) 2025-04-14 10:43:46 +01:00
Erik Nygren
7562088fac feat(server): parse EXIF creation time for some insta360 images (#17564)
It seems insta360 stores metadata in XMP GPano tags, with their own
non-standard and undocumented addition `SourceImageCreateTime`. For some
pictures this is the only EXIF tag containing a creation time.
2025-04-13 23:44:18 -04:00
Ben
79d4ce2d6d fix(web): search bar deactivates when focus exits (#17549)
* fix(web): search bar deactivates when focus exits

* fix: disable search bar on destroy

For example, on the search page. If the escape key is pressed while the advanced filters button is focused, the search page will close but the search bar will remain activated.
2025-04-13 22:43:50 -05:00
Min Idzelis
983f656a6b fix: in dev, delay web server start until api server is started (#17563) 2025-04-13 10:06:35 -04:00
Alex
ab2a7006f9 chore(mobile): small visual fix and update (#17547)
* chore(mobile): small visual fix and update

* update

* update

* remove design placeholder
2025-04-13 08:01:32 -05:00
Min Idzelis
1f18fe31f0 fix: occasional empty buckets, after canceled loads (#17552) 2025-04-13 07:50:24 -05:00
Daniel Dietzler
a373034629 refactor: migrate stacks (#17559)
chore: migrate stacks
2025-04-12 08:33:35 -04:00
renovate[bot]
5dac315af7 fix(deps): update dependency @nestjs/common to v11.0.16 [security] (#17557)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-04-12 12:31:18 +02:00
Min Idzelis
8309b73a02 fix: responsive: long press while scroll (#17555) 2025-04-11 18:28:36 -04:00
Min Idzelis
e440cbe353 feat: responsive-web: shrink mem-lane (#17550) 2025-04-11 17:10:58 -05:00
Daniel Dietzler
5548eb0dad fix: live photo hiding (#17548) 2025-04-11 17:09:58 -05:00
Min Idzelis
3bec8dc337 refactor: responsive: device units (#17551) 2025-04-11 17:09:10 -05:00
Min Idzelis
5bcb58c3e7 feat: responsive: skeleton (#17553)
feature: responsive: skeleton
2025-04-11 17:04:48 -05:00
Min Idzelis
c62fc155c8 feat: show thumbhash behind load error, if possible (#17554)
* feat: show thumbhash behind load error, if possible

* forgot this
2025-04-11 17:01:51 -05:00
Rudhra Raveendran
40e3322b25 docs: Add PowerShell example for running web client only (#17546)
Add PowerShell example for running web client only
2025-04-11 17:02:21 -04:00
Mert
25f2b9602f refactor(server): remove face, person and face search entities (#17535)
* remove face, person and face search entities

update tests and mappers

check if face relation exists

update sql

unused imports

* pr feedback

generate sql, remove unused imports
2025-04-11 14:44:45 -04:00
520 changed files with 41664 additions and 46719 deletions

View File

@@ -1,4 +1,4 @@
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:b0b88ef6a5abf21194343d2c5b2829dddd9be1142f65f6a5e4390a51d5a70dd8
ARG BASEIMAGE=mcr.microsoft.com/devcontainers/typescript-node:22@sha256:a20b8a3538313487ac9266875bbf733e544c1aa2091df2bb99ab592a6d4f7399
FROM ${BASEIMAGE}
# Flutter SDK

View File

@@ -7,6 +7,15 @@ on:
ref:
required: false
type: string
secrets:
KEY_JKS:
required: true
ALIAS:
required: true
ANDROID_KEY_PASSWORD:
required: true
ANDROID_STORE_PASSWORD:
required: true
pull_request:
push:
branches: [main]
@@ -15,14 +24,21 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
@@ -38,24 +54,19 @@ jobs:
build-sign-android:
name: Build and sign Android
needs: pre-job
permissions:
contents: read
# Skip when PR from a fork
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' && needs.pre-job.outputs.should_run == 'true' }}
runs-on: macos-14
steps:
- name: Determine ref
id: get-ref
run: |
input_ref="${{ inputs.ref }}"
github_ref="${{ github.sha }}"
ref="${input_ref:-$github_ref}"
echo "ref=$ref" >> $GITHUB_OUTPUT
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: ${{ steps.get-ref.outputs.ref }}
ref: ${{ inputs.ref || github.sha }}
persist-credentials: false
- uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4
- uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
with:
distribution: 'zulu'
java-version: '17'
@@ -78,6 +89,10 @@ jobs:
working-directory: ./mobile
run: flutter pub get
- name: Generate translation file
run: make translation
working-directory: ./mobile
- name: Build Android App Bundle
working-directory: ./mobile
env:

View File

@@ -8,31 +8,38 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
cleanup:
name: Cleanup
runs-on: ubuntu-latest
permissions:
contents: read
actions: write
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Cleanup
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REF: ${{ github.ref }}
run: |
gh extension install actions/gh-actions-cache
REPO=${{ github.repository }}
BRANCH=${{ github.ref }}
echo "Fetching list of cache keys"
cacheKeysForPR=$(gh actions-cache list -R $REPO -B $BRANCH -L 100 | cut -f 1 )
cacheKeysForPR=$(gh actions-cache list -R $REPO -B ${REF} -L 100 | cut -f 1 )
## Setting this to not fail the workflow while deleting cache keys.
set +e
echo "Deleting caches..."
for cacheKey in $cacheKeysForPR
do
gh actions-cache delete $cacheKey -R $REPO -B $BRANCH --confirm
gh actions-cache delete $cacheKey -R "$REPO" -B "${REF}" --confirm
done
echo "Done"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -16,21 +16,25 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
packages: write
permissions: {}
jobs:
publish:
name: CLI Publish
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./cli
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './cli/.nvmrc'
registry-url: 'https://registry.npmjs.org'
@@ -48,11 +52,16 @@ jobs:
docker:
name: Docker
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
needs: publish
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Set up QEMU
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0

View File

@@ -24,6 +24,8 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
analyze:
name: Analyze
@@ -43,6 +45,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL

View File

@@ -12,18 +12,21 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
packages: write
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run_server: ${{ steps.found_paths.outputs.server == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_ml: ${{ steps.found_paths.outputs.machine-learning == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
@@ -45,6 +48,9 @@ jobs:
retag_ml:
name: Re-Tag ML
needs: pre-job
permissions:
contents: read
packages: write
if: ${{ needs.pre-job.outputs.should_run_ml == 'false' && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
@@ -58,18 +64,22 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Re-tag image
env:
REGISTRY_NAME: 'ghcr.io'
REPOSITORY: ${{ github.repository_owner }}/immich-machine-learning
TAG_OLD: main${{ matrix.suffix }}
TAG_PR: ${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
TAG_COMMIT: commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
run: |
REGISTRY_NAME="ghcr.io"
REPOSITORY=${{ github.repository_owner }}/immich-machine-learning
TAG_OLD=main${{ matrix.suffix }}
TAG_PR=${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
TAG_COMMIT=commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_PR $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_COMMIT $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_PR}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_COMMIT}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
retag_server:
name: Re-Tag Server
needs: pre-job
permissions:
contents: read
packages: write
if: ${{ needs.pre-job.outputs.should_run_server == 'false' && !github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
strategy:
@@ -83,18 +93,22 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Re-tag image
env:
REGISTRY_NAME: 'ghcr.io'
REPOSITORY: ${{ github.repository_owner }}/immich-server
TAG_OLD: main${{ matrix.suffix }}
TAG_PR: ${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
TAG_COMMIT: commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
run: |
REGISTRY_NAME="ghcr.io"
REPOSITORY=${{ github.repository_owner }}/immich-server
TAG_OLD=main${{ matrix.suffix }}
TAG_PR=${{ github.event.number == 0 && github.ref_name || format('pr-{0}', github.event.number) }}${{ matrix.suffix }}
TAG_COMMIT=commit-${{ github.event_name != 'pull_request' && github.sha || github.event.pull_request.head.sha }}${{ matrix.suffix }}
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_PR $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
docker buildx imagetools create -t $REGISTRY_NAME/$REPOSITORY:$TAG_COMMIT $REGISTRY_NAME/$REPOSITORY:$TAG_OLD
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_PR}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
docker buildx imagetools create -t "${REGISTRY_NAME}/${REPOSITORY}:${TAG_COMMIT}" "${REGISTRY_NAME}/${REPOSITORY}:${TAG_OLD}"
build_and_push_ml:
name: Build and Push ML
needs: pre-job
permissions:
contents: read
packages: write
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
runs-on: ${{ matrix.runner }}
env:
@@ -148,6 +162,8 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3.10.0
@@ -161,11 +177,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate cache key suffix
env:
REF: ${{ github.ref_name }}
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
echo "CACHE_KEY_SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV
else
echo "CACHE_KEY_SUFFIX=$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')" >> $GITHUB_ENV
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
echo "CACHE_KEY_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
fi
- name: Generate cache target
@@ -175,9 +194,15 @@ jobs:
# Essentially just ignore the cache output (forks can't write to registry cache)
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
else
echo "cache-to=type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }},mode=max,compression=zstd" >> $GITHUB_OUTPUT
echo "cache-to=type=registry,ref=${GHCR_REPO}-build-cache:${PLATFORM_PAIR}-${{ matrix.device }}-${CACHE_KEY_SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
fi
- name: Generate docker image tags
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
env:
DOCKER_METADATA_PR_HEAD_SHA: 'true'
- name: Build and push image
id: build
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
@@ -185,7 +210,7 @@ jobs:
context: ${{ env.context }}
file: ${{ env.file }}
platforms: ${{ matrix.platforms }}
labels: ${{ steps.metadata.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: ${{ steps.cache-target.outputs.cache-to }}
cache-from: |
type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }}
@@ -199,7 +224,7 @@ jobs:
BUILD_SOURCE_COMMIT=${{ github.sha }}
- name: Export digest
run: |
run: | # zizmor: ignore[template-injection]
mkdir -p ${{ runner.temp }}/digests
digest="${{ steps.build.outputs.digest }}"
touch "${{ runner.temp }}/digests/${digest#sha256:}"
@@ -215,6 +240,10 @@ jobs:
merge_ml:
name: Merge & Push ML
runs-on: ubuntu-latest
permissions:
contents: read
actions: read
packages: write
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' && !github.event.pull_request.head.repo.fork }}
env:
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/immich-machine-learning
@@ -287,12 +316,31 @@ jobs:
- name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.GHCR_REPO }}@sha256:%s ' *)
# Process annotations
declare -a ANNOTATIONS=()
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
while IFS= read -r annotation; do
# Extract key and value by removing the manifest: prefix
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
key="${BASH_REMATCH[1]}"
value="${BASH_REMATCH[2]}"
# Use array to properly handle arguments with spaces
ANNOTATIONS+=(--annotation "index:$key=$value")
fi
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
fi
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
SOURCE_ARGS=$(printf "${GHCR_REPO}@sha256:%s " *)
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS
build_and_push_server:
name: Build and Push Server
runs-on: ${{ matrix.runner }}
permissions:
contents: read
packages: write
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
env:
@@ -316,6 +364,8 @@ jobs:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@b5ca514318bd6ebac0fb2aedd5d36ec1b5c232a2 # v3
@@ -329,11 +379,14 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate cache key suffix
env:
REF: ${{ github.ref_name }}
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
echo "CACHE_KEY_SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV
else
echo "CACHE_KEY_SUFFIX=$(echo ${{ github.ref_name }} | sed 's/[^a-zA-Z0-9]/-/g')" >> $GITHUB_ENV
SUFFIX=$(echo "${REF}" | sed 's/[^a-zA-Z0-9]/-/g')
echo "CACHE_KEY_SUFFIX=${SUFFIX}" >> $GITHUB_ENV
fi
- name: Generate cache target
@@ -343,9 +396,15 @@ jobs:
# Essentially just ignore the cache output (forks can't write to registry cache)
echo "cache-to=type=local,dest=/tmp/discard,ignore-error=true" >> $GITHUB_OUTPUT
else
echo "cache-to=type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ matrix.device }}-${{ env.CACHE_KEY_SUFFIX }},mode=max,compression=zstd" >> $GITHUB_OUTPUT
echo "cache-to=type=registry,ref=${GHCR_REPO}-build-cache:${PLATFORM_PAIR}-${CACHE_KEY_SUFFIX},mode=max,compression=zstd" >> $GITHUB_OUTPUT
fi
- name: Generate docker image tags
id: meta
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 # v5
env:
DOCKER_METADATA_PR_HEAD_SHA: 'true'
- name: Build and push image
id: build
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
@@ -353,7 +412,7 @@ jobs:
context: ${{ env.context }}
file: ${{ env.file }}
platforms: ${{ matrix.platform }}
labels: ${{ steps.metadata.outputs.labels }}
labels: ${{ steps.meta.outputs.labels }}
cache-to: ${{ steps.cache-target.outputs.cache-to }}
cache-from: |
type=registry,ref=${{ env.GHCR_REPO }}-build-cache:${{ env.PLATFORM_PAIR }}-${{ env.CACHE_KEY_SUFFIX }}
@@ -367,7 +426,7 @@ jobs:
BUILD_SOURCE_COMMIT=${{ github.sha }}
- name: Export digest
run: |
run: | # zizmor: ignore[template-injection]
mkdir -p ${{ runner.temp }}/digests
digest="${{ steps.build.outputs.digest }}"
touch "${{ runner.temp }}/digests/${digest#sha256:}"
@@ -383,6 +442,10 @@ jobs:
merge_server:
name: Merge & Push Server
runs-on: ubuntu-latest
permissions:
contents: read
actions: read
packages: write
if: ${{ needs.pre-job.outputs.should_run_server == 'true' && !github.event.pull_request.head.repo.fork }}
env:
GHCR_REPO: ghcr.io/${{ github.repository_owner }}/immich-server
@@ -441,12 +504,29 @@ jobs:
- name: Create manifest list and push
working-directory: ${{ runner.temp }}/digests
run: |
docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
$(printf '${{ env.GHCR_REPO }}@sha256:%s ' *)
# Process annotations
declare -a ANNOTATIONS=()
if [[ -n "$DOCKER_METADATA_OUTPUT_JSON" ]]; then
while IFS= read -r annotation; do
# Extract key and value by removing the manifest: prefix
if [[ "$annotation" =~ ^manifest:(.+)=(.+)$ ]]; then
key="${BASH_REMATCH[1]}"
value="${BASH_REMATCH[2]}"
# Use array to properly handle arguments with spaces
ANNOTATIONS+=(--annotation "index:$key=$value")
fi
done < <(jq -r '.annotations[]' <<< "$DOCKER_METADATA_OUTPUT_JSON")
fi
TAGS=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
SOURCE_ARGS=$(printf "${GHCR_REPO}@sha256:%s " *)
docker buildx imagetools create $TAGS "${ANNOTATIONS[@]}" $SOURCE_ARGS
success-check-server:
name: Docker Build & Push Server Success
needs: [merge_server, retag_server]
permissions: {}
runs-on: ubuntu-latest
if: always()
steps:
@@ -455,11 +535,13 @@ jobs:
run: exit 1
- name: All jobs passed or skipped
if: ${{ !(contains(needs.*.result, 'failure')) }}
# zizmor: ignore[template-injection]
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"
success-check-ml:
name: Docker Build & Push ML Success
needs: [merge_ml, retag_ml]
permissions: {}
runs-on: ubuntu-latest
if: always()
steps:
@@ -468,4 +550,5 @@ jobs:
run: exit 1
- name: All jobs passed or skipped
if: ${{ !(contains(needs.*.result, 'failure')) }}
# zizmor: ignore[template-injection]
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"

View File

@@ -10,14 +10,20 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run: ${{ steps.found_paths.outputs.docs == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
@@ -33,6 +39,8 @@ jobs:
build:
name: Docs Build
needs: pre-job
permissions:
contents: read
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
runs-on: ubuntu-latest
defaults:
@@ -42,9 +50,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './docs/.nvmrc'

View File

@@ -1,6 +1,6 @@
name: Docs deploy
on:
workflow_run:
workflow_run: # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
workflows: ['Docs build']
types:
- completed
@@ -9,6 +9,9 @@ jobs:
checks:
name: Docs Deploy Checks
runs-on: ubuntu-latest
permissions:
actions: read
pull-requests: read
outputs:
parameters: ${{ steps.parameters.outputs.result }}
artifact: ${{ steps.get-artifact.outputs.result }}
@@ -36,6 +39,8 @@ jobs:
- name: Determine deploy parameters
id: parameters
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
env:
HEAD_SHA: ${{ github.event.workflow_run.head_sha }}
with:
script: |
const eventType = context.payload.workflow_run.event;
@@ -57,7 +62,8 @@ jobs:
} else if (eventType == "pull_request") {
let pull_number = context.payload.workflow_run.pull_requests[0]?.number;
if(!pull_number) {
const response = await github.rest.search.issuesAndPullRequests({q: 'repo:${{ github.repository }} is:pr sha:${{ github.event.workflow_run.head_sha }}',per_page: 1,})
const {HEAD_SHA} = process.env;
const response = await github.rest.search.issuesAndPullRequests({q: `repo:${{ github.repository }} is:pr sha:${HEAD_SHA}`,per_page: 1,})
const items = response.data.items
if (items.length < 1) {
throw new Error("No pull request found for the commit")
@@ -95,30 +101,36 @@ jobs:
name: Docs Deploy
runs-on: ubuntu-latest
needs: checks
permissions:
contents: read
actions: read
pull-requests: write
if: ${{ fromJson(needs.checks.outputs.artifact).found && fromJson(needs.checks.outputs.parameters).shouldDeploy }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Load parameters
id: parameters
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
env:
PARAM_JSON: ${{ needs.checks.outputs.parameters }}
with:
script: |
const json = `${{ needs.checks.outputs.parameters }}`;
const parameters = JSON.parse(json);
const parameters = JSON.parse(process.env.PARAM_JSON);
core.setOutput("event", parameters.event);
core.setOutput("name", parameters.name);
core.setOutput("shouldDeploy", parameters.shouldDeploy);
- run: |
echo "Starting docs deployment for ${{ steps.parameters.outputs.event }} ${{ steps.parameters.outputs.name }}"
- name: Download artifact
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
env:
ARTIFACT_JSON: ${{ needs.checks.outputs.artifact }}
with:
script: |
let artifact = ${{ needs.checks.outputs.artifact }};
let artifact = JSON.parse(process.env.ARTIFACT_JSON);
let download = await github.rest.actions.downloadArtifact({
owner: context.repo.owner,
repo: context.repo.repo,
@@ -162,9 +174,11 @@ jobs:
- name: Output Cleaning
id: clean
env:
TG_OUTPUT: ${{ steps.docs-output.outputs.tg_action_output }}
run: |
TG_OUT=$(echo '${{ steps.docs-output.outputs.tg_action_output }}' | sed 's|%0A|\n|g ; s|%3C|<|g' | jq -c .)
echo "output=$TG_OUT" >> $GITHUB_OUTPUT
CLEANED=$(echo "$TG_OUTPUT" | sed 's|%0A|\n|g ; s|%3C|<|g' | jq -c .)
echo "output=$CLEANED" >> $GITHUB_OUTPUT
- name: Publish to Cloudflare Pages
uses: cloudflare/pages-action@f0a1cd58cd66095dee69bfa18fa5efd1dde93bca # v1

View File

@@ -1,15 +1,22 @@
name: Docs destroy
on:
pull_request_target:
pull_request_target: # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
types: [closed]
permissions: {}
jobs:
deploy:
name: Docs Destroy
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Destroy Docs Subdomain
env:

View File

@@ -4,16 +4,19 @@ on:
pull_request:
types: [labeled]
permissions: {}
jobs:
fix-formatting:
runs-on: ubuntu-latest
if: ${{ github.event.label.name == 'fix:formatting' }}
permissions:
contents: write
pull-requests: write
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
@@ -23,9 +26,10 @@ jobs:
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './server/.nvmrc'

View File

@@ -1,9 +1,11 @@
name: PR Label Validation
on:
pull_request_target:
pull_request_target: # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
types: [opened, labeled, unlabeled, synchronize]
permissions: {}
jobs:
validate-release-label:
runs-on: ubuntu-latest

View File

@@ -1,6 +1,8 @@
name: 'Pull Request Labeler'
on:
- pull_request_target
- pull_request_target # zizmor: ignore[dangerous-triggers] no attacker inputs are used here
permissions: {}
jobs:
labeler:

View File

@@ -4,9 +4,13 @@ on:
pull_request:
types: [opened, synchronize, reopened, edited]
permissions: {}
jobs:
validate-pr-title:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: PR Conventional Commit Validation
uses: ytanikin/PRConventionalCommits@b628c5a234cc32513014b7bfdd1e47b532124d98 # 1.3.0

View File

@@ -21,17 +21,18 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-root
cancel-in-progress: true
permissions: {}
jobs:
bump_version:
runs-on: ubuntu-latest
outputs:
ref: ${{ steps.push-tag.outputs.commit_long_sha }}
permissions: {} # No job-level permissions are needed because it uses the app-token
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
@@ -40,12 +41,16 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: true
- name: Install uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
- name: Bump version
run: misc/release/pump-version.sh -s "${{ inputs.serverBump }}" -m "${{ inputs.mobileBump }}"
env:
SERVER_BUMP: ${{ inputs.serverBump }}
MOBILE_BUMP: ${{ inputs.mobileBump }}
run: misc/release/pump-version.sh -s "${SERVER_BUMP}" -m "${MOBILE_BUMP}"
- name: Commit and tag
id: push-tag
@@ -59,18 +64,26 @@ jobs:
build_mobile:
uses: ./.github/workflows/build-mobile.yml
needs: bump_version
secrets: inherit
permissions:
contents: read
secrets:
KEY_JKS: ${{ secrets.KEY_JKS }}
ALIAS: ${{ secrets.ALIAS }}
ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }}
ANDROID_STORE_PASSWORD: ${{ secrets.ANDROID_STORE_PASSWORD }}
with:
ref: ${{ needs.bump_version.outputs.ref }}
prepare_release:
runs-on: ubuntu-latest
needs: build_mobile
permissions:
actions: read # To download the app artifact
# No content permissions are needed because it uses the app-token
steps:
- name: Generate a token
id: generate-token
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2
with:
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
@@ -79,6 +92,7 @@ jobs:
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
token: ${{ steps.generate-token.outputs.token }}
persist-credentials: false
- name: Download APK
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4
@@ -86,10 +100,11 @@ jobs:
name: release-apk-signed
- name: Create draft release
uses: softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v2
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2
with:
draft: true
tag_name: ${{ env.IMMICH_VERSION }}
token: ${{ steps.generate-token.outputs.token }}
generate_release_notes: true
body_path: misc/release/notes.tmpl
files: |

View File

@@ -4,6 +4,8 @@ on:
pull_request:
types: [labeled, closed]
permissions: {}
jobs:
comment-status:
runs-on: ubuntu-latest

View File

@@ -4,20 +4,24 @@ on:
release:
types: [published]
permissions:
packages: write
permissions: {}
jobs:
publish:
name: Publish `@immich/sdk`
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./open-api/typescript-sdk
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './open-api/typescript-sdk/.nvmrc'
registry-url: 'https://registry.npmjs.org'

View File

@@ -9,14 +9,20 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run: ${{ steps.found_paths.outputs.mobile == 'true' || steps.should_force.outputs.should_force == 'true' }}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
@@ -33,12 +39,14 @@ jobs:
name: Run Dart Code Analysis
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Flutter SDK
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2
@@ -50,6 +58,10 @@ jobs:
run: dart pub get
working-directory: ./mobile
- name: Generate translation file
run: make translation; dart format lib/generated/codegen_loader.g.dart
working-directory: ./mobile
- name: Run Build Runner
run: make build
working-directory: ./mobile
@@ -65,9 +77,11 @@ jobs:
- name: Verify files have not changed
if: steps.verify-changed-files.outputs.files_changed == 'true'
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "ERROR: Generated files not up to date! Run make_build inside the mobile directory"
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
echo "Changed files: ${CHANGED_FILES}"
exit 1
- name: Run dart analyze
@@ -81,3 +95,30 @@ jobs:
- name: Run dart custom_lint
run: dart run custom_lint
working-directory: ./mobile
zizmor:
name: zizmor
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
actions: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
- name: Run zizmor 🌈
run: uvx zizmor --format=sarif . > results.sarif
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: results.sarif
category: zizmor

View File

@@ -9,9 +9,13 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run_web: ${{ steps.found_paths.outputs.web == 'true' || steps.should_force.outputs.should_force == 'true' }}
should_run_server: ${{ steps.found_paths.outputs.server == 'true' || steps.should_force.outputs.should_force == 'true' }}
@@ -25,6 +29,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
@@ -58,6 +65,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./server
@@ -65,9 +74,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './server/.nvmrc'
@@ -95,6 +106,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./cli
@@ -102,9 +115,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './cli/.nvmrc'
@@ -136,6 +151,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_cli == 'true' }}
runs-on: windows-latest
permissions:
contents: read
defaults:
run:
working-directory: ./cli
@@ -143,9 +160,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './cli/.nvmrc'
@@ -165,11 +184,13 @@ jobs:
run: npm run test:cov
if: ${{ !cancelled() }}
web-unit-tests:
name: Test & Lint Web
web-lint:
name: Lint Web
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
runs-on: ubuntu-latest
runs-on: mich
permissions:
contents: read
defaults:
run:
working-directory: ./web
@@ -177,9 +198,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './web/.nvmrc'
@@ -191,7 +214,7 @@ jobs:
run: npm ci
- name: Run linter
run: npm run lint
run: npm run lint:p
if: ${{ !cancelled() }}
- name: Run formatter
@@ -202,6 +225,35 @@ jobs:
run: npm run check:svelte
if: ${{ !cancelled() }}
web-unit-tests:
name: Test Web
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_web == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./web
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './web/.nvmrc'
- name: Run setup typescript-sdk
run: npm ci && npm run build
working-directory: ./open-api/typescript-sdk
- name: Run npm install
run: npm ci
- name: Run tsc
run: npm run check:typescript
if: ${{ !cancelled() }}
@@ -215,6 +267,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_e2e == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./e2e
@@ -222,9 +276,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './e2e/.nvmrc'
@@ -254,6 +310,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_server == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./server
@@ -261,9 +319,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './server/.nvmrc'
@@ -279,6 +339,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_e2e_server_cli == 'true' }}
runs-on: mich
permissions:
contents: read
defaults:
run:
working-directory: ./e2e
@@ -287,10 +349,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './e2e/.nvmrc'
@@ -321,6 +384,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_e2e_web == 'true' }}
runs-on: mich
permissions:
contents: read
defaults:
run:
working-directory: ./e2e
@@ -329,10 +394,11 @@ jobs:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
submodules: 'recursive'
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './e2e/.nvmrc'
@@ -362,8 +428,13 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_mobile == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Flutter SDK
uses: subosito/flutter-action@e938fdf56512cc96ef2f93601a5a40bde3801046 # v2
with:
@@ -378,13 +449,18 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs.should_run_ml == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./machine-learning
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
- uses: actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5
# TODO: add caching when supported (https://github.com/actions/setup-python/pull/818)
# with:
@@ -411,6 +487,8 @@ jobs:
needs: pre-job
if: ${{ needs.pre-job.outputs['should_run_.github'] == 'true' }}
runs-on: ubuntu-latest
permissions:
contents: read
defaults:
run:
working-directory: ./.github
@@ -418,9 +496,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './.github/.nvmrc'
@@ -434,25 +514,34 @@ jobs:
shellcheck:
name: ShellCheck
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
ignore_paths: >-
**/open-api/**
**/openapi/**
**/openapi**
**/node_modules/**
generated-api-up-to-date:
name: OpenAPI Clients
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './server/.nvmrc'
@@ -476,14 +565,18 @@ jobs:
- name: Verify files have not changed
if: steps.verify-changed-files.outputs.files_changed == 'true'
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "ERROR: Generated files not up to date!"
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
echo "Changed files: ${CHANGED_FILES}"
exit 1
generated-typeorm-migrations-up-to-date:
name: TypeORM Checks
runs-on: ubuntu-latest
permissions:
contents: read
services:
postgres:
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
@@ -505,9 +598,11 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version-file: './server/.nvmrc'
@@ -521,7 +616,7 @@ jobs:
run: npm run migrations:run
- name: Test npm run schema:reset command works
run: npm run typeorm:schema:reset
run: npm run schema:reset
- name: Generate new migrations
continue-on-error: true
@@ -535,9 +630,11 @@ jobs:
server/src
- name: Verify migration files have not changed
if: steps.verify-changed-files.outputs.files_changed == 'true'
env:
CHANGED_FILES: ${{ steps.verify-changed-files.outputs.changed_files }}
run: |
echo "ERROR: Generated migration files not up to date!"
echo "Changed files: ${{ steps.verify-changed-files.outputs.changed_files }}"
echo "Changed files: ${CHANGED_FILES}"
cat ./src/*-TestMigration.ts
exit 1
@@ -555,9 +652,11 @@ jobs:
- name: Verify SQL files have not changed
if: steps.verify-changed-sql-files.outputs.files_changed == 'true'
env:
CHANGED_FILES: ${{ steps.verify-changed-sql-files.outputs.changed_files }}
run: |
echo "ERROR: Generated SQL files not up to date!"
echo "Changed files: ${{ steps.verify-changed-sql-files.outputs.changed_files }}"
echo "Changed files: ${CHANGED_FILES}"
exit 1
# mobile-integration-tests:

View File

@@ -4,30 +4,32 @@ on:
pull_request:
branches: [main]
permissions: {}
jobs:
pre-job:
runs-on: ubuntu-latest
permissions:
contents: read
outputs:
should_run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}}
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
persist-credentials: false
- id: found_paths
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
with:
filters: |
i18n:
- 'i18n/!(en)**\.json'
- name: Debug
run: |
echo "Should run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}}"
echo "Found i18n paths: ${{ steps.found_paths.outputs.i18n }}"
echo "Head ref: ${{ github.head_ref }}"
enforce-lock:
name: Check Weblate Lock
needs: [pre-job]
runs-on: ubuntu-latest
permissions: {}
if: ${{ needs.pre-job.outputs.should_run == 'true' }}
steps:
- name: Check weblate lock
@@ -47,6 +49,7 @@ jobs:
name: Weblate Lock Check Success
needs: [enforce-lock]
runs-on: ubuntu-latest
permissions: {}
if: always()
steps:
- name: Any jobs failed?
@@ -54,4 +57,5 @@ jobs:
run: exit 1
- name: All jobs passed or skipped
if: ${{ !(contains(needs.*.result, 'failure')) }}
# zizmor: ignore[template-injection]
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}"

1251
cli/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@immich/cli",
"version": "2.2.61",
"version": "2.2.62",
"description": "Command Line Interface (CLI) for Immich",
"type": "module",
"exports": "./dist/index.js",
@@ -21,7 +21,7 @@
"@types/lodash-es": "^4.17.12",
"@types/micromatch": "^4.0.9",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.14.0",
"@types/node": "^22.14.1",
"@vitest/coverage-v8": "^3.0.0",
"byte-size": "^9.0.0",
"cli-progress": "^3.12.0",

View File

@@ -90,7 +90,7 @@ services:
container_name: immich_prometheus
ports:
- 9090:9090
image: prom/prometheus@sha256:502ad90314c7485892ce696cb14a99fceab9fc27af29f4b427f41bd39701a199
image: prom/prometheus@sha256:339ce86a59413be18d0e445472891d022725b4803fab609069110205e79fb2f1
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus-data:/prometheus

View File

@@ -23,23 +23,32 @@ Refer to the official [postgres documentation](https://www.postgresql.org/docs/c
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.
:::
### Automatic Database Backups
### Automatic Database Dumps
For convenience, Immich will automatically create database backups by default. The backups are stored in `UPLOAD_LOCATION/backups`.
As mentioned above, you should make your own backup of these together with the asset folders as noted below.
You can adjust the schedule and amount of kept backups in the [admin settings](http://my.immich.app/admin/system-settings?isOpen=backup).
By default, Immich will keep the last 14 backups and create a new backup every day at 2:00 AM.
:::warning
The automatic database dumps can be used to restore the database in the event of damage to the Postgres database files.
There is no monitoring for these dumps and you will not be notified if they are unsuccessful.
:::
#### Trigger Backup
:::caution
The database dumps do **NOT** contain any pictures or videos, only metadata. They are only usable with a copy of the other files in `UPLOAD_LOCATION` as outlined below.
:::
You are able to trigger a backup in the [admin job status page](http://my.immich.app/admin/jobs-status).
Visit the page, open the "Create job" modal from the top right, select "Backup Database" and click "Confirm".
A job will run and trigger a backup, you can verify this worked correctly by checking the logs or the backup folder.
This backup will count towards the last X backups that will be kept based on your settings.
For disaster-recovery purposes, Immich will automatically create database dumps. The dumps are stored in `UPLOAD_LOCATION/backups`.
Please be sure to make your own, independent backup of the database together with the asset folders as noted below.
You can adjust the schedule and amount of kept database dumps in the [admin settings](http://my.immich.app/admin/system-settings?isOpen=backup).
By default, Immich will keep the last 14 database dumps and create a new dump every day at 2:00 AM.
#### Trigger Dump
You are able to trigger a database dump in the [admin job status page](http://my.immich.app/admin/jobs-status).
Visit the page, open the "Create job" modal from the top right, select "Create Database Dump" and click "Confirm".
A job will run and trigger a dump, you can verify this worked correctly by checking the logs or the `backups/` folder.
This dumps will count towards the last `X` dumps that will be kept based on your settings.
#### Restoring
We hope to make restoring simpler in future versions, for now you can find the backups in the `UPLOAD_LOCATION/backups` folder on your host.
We hope to make restoring simpler in future versions, for now you can find the database dumps in the `UPLOAD_LOCATION/backups` folder on your host.
Then please follow the steps in the following section for restoring the database.
### Manual Backup and Restore

View File

@@ -1,14 +1,14 @@
# Database Migrations
After making any changes in the `server/src/entities`, a database migration need to run in order to register the changes in the database. Follow the steps below to create a new migration.
After making any changes in the `server/src/schema`, a database migration need to run in order to register the changes in the database. Follow the steps below to create a new migration.
1. Run the command
```bash
npm run typeorm:migrations:generate <migration-name>
npm run migrations:generate <migration-name>
```
2. Check if the migration file makes sense.
3. Move the migration file to folder `./server/src/migrations` in your code editor.
3. Move the migration file to folder `./server/src/schema/migrations` in your code editor.
The server will automatically detect `*.ts` file changes and restart. Part of the server start-up process includes running any new migrations, so it will be applied immediately.

View File

@@ -63,6 +63,13 @@ If you only want to do web development connected to an existing, remote backend,
IMMICH_SERVER_URL=https://demo.immich.app/ npm run dev
```
If you're using PowerShell on Windows you may need to set the env var separately like so:
```powershell
$env:IMMICH_SERVER_URL = "https://demo.immich.app/"
npm run dev
```
#### `@immich/ui`
To see local changes to `@immich/ui` in Immich, do the following:
@@ -76,9 +83,20 @@ To see local changes to `@immich/ui` in Immich, do the following:
### Mobile app
The mobile app `(/mobile)` will required Flutter toolchain 3.13.x and FVM to be installed on your system.
#### Setup
Please refer to the [Flutter's official documentation](https://flutter.dev/docs/get-started/install) for more information on setting up the toolchain on your machine.
1. Setup Flutter toolchain using FVM.
2. Run `flutter pub get` to install the dependencies.
3. Run `make translation` to generate the translation file.
4. Run `fvm flutter run` to start the app.
#### Translation
To add a new translation text, enter the key-value pair in the `i18n/en.json` in the root of the immich project. Then, from the `mobile/` directory, run
```bash
make translation
```
The mobile app asks you what backend to connect to. You can utilize the demo backend (https://demo.immich.app/) if you don't need to change server code or upload photos. Alternatively, you can run the server yourself per the instructions above.

View File

@@ -42,6 +42,12 @@ docker run -it -v "$(pwd)":/import:ro -e IMMICH_INSTANCE_URL=https://your-immich
Please modify the `IMMICH_INSTANCE_URL` and `IMMICH_API_KEY` environment variables as suitable. You can also use a Docker env file to store your sensitive API key.
This `docker run` command will directly run the command `immich` inside the container. You can directly append the desired parameters (see under "usage") to the commandline like this:
```bash
docker run -it -v "$(pwd)":/import:ro -e IMMICH_INSTANCE_URL=https://your-immich-instance/api -e IMMICH_API_KEY=your-api-key ghcr.io/immich-app/immich-cli:latest upload -a -c 5 --recursive directory/
```
## Usage
<details>

View File

@@ -42,7 +42,7 @@ You do not need to redo any machine learning jobs after enabling hardware accele
- The GPU must have compute capability 5.2 or greater.
- The server must have the official NVIDIA driver installed.
- The installed driver must be >= 535 (it must support CUDA 12.2).
- The installed driver must be >= 545 (it must support CUDA 12.3).
- On Linux (except for WSL2), you also need to have [NVIDIA Container Toolkit][nvct] installed.
#### ROCm

5324
docs/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -40,8 +40,9 @@ const projects: CommunityProjectProps[] = [
},
{
title: 'Lightroom Immich Plugin: lrc-immich-plugin',
description: 'Another Lightroom plugin to publish or export photos from Lightroom to Immich.',
url: 'https://github.com/bmachek/lrc-immich-plugin',
description:
'Lightroom plugin to publish, export photos from Lightroom to Immich. Import from Immich to Lightroom is also supported.',
url: 'https://blog.fokuspunk.de/lrc-immich-plugin/',
},
{
title: 'Immich Duplicate Finder',

5
docs/src/pages/errors.md Normal file
View File

@@ -0,0 +1,5 @@
# Errors
## TypeORM Upgrade
The upgrade to Immich `v2.x.x` has a required upgrade path to `v1.132.0+`. This means it is required to start up the application at least once on version `1.132.0` (or later). Doing so will complete database schema upgrades that are required for `v2.0.0`. After Immich has successfully booted on this version, shut the system down and try the `v2.x.x` upgrade again.

View File

@@ -4,6 +4,7 @@ import Layout from '@theme/Layout';
import { discordPath, discordViewBox } from '@site/src/components/svg-paths';
import ThemedImage from '@theme/ThemedImage';
import Icon from '@mdi/react';
import { mdiAndroid } from '@mdi/js';
function HomepageHeader() {
return (
<header>
@@ -88,11 +89,18 @@ function HomepageHeader() {
<img className="h-24" alt="Get it on Google Play" src="/img/google-play-badge.png" />
</a>
</div>
<div className="h-24">
<a href="https://apps.apple.com/sg/app/immich/id1613945652">
<img className="h-24 sm:p-3.5 p-3" alt="Download on the App Store" src="/img/ios-app-store-badge.svg" />
</a>
</div>
<div className="h-24">
<a href="https://github.com/immich-app/immich/releases/latest">
<img className="h-24 sm:p-3.5 p-3" alt="Download APK" src="/img/download-apk-github.svg" />
</a>
</div>
</div>
<ThemedImage
sources={{ dark: '/img/app-qr-code-dark.svg', light: '/img/app-qr-code-light.svg' }}

View File

@@ -76,6 +76,7 @@ import {
mdiWeb,
mdiDatabaseOutline,
mdiLinkEdit,
mdiTagFaces,
mdiMovieOpenPlayOutline,
} from '@mdi/js';
import Layout from '@theme/Layout';
@@ -83,6 +84,8 @@ import React from 'react';
import { Item, Timeline } from '../components/timeline';
const releases = {
'v1.130.0': new Date(2025, 2, 25),
'v1.127.0': new Date(2025, 1, 26),
'v1.122.0': new Date(2024, 11, 5),
'v1.120.0': new Date(2024, 10, 6),
'v1.114.0': new Date(2024, 8, 6),
@@ -242,6 +245,21 @@ const roadmap: Item[] = [
];
const milestones: Item[] = [
withRelease({
icon: mdiFolderMultiple,
iconColor: 'brown',
title: 'Folders view in the mobile app',
description: 'Browse your photos and videos in their folder structure inside the mobile app',
release: 'v1.130.0',
}),
withRelease({
icon: mdiTagFaces,
iconColor: 'teal',
title: 'Manual face tagging',
description:
'Manually tag or remove faces in photos and videos, even when automatic detection misses or misidentifies them.',
release: 'v1.127.0',
}),
{
icon: mdiStar,
iconColor: 'gold',
@@ -266,8 +284,8 @@ const milestones: Item[] = [
withRelease({
icon: mdiDatabaseOutline,
iconColor: 'brown',
title: 'Automatic database backups',
description: 'Database backups are now integrated into the Immich server',
title: 'Automatic database dumps',
description: 'Database dumps are now integrated into the Immich server',
release: 'v1.120.0',
}),
{
@@ -300,7 +318,7 @@ const milestones: Item[] = [
withRelease({
icon: mdiFolderMultiple,
iconColor: 'brown',
title: 'Folders',
title: 'Folders view',
description: 'Browse your photos and videos in their folder structure',
release: 'v1.113.0',
}),

View File

@@ -1,4 +1,8 @@
[
{
"label": "v1.132.0",
"url": "https://v1.132.0.archive.immich.app"
},
{
"label": "v1.131.3",
"url": "https://v1.131.3.archive.immich.app"

13
docs/static/img/download-apk-github.svg vendored Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

2280
e2e/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "immich-e2e",
"version": "1.131.3",
"version": "1.132.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.14.0",
"@types/node": "^22.14.1",
"@types/oidc-provider": "^8.5.1",
"@types/pg": "^8.11.0",
"@types/pngjs": "^6.0.4",

View File

@@ -5,7 +5,7 @@ import { app, utils } from 'src/utils';
import request from 'supertest';
import { beforeEach, describe, expect, it } from 'vitest';
const { name, email, password } = signupDto.admin;
const { email, password } = signupDto.admin;
describe(`/auth/admin-sign-up`, () => {
beforeEach(async () => {
@@ -13,33 +13,6 @@ describe(`/auth/admin-sign-up`, () => {
});
describe('POST /auth/admin-sign-up', () => {
const invalid = [
{
should: 'require an email address',
data: { name, password },
},
{
should: 'require a password',
data: { name, email },
},
{
should: 'require a name',
data: { email, password },
},
{
should: 'require a valid email',
data: { name, email: 'immich', password },
},
];
for (const { should, data } of invalid) {
it(`should ${should}`, async () => {
const { status, body } = await request(app).post('/auth/admin-sign-up').send(data);
expect(status).toEqual(400);
expect(body).toEqual(errorDto.badRequest());
});
}
it(`should sign up the admin`, async () => {
const { status, body } = await request(app).post('/auth/admin-sign-up').send(signupDto.admin);
expect(status).toBe(201);
@@ -57,14 +30,6 @@ describe(`/auth/admin-sign-up`, () => {
});
});
it('should transform email to lower case', async () => {
const { status, body } = await request(app)
.post('/auth/admin-sign-up')
.send({ ...signupDto.admin, email: 'aDmIn@IMMICH.cloud' });
expect(status).toEqual(201);
expect(body).toEqual(signupResponseDto.admin);
});
it('should not allow a second admin to sign up', async () => {
await signUpAdmin({ signUpDto: signupDto.admin });

View File

@@ -6,6 +6,7 @@ import {
startOAuth,
updateConfig,
} from '@immich/sdk';
import { createHash, randomBytes } from 'node:crypto';
import { errorDto } from 'src/responses';
import { OAuthClient, OAuthUser } from 'src/setup/auth-server';
import { app, asBearerAuth, baseUrl, utils } from 'src/utils';
@@ -21,18 +22,30 @@ const mobileOverrideRedirectUri = 'https://photos.immich.app/oauth/mobile-redire
const redirect = async (url: string, cookies?: string[]) => {
const { headers } = await request(url)
.get('/')
.get('')
.set('Cookie', cookies || []);
return { cookies: (headers['set-cookie'] as unknown as string[]) || [], location: headers.location };
};
// Function to generate a code challenge from the verifier
const generateCodeChallenge = async (codeVerifier: string): Promise<string> => {
const hashed = createHash('sha256').update(codeVerifier).digest();
return hashed.toString('base64url');
};
const loginWithOAuth = async (sub: OAuthUser | string, redirectUri?: string) => {
const { url } = await startOAuth({ oAuthConfigDto: { redirectUri: redirectUri ?? `${baseUrl}/auth/login` } });
const state = randomBytes(16).toString('base64url');
const codeVerifier = randomBytes(64).toString('base64url');
const codeChallenge = await generateCodeChallenge(codeVerifier);
const { url } = await startOAuth({
oAuthConfigDto: { redirectUri: redirectUri ?? `${baseUrl}/auth/login`, state, codeChallenge },
});
// login
const response1 = await redirect(url.replace(authServer.internal, authServer.external));
const response2 = await request(authServer.external + response1.location)
.post('/')
.post('')
.set('Cookie', response1.cookies)
.type('form')
.send({ prompt: 'login', login: sub, password: 'password' });
@@ -40,7 +53,7 @@ const loginWithOAuth = async (sub: OAuthUser | string, redirectUri?: string) =>
// approve
const response3 = await redirect(response2.header.location, response1.cookies);
const response4 = await request(authServer.external + response3.location)
.post('/')
.post('')
.type('form')
.set('Cookie', response3.cookies)
.send({ prompt: 'consent' });
@@ -51,9 +64,9 @@ const loginWithOAuth = async (sub: OAuthUser | string, redirectUri?: string) =>
expect(redirectUrl).toBeDefined();
const params = new URL(redirectUrl).searchParams;
expect(params.get('code')).toBeDefined();
expect(params.get('state')).toBeDefined();
expect(params.get('state')).toBe(state);
return redirectUrl;
return { url: redirectUrl, state, codeVerifier };
};
const setupOAuth = async (token: string, dto: Partial<SystemConfigOAuthDto>) => {
@@ -119,9 +132,42 @@ describe(`/oauth`, () => {
expect(body).toEqual(errorDto.badRequest(['url should not be empty']));
});
it('should auto register the user by default', async () => {
const url = await loginWithOAuth('oauth-auto-register');
it(`should throw an error if the state is not provided`, async () => {
const { url } = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('OAuth state is missing'));
});
it(`should throw an error if the state mismatches`, async () => {
const callbackParams = await loginWithOAuth('oauth-auto-register');
const { state } = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app)
.post('/oauth/callback')
.send({ ...callbackParams, state });
expect(status).toBeGreaterThanOrEqual(400);
});
it(`should throw an error if the codeVerifier is not provided`, async () => {
const { url, state } = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app).post('/oauth/callback').send({ url, state });
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('OAuth code verifier is missing'));
});
it(`should throw an error if the codeVerifier doesn't match the challenge`, async () => {
const callbackParams = await loginWithOAuth('oauth-auto-register');
const { codeVerifier } = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app)
.post('/oauth/callback')
.send({ ...callbackParams, codeVerifier });
console.log(body);
expect(status).toBeGreaterThanOrEqual(400);
});
it('should auto register the user by default', async () => {
const callbackParams = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),
@@ -132,16 +178,30 @@ describe(`/oauth`, () => {
});
});
it('should allow passing state and codeVerifier via cookies', async () => {
const { url, state, codeVerifier } = await loginWithOAuth('oauth-auto-register');
const { status, body } = await request(app)
.post('/oauth/callback')
.set('Cookie', [`immich_oauth_state=${state}`, `immich_oauth_code_verifier=${codeVerifier}`])
.send({ url });
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),
userId: expect.any(String),
userEmail: 'oauth-auto-register@immich.app',
});
});
it('should handle a user without an email', async () => {
const url = await loginWithOAuth(OAuthUser.NO_EMAIL);
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth(OAuthUser.NO_EMAIL);
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('OAuth profile does not have an email address'));
});
it('should set the quota from a claim', async () => {
const url = await loginWithOAuth(OAuthUser.WITH_QUOTA);
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth(OAuthUser.WITH_QUOTA);
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),
@@ -154,8 +214,8 @@ describe(`/oauth`, () => {
});
it('should set the storage label from a claim', async () => {
const url = await loginWithOAuth(OAuthUser.WITH_USERNAME);
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth(OAuthUser.WITH_USERNAME);
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),
@@ -176,8 +236,8 @@ describe(`/oauth`, () => {
buttonText: 'Login with Immich',
signingAlgorithm: 'RS256',
});
const url = await loginWithOAuth('oauth-RS256-token');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth('oauth-RS256-token');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),
@@ -196,8 +256,8 @@ describe(`/oauth`, () => {
buttonText: 'Login with Immich',
profileSigningAlgorithm: 'RS256',
});
const url = await loginWithOAuth('oauth-signed-profile');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth('oauth-signed-profile');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
userId: expect.any(String),
@@ -213,8 +273,8 @@ describe(`/oauth`, () => {
buttonText: 'Login with Immich',
signingAlgorithm: 'something-that-does-not-work',
});
const url = await loginWithOAuth('oauth-signed-bad');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth('oauth-signed-bad');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(500);
expect(body).toMatchObject({
error: 'Internal Server Error',
@@ -235,8 +295,8 @@ describe(`/oauth`, () => {
});
it('should not auto register the user', async () => {
const url = await loginWithOAuth('oauth-no-auto-register');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth('oauth-no-auto-register');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest('User does not exist and auto registering is disabled.'));
});
@@ -247,8 +307,8 @@ describe(`/oauth`, () => {
email: 'oauth-user3@immich.app',
password: 'password',
});
const url = await loginWithOAuth('oauth-user3');
const { status, body } = await request(app).post('/oauth/callback').send({ url });
const callbackParams = await loginWithOAuth('oauth-user3');
const { status, body } = await request(app).post('/oauth/callback').send(callbackParams);
expect(status).toBe(201);
expect(body).toMatchObject({
userId,
@@ -286,13 +346,15 @@ describe(`/oauth`, () => {
});
it('should auto register the user by default', async () => {
const url = await loginWithOAuth('oauth-mobile-override', 'app.immich:///oauth-callback');
expect(url).toEqual(expect.stringContaining(mobileOverrideRedirectUri));
const callbackParams = await loginWithOAuth('oauth-mobile-override', 'app.immich:///oauth-callback');
expect(callbackParams.url).toEqual(expect.stringContaining(mobileOverrideRedirectUri));
// simulate redirecting back to mobile app
const redirectUri = url.replace(mobileOverrideRedirectUri, 'app.immich:///oauth-callback');
const url = callbackParams.url.replace(mobileOverrideRedirectUri, 'app.immich:///oauth-callback');
const { status, body } = await request(app).post('/oauth/callback').send({ url: redirectUri });
const { status, body } = await request(app)
.post('/oauth/callback')
.send({ ...callbackParams, url });
expect(status).toBe(201);
expect(body).toMatchObject({
accessToken: expect.any(String),

View File

@@ -31,33 +31,7 @@ describe('/users', () => {
);
});
describe('GET /users', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get('/users');
expect(status).toBe(401);
expect(body).toEqual(errorDto.unauthorized);
});
it('should get users', async () => {
const { status, body } = await request(app).get('/users').set('Authorization', `Bearer ${admin.accessToken}`);
expect(status).toEqual(200);
expect(body).toHaveLength(2);
expect(body).toEqual(
expect.arrayContaining([
expect.objectContaining({ email: 'admin@immich.cloud' }),
expect.objectContaining({ email: 'user2@immich.cloud' }),
]),
);
});
});
describe('GET /users/me', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get(`/users/me`);
expect(status).toBe(401);
expect(body).toEqual(errorDto.unauthorized);
});
it('should not work for shared links', async () => {
const album = await utils.createAlbum(admin.accessToken, { albumName: 'Album' });
const sharedLink = await utils.createSharedLink(admin.accessToken, {
@@ -99,24 +73,6 @@ describe('/users', () => {
});
describe('PUT /users/me', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).put(`/users/me`);
expect(status).toBe(401);
expect(body).toEqual(errorDto.unauthorized);
});
for (const key of ['email', 'name']) {
it(`should not allow null ${key}`, async () => {
const dto = { [key]: null };
const { status, body } = await request(app)
.put(`/users/me`)
.set('Authorization', `Bearer ${admin.accessToken}`)
.send(dto);
expect(status).toBe(400);
expect(body).toEqual(errorDto.badRequest());
});
}
it('should update first and last name', async () => {
const before = await getMyUser({ headers: asBearerAuth(admin.accessToken) });
@@ -269,11 +225,6 @@ describe('/users', () => {
});
describe('GET /users/:id', () => {
it('should require authentication', async () => {
const { status } = await request(app).get(`/users/${admin.userId}`);
expect(status).toEqual(401);
});
it('should get the user', async () => {
const { status, body } = await request(app)
.get(`/users/${admin.userId}`)
@@ -292,12 +243,6 @@ describe('/users', () => {
});
describe('GET /server/license', () => {
it('should require authentication', async () => {
const { status, body } = await request(app).get('/users/me/license');
expect(status).toBe(401);
expect(body).toEqual(errorDto.unauthorized);
});
it('should return the user license', async () => {
await request(app)
.put('/users/me/license')
@@ -315,11 +260,6 @@ describe('/users', () => {
});
describe('PUT /users/me/license', () => {
it('should require authentication', async () => {
const { status } = await request(app).put(`/users/me/license`);
expect(status).toEqual(401);
});
it('should set the user license', async () => {
const { status, body } = await request(app)
.put(`/users/me/license`)

View File

@@ -4,6 +4,7 @@
"account_settings": "إعدادات الحساب",
"acknowledge": "أُدرك ذلك",
"action": "التحكم",
"action_common_update": "تحديث",
"actions": "العمليات",
"active": "نشط",
"activity": "النشاط",
@@ -13,6 +14,7 @@
"add_a_location": "إضافة موقع",
"add_a_name": "إضافة إسم",
"add_a_title": "إضافة عنوان",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "إضافة نمط إستثناء",
"add_import_path": "إضافة مسار الإستيراد",
"add_location": "إضافة موقع",
@@ -22,6 +24,8 @@
"add_photos": "إضافة صور",
"add_to": "إضافة إلى…",
"add_to_album": "إضافة إلى ألبوم",
"add_to_album_bottom_sheet_added": "تمت الاضافة{album}",
"add_to_album_bottom_sheet_already_exists": "موجودة مسبقا {album}",
"add_to_shared_album": "إضافة إلى ألبوم مشترك",
"add_url": "إضافة رابط",
"added_to_archive": "أُضيفت للأرشيف",
@@ -162,7 +166,6 @@
"no_pattern_added": "لم يتم إضافة أي أنماط",
"note_apply_storage_label_previous_assets": "ملاحظة: لتطبيق تسمية التخزين على المحتويات التي تم رفعها سابقًا، قم بتشغيل",
"note_cannot_be_changed_later": "ملاحظة: لا يمكن تغيير هذا لاحقًا!",
"note_unlimited_quota": "ملاحظة: أدخل 0 للحصول على حصة غير محدودة",
"notification_email_from_address": "عنوان المرسل",
"notification_email_from_address_description": "عنوان البريد الإلكتروني للمرسل، على سبيل المثال: \"Immich Photo Server noreply@example.com\"",
"notification_email_host_description": "مضيف خادم البريد الإلكتروني (مثلًا: smtp.immich.app)",
@@ -363,6 +366,16 @@
"admin_password": "كلمة سر المشرف",
"administration": "الإدارة",
"advanced": "متقدم",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "تكون بعض الأجهزة بطيئة للغاية في تحميل الصور المصغرة من الأصول الموجودة على الجهاز. قم بتنشيط هذا الإعداد لتحميل الصور البعيدة بدلاً من ذلك.",
"advanced_settings_prefer_remote_title": "تفضل الصور البعيدة",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "السماح بشهادات SSL الموقعة ذاتيًا",
"advanced_settings_tile_subtitle": "إعدادات المستخدم المتقدمة",
"advanced_settings_troubleshooting_subtitle": "تمكين الميزات الإضافية لاستكشاف الأخطاء وإصلاحها",
"advanced_settings_troubleshooting_title": "استكشاف الأخطاء وإصلاحها",
"age_months": "عمر {months, plural, one {# شهر} other {# أشهر}}",
"age_year_months": "عمر سنة واحدة، {months, plural, one {# شهر} other {# أشهر}}",
"age_years": "{years, plural, other {العمر #}}",
@@ -371,6 +384,8 @@
"album_cover_updated": "تم تحديث غلاف الألبوم",
"album_delete_confirmation": "هل أنت متأكد أنك تريد حذف الألبوم {album}؟",
"album_delete_confirmation_description": "إذا تمت مشاركة هذا الألبوم، فلن يتمكن المستخدمون الآخرون من الوصول إليه بعد الآن.",
"album_info_card_backup_album_excluded": "مستبعد",
"album_info_card_backup_album_included": "متضمنة",
"album_info_updated": "تم تحديث معلومات الألبوم",
"album_leave": "هل تريد مغادرة الألبوم؟",
"album_leave_confirmation": "هل أنت متأكد أنك تريد مغادرة {album}؟",
@@ -379,10 +394,22 @@
"album_remove_user": "هل ترغب في إزالة المستخدم؟",
"album_remove_user_confirmation": "هل أنت متأكد أنك تريد إزالة {user}؟",
"album_share_no_users": "يبدو أنك قمت بمشاركة هذا الألبوم مع جميع المستخدمين أو ليس لديك أي مستخدم للمشاركة معه.",
"album_thumbnail_card_item": "عنصر واحد",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · . مشترك",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "تم تحديث الألبوم",
"album_updated_setting_description": "تلقي إشعارًا عبر البريد الإلكتروني عندما يحتوي الألبوم المشترك على محتويات جديدة",
"album_user_left": "تم ترك {album}",
"album_user_removed": "تم إزالة {user}",
"album_viewer_appbar_delete_confirm": "هل أنت متأكد أنك تريد حذف هذا الألبوم من حسابك؟",
"album_viewer_appbar_share_err_delete": "فشل في حذف الألبوم",
"album_viewer_appbar_share_err_leave": "فشل في ترك الألبوم",
"album_viewer_appbar_share_err_remove": "هناك مشاكل في إزالة الأصول من الألبوم",
"album_viewer_appbar_share_err_title": "فشل في تغيير عنوان الألبوم",
"album_viewer_appbar_share_leave": "ترك الألبوم",
"album_viewer_appbar_share_to": "حصة ل",
"album_viewer_page_share_add_users": "اضافة مستخدمين",
"album_with_link_access": "السماح لأي شخص لديه الرابط برؤية الصور والأشخاص الموجودين في هذا الألبوم.",
"albums": "الألبومات",
"albums_count": "{count, plural, one {{count, number} ألبوم} other {{count, number} ألبومات}}",
@@ -400,42 +427,133 @@
"api_key_description": "سيتم عرض هذه القيمة مرة واحدة فقط. يرجى التأكد من نسخها قبل إغلاق النافذة.",
"api_key_empty": "يجب ألا يكون اسم مفتاح API فارغًا",
"api_keys": "مفاتيح واجهة برمجة التطبيقات",
"app_bar_signout_dialog_content": "هل أنت متأكد أنك تريد الخروج",
"app_bar_signout_dialog_ok": "نعم",
"app_bar_signout_dialog_title": "خروج",
"app_settings": "إعدادات التطبيق",
"appears_in": "يظهر في",
"archive": "الأرشيف",
"archive_or_unarchive_photo": "أرشفة الصورة أو إلغاء أرشفتها",
"archive_page_no_archived_assets": "لم يتم العثور على الأصول المؤرشفة",
"archive_page_title": "Archive ({})",
"archive_size": "حجم الأرشيف",
"archive_size_description": "تكوين حجم الأرشيف للتنزيلات (بالجيجابايت)",
"archived": "Archived",
"archived_count": "{count, plural, other {الأرشيف #}}",
"are_these_the_same_person": "هل هؤلاء هم نفس الشخص؟",
"are_you_sure_to_do_this": "هل انت متأكد من أنك تريد أن تفعل هذا؟",
"asset_action_delete_err_read_only": "لا يمكن حذف الأصول ذات للقراءة فقط، وسوف يتم التخطي",
"asset_action_share_err_offline": "لا يمكن جلب الأصول غير المتصلة بالإنترنت، وسوف يتم التخطي",
"asset_added_to_album": "تمت إضافته إلى الألبوم",
"asset_adding_to_album": "جارٍ الإضافة إلى الألبوم…",
"asset_description_updated": "تم تحديث وصف المحتوى",
"asset_filename_is_offline": "الأصل {filename} غير متصل",
"asset_has_unassigned_faces": "يحتوي الأصل على وجوه غير مخصصة",
"asset_hashing": "التجزئة…",
"asset_list_group_by_sub_title": "تنظيم بواسطة",
"asset_list_layout_settings_dynamic_layout_title": "تخطيط ديناميكي",
"asset_list_layout_settings_group_automatically": "تلقائي",
"asset_list_layout_settings_group_by": "مجموعة الأصول حسب",
"asset_list_layout_settings_group_by_month_day": "شهر + يوم",
"asset_list_layout_sub_title": "تصميم",
"asset_list_settings_subtitle": "إعدادات تخطيط شبكة الصور",
"asset_list_settings_title": "شبكة الصور",
"asset_offline": "المحتوى غير اتصال",
"asset_offline_description": "لم يعد هذا الأصل الخارجي موجودًا على القرص. يرجى الاتصال بمسؤول Immich للحصول على المساعدة.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "تم تخطيه",
"asset_skipped_in_trash": "في سلة المهملات",
"asset_uploaded": "تم الرفع",
"asset_uploading": "جارٍ الرفع…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "عارض الأصول",
"assets": "المحتويات",
"assets_added_count": "تمت إضافة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_added_to_album_count": "تمت إضافة {count, plural, one {# الأصل} other {# الأصول}} إلى الألبوم",
"assets_added_to_name_count": "تم إضافة {count, plural, one {# محتوى} other {# محتويات }} إلى {hasName, select, true {<b>{name}</b>} other {ألبوم جديد}}",
"assets_count": "{count, plural, one {# محتوى} other {# محتويات}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "تم نقل {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
"assets_permanently_deleted_count": "تم حذف {count, plural, one {# هذا المحتوى} other {# هذه المحتويات}} بشكل دائم",
"assets_removed_count": "تمت إزالة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "هل أنت متأكد من أنك تريد استعادة جميع الأصول المحذوفة؟ لا يمكنك التراجع عن هذا الإجراء! لاحظ أنه لا يمكن استعادة أي أصول غير متصلة بهذه الطريقة.",
"assets_restored_count": "تمت استعادة {count, plural, one {# محتوى} other {# محتويات}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "تم إرسال {count, plural, one {# محتوى} other {# محتويات}} إلى سلة المهملات",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {هذا المحتوى} other {هذه المحتويات}} في الألبوم بالفعل",
"authorized_devices": "الأجهزه المخولة",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "خلف",
"back_close_deselect": "الرجوع أو الإغلاق أو إلغاء التحديد",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "انقر للتضمين، وانقر نقرًا مزدوجًا للاستثناء",
"backup_album_selection_page_assets_scatter": "يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
"backup_album_selection_page_select_albums": "حدد الألبومات",
"backup_album_selection_page_selection_info": "معلومات الاختيار",
"backup_album_selection_page_total_assets": "إجمالي الأصول الفريدة",
"backup_all": "الجميع",
"backup_background_service_backup_failed_message": "فشل في النسخ الاحتياطي للأصول. جارٍ إعادة المحاولة...",
"backup_background_service_connection_failed_message": "فشل في الاتصال بالخادم. جارٍ إعادة المحاولة...",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "التحقق من الأصول الجديدة ...",
"backup_background_service_error_title": "خطأ في النسخ الاحتياطي",
"backup_background_service_in_progress_notification": "النسخ الاحتياطي للأصول الخاصة بك...",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "ألبومات احتياطية",
"backup_controller_page_background_app_refresh_disabled_content": "قم بتمكين تحديث تطبيق الخلفية في الإعدادات > عام > تحديث تطبيق الخلفية لاستخدام النسخ الاحتياطي في الخلفية.",
"backup_controller_page_background_app_refresh_disabled_title": "تم تعطيل تحديث التطبيق في الخلفية",
"backup_controller_page_background_app_refresh_enable_button_text": "اذهب للاعدادات",
"backup_controller_page_background_battery_info_link": "أرني كيف",
"backup_controller_page_background_battery_info_message": "للحصول على أفضل تجربة نسخ احتياطي في الخلفية، يرجى تعطيل أي تحسينات للبطارية تقيد نشاط الخلفية لـ تطبيق.\n\nنظرًا لأن هذا خاص بالجهاز، يرجى البحث عن المعلومات المطلوبة للشركة المصنعة لجهازك.",
"backup_controller_page_background_battery_info_ok": "نعم",
"backup_controller_page_background_battery_info_title": "تحسين البطارية",
"backup_controller_page_background_charging": "فقط أثناء الشحن",
"backup_controller_page_background_configure_error": "فشل في تكوين خدمة الخلفية",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "قم بتشغيل خدمة الخلفية لإجراء نسخ احتياطي لأي أصول جديدة تلقائيًا دون الحاجة إلى فتح التطبيق",
"backup_controller_page_background_is_off": "تم إيقاف النسخ الاحتياطي التلقائي للخلفية",
"backup_controller_page_background_is_on": "النسخ الاحتياطي التلقائي للخلفية قيد التشغيل",
"backup_controller_page_background_turn_off": "قم بإيقاف تشغيل خدمة الخلفية",
"backup_controller_page_background_turn_on": "قم بتشغيل خدمة الخلفية",
"backup_controller_page_background_wifi": "فقط على واي فاي",
"backup_controller_page_backup": "دعم",
"backup_controller_page_backup_selected": "المحدد: ",
"backup_controller_page_backup_sub": "النسخ الاحتياطي للصور ومقاطع الفيديو",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "قم بتشغيل النسخ الاحتياطي الأمامي لتحميل الأصول الجديدة تلقائيًا إلى الخادم عند فتح التطبيق.",
"backup_controller_page_excluded": "مستبعد: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "معلومات النسخ الاحتياطي",
"backup_controller_page_none_selected": "لم يتم التحديد",
"backup_controller_page_remainder": "بقية",
"backup_controller_page_remainder_sub": "الصور ومقاطع الفيديو المتبقية للنسخ الاحتياطي من التحديد",
"backup_controller_page_server_storage": "ذاكرة الجهاز",
"backup_controller_page_start_backup": "بدء النسخ الاحتياطي",
"backup_controller_page_status_off": "النسخة الاحتياطية التلقائية غير فعالة",
"backup_controller_page_status_on": "النسخة الاحتياطية التلقائية فعالة",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "الألبومات الاحتياطية",
"backup_controller_page_total_sub": "جميع الصور ومقاطع الفيديو الفريدة من ألبومات مختارة",
"backup_controller_page_turn_off": "قم بإيقاف تشغيل النسخ الاحتياطي المقدمة",
"backup_controller_page_turn_on": "قم بتشغيل النسخ الاحتياطي المقدمة",
"backup_controller_page_uploading_file_info": "تحميل معلومات الملف",
"backup_err_only_album": "لا يمكن إزالة الألبوم الوحيد",
"backup_info_card_assets": "أصول",
"backup_manual_cancelled": "ملغي",
"backup_manual_in_progress": "قيد التحميل حاول مره اخرى",
"backup_manual_success": "نجاح",
"backup_manual_title": "حالة التحميل",
"backup_options_page_title": "خيارات النسخ الاحتياطي",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "الى الوراء",
"birthdate_saved": "تم حفظ تاريخ الميلاد بنجاح",
"birthdate_set_description": "يتم استخدام تاريخ الميلاد لحساب عمر هذا الشخص وقت التقاط الصورة.",
@@ -447,24 +565,52 @@
"bulk_keep_duplicates_confirmation": "هل أنت متأكد من أنك تريد الاحتفاظ بـ {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}}؟ سيؤدي هذا إلى حل جميع مجموعات النسخ المكررة دون حذف أي شيء.",
"bulk_trash_duplicates_confirmation": "هل أنت متأكد من أنك تريد إرسال {count, plural, one {# محتوى مكرر} other {# محتويات مكررة}} إلى سلة المهملات ؟ سيحتفظ هذا بأكبر محتوى من كل مجموعة ويرسل جميع النسخ المكررة الأخرى إلى سلة المهملات.",
"buy": "شراء immich",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "مسح ذاكرة التخزين المؤقت",
"cache_settings_clear_cache_button_title": "يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
"cache_settings_duplicated_assets_clear_button": "واضح",
"cache_settings_duplicated_assets_subtitle": "الصور ومقاطع الفيديو اللتي تم تجاهلها المدرجة في التطبيق",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "مكتبه الصور المصغره",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "صور كاملة",
"cache_settings_statistics_shared": "صورة ألبوم مشتركة",
"cache_settings_statistics_thumbnail": "الصورة المصغرة",
"cache_settings_statistics_title": "استخدام ذاكرة التخزين المؤقت",
"cache_settings_subtitle": "تحكم في سلوك التخزين المؤقت لتطبيق الجوال.",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "التحكم في سلوك التخزين المحلي",
"cache_settings_tile_title": "التخزين المحلي",
"cache_settings_title": "إعدادات التخزين المؤقت",
"camera": "الكاميرا",
"camera_brand": "علامة الكاميرا التجارية",
"camera_model": "طراز الكاميرا",
"cancel": "إلغاء",
"cancel_search": "الغي البحث",
"canceled": "Canceled",
"cannot_merge_people": "لا يمكن دمج الأشخاص",
"cannot_undo_this_action": "لا يمكنك التراجع عن هذا الإجراء!",
"cannot_update_the_description": "لا يمكن تحديث الوصف",
"change_date": "غيّر التاريخ",
"change_display_order": "Change display order",
"change_expiration_time": "تغيير وقت انتهاء الصلاحية",
"change_location": "غيّر الموقع",
"change_name": "تغيير الإسم",
"change_name_successfully": "تم تغيير الاسم بنجاح",
"change_password": "تغيير كلمة المرور",
"change_password_description": "هذه إما هي المرة الأولى التي تقوم فيها بتسجيل الدخول إلى النظام أو أنه تم تقديم طلب لتغيير كلمة المرور الخاصة بك. الرجاء إدخال كلمة المرور الجديدة أدناه.",
"change_password_form_confirm_password": "تأكيد كلمة المرور",
"change_password_form_description": "مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
"change_password_form_new_password": "كلمة المرور الجديدة",
"change_password_form_password_mismatch": "كلمة المرور غير مطابقة",
"change_password_form_reenter_new_password": "أعد إدخال كلمة مرور جديدة",
"change_your_password": "غير كلمة المرور الخاصة بك",
"changed_visibility_successfully": "تم تغيير الرؤية بنجاح",
"check_all": "تحقق من الكل",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "تحقق من السجلات",
"choose_matching_people_to_merge": "اختر الأشخاص المتطابقين لدمجهم",
"city": "المدينة",
@@ -473,6 +619,14 @@
"clear_all_recent_searches": "مسح جميع عمليات البحث الأخيرة",
"clear_message": "إخلاء الرسالة",
"clear_value": "إخلاء القيمة",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "باتجاه عقارب الساعة",
"close": "إغلاق",
"collapse": "طي",
@@ -483,6 +637,9 @@
"comment_options": "خيارات التعليق",
"comments_and_likes": "التعليقات والإعجابات",
"comments_are_disabled": "التعليقات معطلة",
"common_create_new_album": "إنشاء ألبوم جديد",
"common_server_error": "يرجى التحقق من اتصال الشبكة الخاص بك ، والتأكد من أن الجهاز قابل للوصول وإصدارات التطبيق/الجهاز متوافقة.",
"completed": "Completed",
"confirm": "تأكيد",
"confirm_admin_password": "تأكيد كلمة مرور المسؤول",
"confirm_delete_face": "هل أنت متأكد من حذف وجه {name} من الأصول؟",
@@ -492,6 +649,15 @@
"contain": "محتواة",
"context": "السياق",
"continue": "متابعة",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "إنشاء ألبوم جديد",
"control_bottom_app_bar_delete_from_immich": " حذف منال تطبيق",
"control_bottom_app_bar_delete_from_local": "حذف من الجهاز",
"control_bottom_app_bar_edit_location": "تحديد الوجهة",
"control_bottom_app_bar_edit_time": "تحرير التاريخ والوقت",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "مشاركة إلى",
"control_bottom_app_bar_trash_from_immich": "حذفه ونقله في سله المهملات",
"copied_image_to_clipboard": "تم نسخ الصورة إلى الحافظة.",
"copied_to_clipboard": "نسخ إلى الحافظة!",
"copy_error": "نسخ الخطأ",
@@ -506,24 +672,34 @@
"covers": "أغلفة",
"create": "انشاء",
"create_album": "إنشاء ألبوم",
"create_album_page_untitled": "بدون اسم",
"create_library": "إنشاء مكتبة",
"create_link": "إنشاء رابط",
"create_link_to_share": "إنشاء رابط للمشاركة",
"create_link_to_share_description": "السماح لأي شخص لديه الرابط بمشاهدة الصورة (الصور) المحددة",
"create_new": "CREATE NEW",
"create_new_person": "إنشاء شخص جديد",
"create_new_person_hint": "تعيين المحتويات المحددة لشخص جديد",
"create_new_user": "إنشاء مستخدم جديد",
"create_shared_album_page_share_add_assets": "إضافة الأصول",
"create_shared_album_page_share_select_photos": "حدد الصور",
"create_tag": "إنشاء علامة",
"create_tag_description": "أنشئ علامة جديدة. بالنسبة للعلامات المتداخلة، يرجى إدخال المسار الكامل للعلامة بما في ذلك الخطوط المائلة للأمام.",
"create_user": "إنشاء مستخدم",
"created": "تم الإنشاء",
"crop": "Crop",
"curated_object_page_title": "أشياء",
"current_device": "الجهاز الحالي",
"current_server_address": "Current server address",
"custom_locale": "لغة مخصصة",
"custom_locale_description": "تنسيق التواريخ والأرقام بناءً على اللغة والمنطقة",
"daily_title_text_date": "E ، MMM DD",
"daily_title_text_date_year": "E ، MMM DD ، yyyy",
"dark": "معتم",
"date_after": "التارخ بعد",
"date_and_time": "التاريخ و الوقت",
"date_before": "التاريخ قبل",
"date_format": "E ، Lll D ، Y • H: MM A",
"date_of_birth_saved": "تم حفظ تاريخ الميلاد بنجاح",
"date_range": "نطاق الموعد",
"day": "يوم",
@@ -537,19 +713,30 @@
"delete": "حذف",
"delete_album": "حذف الألبوم",
"delete_api_key_prompt": "هل أنت متأكد أنك تريد حذف مفتاح API هذا؟",
"delete_dialog_alert": " هذه العناصر سيتم حذفها بشكل دائم من جهازك ومن تطبيق",
"delete_dialog_alert_local": " العناصر التي تم حذفها من جهازك ولكنها موجوده في تطبيق",
"delete_dialog_alert_local_non_backed_up": "بعض العناصر التي سيتم حذفها بشكل دائم ولا يوجد لها نسخه احتياطيه في تطبيق ",
"delete_dialog_alert_remote": "العناصر التي سيتم حذفها بشكل دائم من تطبيق",
"delete_dialog_ok_force": "احذف على أي حال",
"delete_dialog_title": "الحذف بشكل نهائي",
"delete_duplicates_confirmation": "هل أنت متأكد أنك تريد حذف هذه التكرارات نهائيًا؟",
"delete_face": "حذف الوجه",
"delete_key": "حذف المفتاح",
"delete_library": "حذف المكتبة",
"delete_link": "حذف الرابط",
"delete_local_dialog_ok_backed_up_only": "حذف النسخة الاحتياطية فقط",
"delete_local_dialog_ok_force": "احذف على أي حال",
"delete_others": "حذف الأخرى",
"delete_shared_link": "حذف الرابط المشترك",
"delete_shared_link_dialog_title": "حذف الرابط المشترك",
"delete_tag": "حذف العلامة",
"delete_tag_confirmation_prompt": "هل أنت متأكد أنك تريد حذف العلامة {tagName}؟",
"delete_user": "حذف المستخدم",
"deleted_shared_link": "تم حذف الرابط المشارك",
"deletes_missing_assets": "حذف الأصول المفقودة من القرص",
"description": "وصف",
"description_input_hint_text": "اضف وصفا...",
"description_input_submit_error": "خطأ تحديث الوصف ، تحقق من السجل لمزيد من التفاصيل",
"details": "تفاصيل",
"direction": "الإتجاه",
"disabled": "معطل",
@@ -566,12 +753,26 @@
"documentation": "الوثائق",
"done": "تم",
"download": "تنزيل",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "مقاطع الفيديو المدمجة",
"download_include_embedded_motion_videos_description": "تضمين مقاطع الفيديو المضمنة في الصور المتحركة كملف منفصل",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "التنزيلات",
"download_settings_description": "إدارة الإعدادات المتعلقة بتنزيل المحتويات",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "جارٍ التنزيل",
"downloading_asset_filename": "{filename} قيد التنزيل",
"downloading_media": "Downloading media",
"drop_files_to_upload": "قم بإسقاط الملفات في أي مكان لرفعها",
"duplicates": "التكرارات",
"duplicates_description": "قم بحل كل مجموعة من خلال الإشارة إلى التكرارات، إن وجدت",
@@ -588,6 +789,7 @@
"edit_key": "تعديل المفتاح",
"edit_link": "تغيير الرابط",
"edit_location": "تعديل الموقع",
"edit_location_dialog_title": "موقع",
"edit_name": "تعديل الاسم",
"edit_people": "تعديل الأشخاص",
"edit_tag": "تعديل العلامة",
@@ -600,14 +802,19 @@
"editor_crop_tool_h2_aspect_ratios": "نسب العرض إلى الارتفاع",
"editor_crop_tool_h2_rotation": "التدوير",
"email": "البريد الإلكتروني",
"empty_folder": "This folder is empty",
"empty_trash": "أفرغ سلة المهملات",
"empty_trash_confirmation": "هل أنت متأكد أنك تريد إفراغ سلة المهملات؟ سيؤدي هذا إلى إزالة جميع المحتويات الموجودة في سلة المهملات بشكل نهائي من Immich.\nلا يمكنك التراجع عن هذا الإجراء!",
"enable": "تفعيل",
"enabled": "مفعل",
"end_date": "تاريخ الإنتهاء",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "خطأ",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "حدث خطأ في حذف الوجه من الأصول",
"error_loading_image": "حدث خطأ أثناء تحميل الصورة",
"error_saving_image": "Error: {}",
"error_title": "خطأ - حدث خللٌ ما",
"errors": {
"cannot_navigate_next_asset": "لا يمكن الانتقال إلى المحتوى التالي",
@@ -736,8 +943,21 @@
"unable_to_upload_file": "تعذر رفع الملف"
},
"exif": "Exif (صيغة ملف صوري قابل للتبادل)",
"exif_bottom_sheet_description": "اضف وصفا...",
"exif_bottom_sheet_details": "تفاصيل",
"exif_bottom_sheet_location": "موقع",
"exif_bottom_sheet_people": "الناس",
"exif_bottom_sheet_person_add_person": "اضف اسما",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "خروج من العرض التقديمي",
"expand_all": "توسيع الكل",
"experimental_settings_new_asset_list_subtitle": "أعمال جارية",
"experimental_settings_new_asset_list_title": "تمكين شبكة الصور التجريبية",
"experimental_settings_subtitle": "استخدام على مسؤوليتك الخاصة!",
"experimental_settings_title": "تجريبي",
"expire_after": "تنتهي بعد",
"expired": "منتهي الصلاحية",
"expires_date": "تنتهي الصلاحية في {date}",
@@ -748,11 +968,16 @@
"extension": "الإمتداد",
"external": "خارجي",
"external_libraries": "المكتبات الخارجية",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "غير معين",
"failed": "Failed",
"failed_to_load_assets": "فشل تحميل الأصول",
"failed_to_load_folder": "Failed to load folder",
"favorite": "مفضل",
"favorite_or_unfavorite_photo": "تفضيل أو إلغاء تفضيل الصورة",
"favorites": "المفضلة",
"favorites_page_no_favorites": "لم يتم العثور على الأصول المفضلة",
"feature_photo_updated": "تم تحديث الصورة المميزة",
"features": "الميزات",
"features_setting_description": "إدارة ميزات التطبيق",
@@ -760,25 +985,38 @@
"file_name_or_extension": "اسم الملف أو امتداده",
"filename": "اسم الملف",
"filetype": "نوع الملف",
"filter": "Filter",
"filter_people": "تصفية الاشخاص",
"find_them_fast": "يمكنك العثور عليها بسرعة بالاسم من خلال البحث",
"fix_incorrect_match": "إصلاح المطابقة غير الصحيحة",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "المجلدات",
"folders_feature_description": "تصفح عرض المجلد للصور ومقاطع الفيديو الموجودة على نظام الملفات",
"forward": "إلى الأمام",
"general": "عام",
"get_help": "الحصول على المساعدة",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "البدء",
"go_back": "الرجوع للخلف",
"go_to_folder": "اذهب إلى المجلد",
"go_to_search": "اذهب إلى البحث",
"grant_permission": "Grant permission",
"group_albums_by": "تجميع الألبومات حسب...",
"group_country": "مجموعة البلد",
"group_no": "بدون تجميع",
"group_owner": "تجميع حسب المالك",
"group_places_by": "تجميع الأماكن حسب...",
"group_year": "تجميع حسب السنة",
"haptic_feedback_switch": "تمكين ردود الفعل اللمسية",
"haptic_feedback_title": "ردود فعل لمسية",
"has_quota": "محدد بحصة",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "مرحبا {name} ({email})",
"hide_all_people": "إخفاء جميع الأشخاص",
"hide_gallery": "اخفاء المعرض",
@@ -786,8 +1024,24 @@
"hide_password": "اخفاء كلمة المرور",
"hide_person": "اخفاء الشخص",
"hide_unnamed_people": "إخفاء الأشخاص بدون إسم",
"home_page_add_to_album_conflicts": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.{فشل} الأصول موجودة بالفعل في الألبوم.",
"home_page_add_to_album_err_local": "لا يمكن إضافة الأصول المحلية إلى الألبومات حتى الآن ، سوف يتخطى",
"home_page_add_to_album_success": "تمت إضافة {تمت إضافة} الأصول إلى الألبوم {الألبوم}.",
"home_page_album_err_partner": "لا يمكن إضافة أصول شريكة إلى ألبوم حتى الآن ، سوف يتخطى",
"home_page_archive_err_local": "لا يمكن أرشفة الأصول المحلية حتى الآن ، سوف يتخطى",
"home_page_archive_err_partner": "لا يمكن أرشفة الأصول الشريكة ، سوف يتخطى",
"home_page_building_timeline": "بناء الجدول الزمني",
"home_page_delete_err_partner": "لا يمكن حذف الأصول الشريكة ,سوف يتخطى",
"home_page_delete_remote_err_local": "الأصول المحلية في التحديد البعيد المحذوف، سوف يتخطى",
"home_page_favorite_err_local": "لا يمكن تفضيل الأصول المحلية بعد، سوف يتخطى",
"home_page_favorite_err_partner": "لا يمكن الأصول الشريكة المفضلة بعد ، سوف يتخطى",
"home_page_first_time_notice": "إذا كانت هذه هي المرة الأولى التي تستخدم فيها التطبيق، فيرجى التأكد من اختيار ألبوم (ألبومات) احتياطية حتى يتمكن المخطط الزمني من ملء الصور ومقاطع الفيديو في الألبوم (الألبومات).",
"home_page_share_err_local": "لا يمكن مشاركة الأصول المحلية عبر الرابط ، سوف يتخطى",
"home_page_upload_err_limit": "لا يمكن إلا تحميل 30 أحد الأصول في وقت واحد ، سوف يتخطى",
"host": "المضيف",
"hour": "ساعة",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "صورة",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} تم التقاطها مع {person1} في {date}",
@@ -799,6 +1053,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1} و{person2} في {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}، {country} مع {person1}، {person2}، و{person3} في {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} تم التقاطها في {city}, {country} with {person1}, {person2}, مع {additionalCount, number} آخرين في {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "بدأ التنزيل",
"image_viewer_page_state_provider_download_success": "تم التنزيل بنجاح",
"image_viewer_page_state_provider_share_error": "خطأ في المشاركة",
"immich_logo": "شعار immich",
"immich_web_interface": "واجهة ويب immich",
"import_from_json": "استيراد من JSON",
@@ -817,6 +1075,8 @@
"night_at_midnight": "كل ليلة عند منتصف الليل",
"night_at_twoam": "كل ليلة الساعة 2 صباحا"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "دعوة الأشخاص",
"invite_to_album": "دعوة إلى الألبوم",
"items_count": "{count, plural, one {# عنصر} other {# عناصر}}",
@@ -837,6 +1097,12 @@
"level": "المستوى",
"library": "مكتبة",
"library_options": "خيارات المكتبة",
"library_page_device_albums": "ألبومات على الجهاز",
"library_page_new_album": "البوم جديد",
"library_page_sort_asset_count": "عدد الأصول",
"library_page_sort_created": "تاريخ الإنشاء",
"library_page_sort_last_modified": "آخر تعديل",
"library_page_sort_title": "عنوان الألبوم",
"light": "المضيئ",
"like_deleted": "تم حذف الإعجاب",
"link_motion_video": "رابط فيديو الحركة",
@@ -846,12 +1112,42 @@
"list": "قائمة",
"loading": "تحميل",
"loading_search_results_failed": "فشل تحميل نتائج البحث",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "اختر على الخريطة",
"location_picker_latitude_error": "أدخل خط عرض صالح",
"location_picker_latitude_hint": "أدخل خط العرض الخاص بك هنا",
"location_picker_longitude_error": "أدخل خط الطول الصحيح",
"location_picker_longitude_hint": "أدخل خط الطول هنا",
"log_out": "تسجيل خروج",
"log_out_all_devices": "تسجيل الخروج من كافة الأجهزة",
"logged_out_all_devices": "تم تسجيل الخروج من جميع الأجهزة",
"logged_out_device": "تم تسجيل الخروج من الجهاز",
"login": "تسجيل الدخول",
"login_disabled": "تم تعطيل تسجيل الدخول",
"login_form_api_exception": " استثناء برمجة التطبيقات. يرجى التحقق من عنوان الخادم والمحاولة مرة أخرى ",
"login_form_back_button_text": "الرجوع للخلف",
"login_form_email_hint": "yoursemail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "url نقطة نهاية الخادم",
"login_form_err_http": "يرجى تحديد http:// أو https://",
"login_form_err_invalid_email": "بريد إلكتروني خاطئ",
"login_form_err_invalid_url": "URL غير صالح",
"login_form_err_leading_whitespace": "قيادة المساحة البيضاء",
"login_form_err_trailing_whitespace": "زائدة بيضاء",
"login_form_failed_get_oauth_server_config": "تسجيل الخطأ باستخدام OAUTH ، تحقق من عنوان URL لخادم",
"login_form_failed_get_oauth_server_disable": "ميزة OAuth غير متوفرة على هذا الخادم",
"login_form_failed_login": "خطأ في تسجيل الدخول ، تحقق من عنوان URL للخادم والبريد الإلكتروني وكلمة المرور",
"login_form_handshake_exception": "كان هناك استثناء مصافحة مع الخادم.تمكين دعم الشهادة الموقعة ذاتيا في الإعدادات إذا كنت تستخدم شهادة موقعة ذاتيا.",
"login_form_password_hint": "كلمة المرور",
"login_form_save_login": "ابق متصلا",
"login_form_server_empty": "أدخل عنوان URL الخادم.",
"login_form_server_error": "لا يمكن الاتصال بالخادم.",
"login_has_been_disabled": "تم تعطيل تسجيل الدخول.",
"login_password_changed_error": "كان هناك خطأ في تحديث كلمة المرور الخاصة بك",
"login_password_changed_success": "تم تحديث كلمة السر بنجاح",
"logout_all_device_confirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من جميع الأجهزة؟",
"logout_this_device_confirmation": "هل أنت متأكد أنك تريد تسجيل الخروج من هذا الجهاز؟",
"longitude": "خط الطول",
@@ -868,13 +1164,40 @@
"manage_your_devices": "إدارة الأجهزة التي تم تسجيل الدخول إليها",
"manage_your_oauth_connection": "إدارة اتصال OAuth الخاص بك",
"map": "الخريطة",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "لا يمكن الحصول على موقع المستخدم",
"map_location_dialog_yes": "نعم",
"map_location_picker_page_use_location": "استخدم هذا الموقع",
"map_location_service_disabled_content": "يجب تمكين خدمة الموقع لعرض الأصول من موقعك الحالي.هل تريد تمكينه الآن؟",
"map_location_service_disabled_title": "خدمة الموقع معطل",
"map_marker_for_images": "علامة الخريطة للصور الملتقطة في {city}، {country}",
"map_marker_with_image": "علامة الخريطة مع الصورة",
"map_no_assets_in_bounds": "لا توجد صور في هذا المجال",
"map_no_location_permission_content": "هناك حاجة إلى إذن الموقع لعرض الأصول من موقعك الحالي.هل تريد السماح به الآن؟",
"map_no_location_permission_title": "تم رفض إذن الموقع",
"map_settings": "إعدادات الخريطة",
"map_settings_dark_mode": "الوضع المظلم",
"map_settings_date_range_option_day": "24 ساعة الماضية",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "السنة الفائتة",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "إعدادات الخريطة",
"map_settings_include_show_archived": "تشمل الأرشفة",
"map_settings_include_show_partners": "تضمين الشركاء",
"map_settings_only_show_favorites": "اظهار المفضلة فقط",
"map_settings_theme_settings": "مظهر الخريطة",
"map_zoom_to_see_photos": "قم بتصغيرها لرؤية الصور",
"matches": "تطابقات",
"media_type": "نوع الوسائط",
"memories": "الذكريات",
"memories_all_caught_up": "كل شيء محدث",
"memories_check_back_tomorrow": "التحقق مرة أخرى غدا لمزيد من الذكريات",
"memories_setting_description": "إدارة ما تراه في ذكرياتك",
"memories_start_over": "ابدأ من جديد",
"memories_swipe_to_close": "اسحب لأعلى للإغلاق",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "ذكرى",
"memory_lane_title": "ذكرياتٌ من {title}",
"menu": "القائمة",
@@ -889,12 +1212,17 @@
"missing": "المفقودة",
"model": "نموذج",
"month": "شهر",
"monthly_title_text_date_format": "ط ط ط",
"more": "المزيد",
"moved_to_trash": "تم النقل إلى سلة المهملات",
"multiselect_grid_edit_date_time_err_read_only": "لا يمكن تعديل تاريخ الأصول (المواد) للقراءة فقط، سوف يتخطى",
"multiselect_grid_edit_gps_err_read_only": "لا يمكن تعديل موقع الأصول (المواد) للقراءة فقط، سوف يتخطى",
"mute_memories": "كتم الذكريات",
"my_albums": "ألبوماتي",
"name": "الاسم",
"name_or_nickname": "الاسم أو اللقب",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "أبداً",
"new_album": "البوم جديد",
"new_api_key": "مفتاح API جديد",
@@ -911,6 +1239,7 @@
"no_albums_yet": "يبدو أنه ليس لديك أي ألبومات حتى الآن.",
"no_archived_assets_message": "أرشفة الصور ومقاطع الفيديو لإخفائها من عرض الصور لديك",
"no_assets_message": "انقر لتحميل صورتك الأولى",
"no_assets_to_show": "لا توجد أصول لعرضها",
"no_duplicates_found": "لم يتم العثور على أي تكرارات.",
"no_exif_info_available": "لا تتوفر معلومات exif",
"no_explore_results_message": "قم برفع المزيد من الصور لاستكشاف مجموعتك.",
@@ -922,9 +1251,13 @@
"no_results_description": "جرب كلمة رئيسية مرادفة أو أكثر عمومية",
"no_shared_albums_message": "قم بإنشاء ألبوم لمشاركة الصور ومقاطع الفيديو مع الأشخاص في شبكتك",
"not_in_any_album": "ليست في أي ألبوم",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "ملاحظة: لتطبيق تسمية التخزين على المحتويات التي تم رفعها مسبقًا، قم بتشغيل",
"note_unlimited_quota": "ملاحظة: أدخل 0 للحصة غير المحدودة",
"notes": "ملاحظات",
"notification_permission_dialog_content": "لتمكين الإخطارات ، انتقل إلى الإعدادات و اختار السماح.",
"notification_permission_list_tile_content": "منح إذن لتمكين الإخطارات.",
"notification_permission_list_tile_enable_button": "تمكين الإخطارات",
"notification_permission_list_tile_title": "إذن الإخطار",
"notification_toggle_setting_description": "تفعيل إشعارات البريد الإلكتروني",
"notifications": "إشعارات",
"notifications_setting_description": "إدارة الإشعارات",
@@ -935,6 +1268,7 @@
"offline_paths_description": "قد تكون هذه النتائج بسبب الحذف اليدوي للملفات التي لا تشكل جزءًا من مكتبة خارجية.",
"ok": "نعم",
"oldest_first": "الأقدم أولا",
"on_this_device": "On this device",
"onboarding": "الإعداد الأولي",
"onboarding_privacy_description": "تعتمد الميزات التالية (اختياري) على خدمات خارجية، ويمكن تعطيلها في أي وقت في إعدادات الإدارة.",
"onboarding_theme_description": "اختر نسق الألوان للنسخة الخاصة بك. يمكنك تغيير ذلك لاحقًا في إعداداتك.",
@@ -958,6 +1292,14 @@
"partner_can_access": "يستطيع {partner} الوصول",
"partner_can_access_assets": "جميع الصور ومقاطع الفيديو الخاصة بك باستثناء تلك الموجودة في المؤرشفة والمحذوفة",
"partner_can_access_location": "الموقع الذي تم التقاط صورك فيه",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "عرض الكل",
"partner_page_empty_message": "لم يتم مشاركة صورك بعد مع أي شريك.",
"partner_page_no_more_users": "لا مزيد من المستخدمين لإضافة",
"partner_page_partner_add_failed": "فشل في إضافة شريك",
"partner_page_select_partner": "حدد شريكًا",
"partner_page_shared_to_title": "مشترك ل",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
"partner_sharing": "مشاركة الشركاء",
"partners": "الشركاء",
"password": "كلمة المرور",
@@ -986,6 +1328,14 @@
"permanently_delete_assets_prompt": "هل أنت متأكد أنك تريد حذف {count, plural, one {هذا العنصر؟} other {هذه العناصر <b>#</b>؟}} سيتم أيضًا إزالته {count, plural, one {من ألبومه} other {من ألبوماتهم}}.",
"permanently_deleted_asset": "تم حذف الأصل بشكل نهائي",
"permanently_deleted_assets_count": "تم حذف {count, plural, one {# محتوى} other {# المحتويات}} نهائيًا",
"permission_onboarding_back": "خلف",
"permission_onboarding_continue_anyway": "تواصل على أي حال",
"permission_onboarding_get_started": "البدء",
"permission_onboarding_go_to_settings": "اذهب للاعدادات",
"permission_onboarding_permission_denied": "تم رفض الإذن. لاستخدام التطبيق، قم بمنح أذونات الصور والفيديو في الإعدادات ",
"permission_onboarding_permission_granted": "تم تأمين التصريح! وضعك تمام.",
"permission_onboarding_permission_limited": "إذن محدود. للسماح بالنسخ الاحتياطي للتطبيق وإدارة مجموعة المعرض بالكامل، امنح أذونات الصور والفيديو في الإعدادات.",
"permission_onboarding_request": "يتطلب التطبيق إذنًا لعرض الصور ومقاطع الفيديو الخاصة بك",
"person": "شخص",
"person_birthdate": "تاريخ الميلاد {التاريخ}",
"person_hidden": "{name}{hidden, select, true { (مخفي)} other {}}",
@@ -1003,6 +1353,8 @@
"play_motion_photo": "تشغيل الصور المتحركة",
"play_or_pause_video": "تشغيل الفيديو أو إيقافه مؤقتًا",
"port": "المنفذ",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "التفضيلات",
"preset": "الإعداد المسبق",
"preview": "معاينة",
"previous": "السابق",
@@ -1010,6 +1362,13 @@
"previous_or_next_photo": "الصورة السابقة أو التالية",
"primary": "أساسي",
"privacy": "الخصوصية",
"profile_drawer_app_logs": "السجلات",
"profile_drawer_client_out_of_date_major": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
"profile_drawer_client_out_of_date_minor": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار صغير.",
"profile_drawer_client_server_up_to_date": "العميل والخادم محدثان",
"profile_drawer_github": "Github",
"profile_drawer_server_out_of_date_major": "الخادم قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
"profile_drawer_server_out_of_date_minor": "الخادم قديم.يرجى التحديث إلى أحدث إصدار صغير.",
"profile_image_of_user": "صورة الملف الشخصي لـ {user}",
"profile_picture_set": "مجموعة الصور الشخصية.",
"public_album": "الألبوم العام",
@@ -1059,6 +1418,8 @@
"recent": "حديث",
"recent-albums": "ألبومات الحديثة",
"recent_searches": "عمليات البحث الأخيرة",
"recently_added": "Recently added",
"recently_added_page_title": "أضيف مؤخرا",
"refresh": "تحديث",
"refresh_encoded_videos": "تحديث مقاطع الفيديو المشفرة",
"refresh_faces": "تحديث الوجوه",
@@ -1115,10 +1476,12 @@
"role_editor": "المحرر",
"role_viewer": "العارض",
"save": "حفظ",
"save_to_gallery": "Save to gallery",
"saved_api_key": "تم حفظ مفتاح الـ API",
"saved_profile": "تم حفظ الملف",
"saved_settings": "تم حفظ الإعدادات",
"say_something": "قل شيئًا",
"scaffold_body_error_occurred": "حدث خطأ",
"scan_all_libraries": "فحص كل المكتبات",
"scan_library": "مسح",
"scan_settings": "إعدادات الفحص",
@@ -1134,16 +1497,45 @@
"search_camera_model": "البحث حسب موديل الكاميرا...",
"search_city": "البحث حسب المدينة...",
"search_country": "البحث حسب الدولة...",
"search_filter_apply": "اختار الفلتر ",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "ليس في الألبوم",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "البحث عن",
"search_for_existing_person": "البحث عن شخص موجود",
"search_no_more_result": "No more results",
"search_no_people": "لا يوجد أشخاص",
"search_no_people_named": "لا يوجد أشخاص بالاسم \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "خيارات البحث",
"search_page_categories": "فئات",
"search_page_motion_photos": "الصور المتحركه",
"search_page_no_objects": "لا توجد معلومات عن أشياء متاحة",
"search_page_no_places": "لا توجد معلومات متوفرة للأماكن",
"search_page_screenshots": "لقطات الشاشة",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": " صور ذاتيه",
"search_page_things": "أشياء",
"search_page_view_all_button": "عرض الكل",
"search_page_your_activity": "نشاطك",
"search_page_your_map": "خريطتك",
"search_people": "البحث عن الأشخاص",
"search_places": "البحث عن الأماكن",
"search_rating": "البحث حسب التقييم...",
"search_result_page_new_search_hint": "بحث جديد",
"search_settings": "إعدادات البحث",
"search_state": "البحث حسب الولاية...",
"search_suggestion_list_smart_search_hint_1": "يتم تمكين البحث الذكي افتراضيًا ، للبحث عن البيانات الوصفية ، استخدم بناء الجملة",
"search_suggestion_list_smart_search_hint_2": "م: البحث الخاص بك",
"search_tags": "البحث عن العلامات...",
"search_timezone": "البحث حسب المنطقة الزمنية...",
"search_type": "نوع البحث",
@@ -1164,10 +1556,14 @@
"select_new_face": "تحديد وجه جديد",
"select_photos": "تحديد الصور",
"select_trash_all": "تحديد حذف الكلِ",
"select_user_for_sharing_page_err_album": "فشل في إنشاء ألبوم",
"selected": "التحديد",
"selected_count": "{count, plural, other {# محددة }}",
"send_message": "‏إرسال رسالة",
"send_welcome_email": "إرسال بريدًا إلكترونيًا ترحيبيًا",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "نسخة التطبيق",
"server_info_box_server_url": "عنوان URL الخادم",
"server_offline": "الخادم غير متصل",
"server_online": "الخادم متصل",
"server_stats": "إحصائيات الخادم",
@@ -1179,22 +1575,91 @@
"set_date_of_birth": "تحديد تاريخ الميلاد",
"set_profile_picture": "تحديد صورة الملف الشخصي",
"set_slideshow_to_fullscreen": "تحديد عرض الشرائح على وضع ملء الشاشة",
"setting_image_viewer_help": "يقوم عارض التفاصيل بتحميل الصورة المصغرة الصغيرة أولاً ، ثم يقوم بتحميل المعاينة متوسطة الحجم (إذا تم تمكينها) ، ويقوم أخيرًا بتحميل الأصل (إذا تم تمكينه).",
"setting_image_viewer_original_subtitle": "تمكين تحميل الصورة الكاملة الدقة الأصلية (كبيرة!).تعطيل لتقليل استخدام البيانات (كل من الشبكة وعلى ذاكرة التخزين المؤقت للجهاز).",
"setting_image_viewer_original_title": "تحميل الصورة الأصلية",
"setting_image_viewer_preview_subtitle": "تمكين تحميل صورة متوسطة الدقة.تعطيل إما لتحميل مباشرة أو استخدام الصورة المصغرة مباشرة.",
"setting_image_viewer_preview_title": "تحميل صورة معاينة",
"setting_image_viewer_title": "الصور",
"setting_languages_apply": "تغيير الإعدادات",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "اللغات",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "في الحال",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "أبداً",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "معلومات التقدم التفصيلية تحميل لكل أصل",
"setting_notifications_single_progress_title": "إظهار تقدم التفاصيل الاحتياطية الخلفية",
"setting_notifications_subtitle": "اضبط تفضيلات الإخطار",
"setting_notifications_total_progress_subtitle": "التقدم التحميل العام (تم القيام به/إجمالي الأصول)",
"setting_notifications_total_progress_title": "إظهار النسخ الاحتياطي الخلفية التقدم المحرز",
"setting_video_viewer_looping_title": "تكرار مقطع فيديو تلقائيًا",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "الإعدادات",
"settings_require_restart": "يرجى إعادة تشغيل لتطبيق هذا الإعداد",
"settings_saved": "تم حفظ الإعدادات",
"share": "مشاركة",
"share_add_photos": "إضافة الصور",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "تحضير...",
"shared": "مُشتَرك",
"shared_album_activities_input_disable": "التعليق معطل",
"shared_album_activity_remove_content": "هل تريد حذف هذا النشاط؟",
"shared_album_activity_remove_title": "حذف النشاط",
"shared_album_section_people_action_error": "خطأ ترك/إزالة من الألبوم",
"shared_album_section_people_action_leave": "إزالة المستخدم من الألبوم",
"shared_album_section_people_action_remove_user": "إزالة المستخدم من الألبوم",
"shared_album_section_people_title": "الناس",
"shared_by": "تمت مشاركته بواسطة",
"shared_by_user": "تمت المشاركة بواسطة {user}",
"shared_by_you": "تمت مشاركته من قِبلك",
"shared_from_partner": "صور من {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "روابط مشتركة",
"shared_link_clipboard_copied_massage": "نسخ إلى الحافظة",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "خطأ أثناء إنشاء رابط مشترك",
"shared_link_edit_description_hint": "أدخل وصف المشاركة",
"shared_link_edit_expire_after_option_day": "يوم 1",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 ساعة",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 دقيقة",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "أدخل كلمة مرور المشاركة",
"shared_link_edit_submit_button": "تحديث الرابط",
"shared_link_error_server_url_fetch": "لا يمكن جلب عنوان الخادم",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "تنتهي ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "إدارة الروابط المشتركة",
"shared_link_options": "خيارات الرابط المشترك",
"shared_links": "روابط مشتركة",
"shared_links_description": "وصف الروابط المشتركة",
"shared_photos_and_videos_count": "{assetCount, plural, other {# الصور ومقاطع الفيديو المُشارَكة.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "تمت المشاركة مع {partner}",
"sharing": "مشاركة",
"sharing_enter_password": "الرجاء إدخال كلمة المرور لعرض هذه الصفحة.",
"sharing_page_album": "ألبومات مشتركة",
"sharing_page_description": "قم بإنشاء ألبومات مشتركة لمشاركة الصور ومقاطع الفيديو مع أشخاص في شبكتك.",
"sharing_page_empty_list": "قائمة فارغة",
"sharing_sidebar_description": "اعرض رابطًا للمشاركة في الشريط الجانبي",
"sharing_silver_appbar_create_shared_album": "ألبوم مشترك جديد",
"sharing_silver_appbar_share_partner": "شارك مع الشريك",
"shift_to_permanent_delete": "اضغط على ⇧ لحذف المحتوى نهائيًا",
"show_album_options": "إظهار خيارات الألبوم",
"show_albums": "إظهار الألبومات",
@@ -1261,6 +1726,9 @@
"support_third_party_description": "تم حزم تثبيت immich الخاص بك بواسطة جهة خارجية. قد تكون المشكلات التي تواجهها ناجمة عن هذه الحزمة، لذا يرجى طرح المشكلات معهم في المقام الأول باستخدام الروابط أدناه.",
"swap_merge_direction": "تبديل اتجاه الدمج",
"sync": "مزامنة",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "العلامة",
"tag_assets": "أصول العلامة",
"tag_created": "تم إنشاء العلامة: {tag}",
@@ -1274,6 +1742,19 @@
"theme": "مظهر",
"theme_selection": "اختيار السمة",
"theme_selection_description": "قم بتعيين السمة تلقائيًا على اللون الفاتح أو الداكن بناءً على تفضيلات نظام المتصفح الخاص بك",
"theme_setting_asset_list_storage_indicator_title": "عرض مؤشر التخزين على بلاط الأصول",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "اضبط جودة عارض الصورة التفصيلية",
"theme_setting_image_viewer_quality_title": "جودة عارض الصورة",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "تلقائي (اتبع إعداد النظام)",
"theme_setting_theme_subtitle": "اختر إعدادات مظهر التطبيق",
"theme_setting_three_stage_loading_subtitle": "قد يزيد التحميل من ثلاث مراحل من أداء التحميل ولكنه يسبب تحميل شبكة أعلى بكثير",
"theme_setting_three_stage_loading_title": "تمكين تحميل ثلاث مراحل",
"they_will_be_merged_together": "سيتم دمجهم معًا",
"third_party_resources": "موارد الطرف الثالث",
"time_based_memories": "ذكريات استنادًا للوقت",
@@ -1293,7 +1774,15 @@
"trash_all": "نقل الكل إلى سلة المهملات",
"trash_count": "سلة المحملات {count, number}",
"trash_delete_asset": "حذف/نقل المحتوى إلى سلة المهملات",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "ستظهر هنا الصور ومقاطع الفيديو المحذوفة.",
"trash_page_delete_all": "حذف الكل",
"trash_page_empty_trash_dialog_content": "هل تريد تفريغ أصولك المهملة؟ ستتم إزالة هذه العناصر نهائيًا من التطبيق",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "لا توجد اصول في سله المهملات",
"trash_page_restore_all": "استعادة الكل",
"trash_page_select_assets_btn": "اختر الأصول ",
"trash_page_title": "Trash ({})",
"trashed_items_will_be_permanently_deleted_after": "سيتم حذفُ العناصر المحذوفة نِهائيًا بعد {days, plural, one {# يوم} other {# أيام }}.",
"type": "النوع",
"unarchive": "أخرج من الأرشيف",
@@ -1322,6 +1811,8 @@
"updated_password": "تم تحديث كلمة المرور",
"upload": "رفع",
"upload_concurrency": "الرفع المتزامن",
"upload_dialog_info": "هل تريد النسخ الاحتياطي للأصول (الأصول) المحددة إلى الخادم؟",
"upload_dialog_title": "تحميل الأصول",
"upload_errors": "إكتمل الرفع مع {count, plural, one {# خطأ} other {# أخطاء}}, قم بتحديث الصفحة لرؤية المحتويات الجديدة التي تم رفعها.",
"upload_progress": "متبقية {remaining, number} - معالجة {processed, number}/{total, number}",
"upload_skipped_duplicates": "تم تخطي {count, plural, one {# محتوى مكرر} other {# محتويات مكررة }}",
@@ -1329,8 +1820,11 @@
"upload_status_errors": "الأخطاء",
"upload_status_uploaded": "تم الرفع",
"upload_success": "تم الرفع بنجاح، قم بتحديث الصفحة لرؤية المحتويات المرفوعة الجديدة.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "عنوان URL",
"usage": "الاستخدام",
"use_current_connection": "use current connection",
"use_custom_date_range": "استخدم النطاق الزمني المخصص بدلاً من ذلك",
"user": "مستخدم",
"user_id": "معرف المستخدم",
@@ -1345,10 +1839,16 @@
"users": "المستخدمين",
"utilities": "أدوات",
"validate": "تحقْق",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "المتغيرات",
"version": "الإصدار",
"version_announcement_closing": "صديقك، أليكس",
"version_announcement_message": "مرحبًا! يتوفر إصدار جديد من Immich. يُرجى تخصيص بعض الوقت لقراءة <link>ملاحظات الإصدار</link> للتأكد من تحديث إعداداتك لمنع أي أخطاء في التكوين، خاصة إذا كنت تستخدم WatchTower أو أي آلية تتولى تحديث مثيل Immich الخاص بك تلقائيًا.",
"version_announcement_overlay_release_notes": "ملاحظات الإصدار",
"version_announcement_overlay_text_1": "مرحبًا يا صديقي ، هناك إصدار جديد",
"version_announcement_overlay_text_2": "من فضلك خذ وقتك لزيارة",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "نسخه جديده متاحه للخادم ",
"version_history": "تاريخ الإصدار",
"version_history_item": "تم تثبيت {version} في {date}",
"video": "فيديو",
@@ -1367,15 +1867,20 @@
"view_next_asset": "عرض المحتوى التالي",
"view_previous_asset": "عرض المحتوى السابق",
"view_stack": "عرض التكديس",
"viewer_remove_from_stack": "حذف من الكومه أو المجموعة",
"viewer_stack_use_as_main_asset": "استخدم كأصل رئيسي",
"viewer_unstack": "فك الكومه",
"visibility_changed": "الرؤية تغيرت لـ {count, plural, one {شخص واحد} other {# عدة أشخاص}}",
"waiting": "في الانتظار",
"warning": "تحذير",
"week": "أسبوع",
"welcome": "مرحباً",
"welcome_to_immich": "مرحباً بك في Immich",
"wifi_name": "WiFi Name",
"year": "سنة",
"years_ago": "منذ {years, plural, one {# سنة} other {# سنوات}}",
"yes": "نعم",
"you_dont_have_any_shared_links": "ليس لديك أي روابط مشتركة",
"your_wifi_name": "Your WiFi name",
"zoom_image": "تكبير الصورة"
}

View File

@@ -4,6 +4,7 @@
"account_settings": "Налады ўліковага запісу",
"acknowledge": "Пацвердзіць",
"action": "Дзеянне",
"action_common_update": "Абнавіць",
"actions": "Дзеянні",
"active": "Актыўны",
"activity": "Актыўнасць",
@@ -20,8 +21,10 @@
"add_partner": "Дадаць партнёра",
"add_path": "Дадаць шлях",
"add_photos": "Дадаць фота",
"add_to": "Дадаць у...",
"add_to": "Дадаць у",
"add_to_album": "Дадаць у альбом",
"add_to_album_bottom_sheet_added": "Дададзена да {album}",
"add_to_album_bottom_sheet_already_exists": "Ужо знаходзіцца ў {album}",
"add_to_shared_album": "Дадаць у агульны альбом",
"add_url": "Дадаць URL",
"added_to_archive": "Дададзена ў архіў",
@@ -41,6 +44,7 @@
"backup_settings": "Налады рэзервовага капіявання",
"backup_settings_description": "Кіраванне наладкамі рэзервовага капіявання базы даных",
"check_all": "Праверыць усе",
"cleanup": "Ачыстка",
"cleared_jobs": "Ачышчаны заданні для: {job}",
"config_set_by_file": "Канфігурацыя ў зараз усталявана праз файл канфігурацыі",
"confirm_delete_library": "Вы ўпэўнены што жадаеце выдаліць {library} бібліятэку?",

View File

@@ -162,7 +162,6 @@
"no_pattern_added": "Няма добавен модел",
"note_apply_storage_label_previous_assets": "Забележка: За да приложите етикета за съхранение към предварително качени файлове, стартирайте",
"note_cannot_be_changed_later": "ВНИМАНИЕ: Това не може да бъде променено по-късно!",
"note_unlimited_quota": "Бележка: Въведете 0 за да нямате лимит на квотата",
"notification_email_from_address": "От адрес",
"notification_email_from_address_description": "Електронна поща на изпращача, например: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Хост на сървъра за електронна поща (например: smtp.immich.app)",
@@ -923,7 +922,6 @@
"no_shared_albums_message": "Създайте албум, за да споделяте снимки и видеоклипове с хората в мрежата си",
"not_in_any_album": "Не е в никой албум",
"note_apply_storage_label_to_previously_uploaded assets": "Забележка: За да приложите етикета за съхранение към предварително качени активи, стартирайте",
"note_unlimited_quota": "Забележка: Въведете 0 за неограничена квота",
"notes": "Бележки",
"notification_toggle_setting_description": "Активиране на имейл известия",
"notifications": "Известия",

View File

@@ -118,7 +118,6 @@
"no_pattern_added": "",
"note_apply_storage_label_previous_assets": "",
"note_cannot_be_changed_later": "",
"note_unlimited_quota": "",
"notification_email_from_address": "",
"notification_email_from_address_description": "",
"notification_email_host_description": "",
@@ -614,7 +613,6 @@
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"note_unlimited_quota": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Kontoindstillinger",
"acknowledge": "Godkend",
"action": "Handling",
"action_common_update": "Opdater",
"actions": "Handlinger",
"active": "Aktive",
"activity": "Aktivitet",
@@ -13,6 +14,7 @@
"add_a_location": "Tilføj en placering",
"add_a_name": "Tilføj et navn",
"add_a_title": "Tilføj en titel",
"add_endpoint": "Tilføj endepunkt",
"add_exclusion_pattern": "Tilføj udelukkelsesmønster",
"add_import_path": "Tilføj importsti",
"add_location": "Tilføj placering",
@@ -22,6 +24,8 @@
"add_photos": "Tilføj billeder",
"add_to": "Tilføj til…",
"add_to_album": "Tilføj til album",
"add_to_album_bottom_sheet_added": "Tilføjet til {album}",
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
"add_to_shared_album": "Tilføj til delt album",
"add_url": "Tilføj URL",
"added_to_archive": "Tilføjet til arkiv",
@@ -66,8 +70,10 @@
"forcing_refresh_library_files": "Tvinger genopfriskning af alle biblioteksfiler",
"image_format": "Format",
"image_format_description": "WebP producerer mindre filer end JPEG, men er langsommere at komprimere.",
"image_fullsize_description": "Fuld størrelses billede uden metadata, brugt når zoomet ind",
"image_fullsize_enabled": "Aktiver fuld størrelses billede generering",
"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_embedded_preview_setting_description": "Brug indlejrede forhåndsvisninger i RAW fotos som input til billedbehandling og 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_description": "Mellemstørrelse billede med fjernet metadata, der bruges, når du ser en enkelt mediefil og til machine learning",
@@ -162,7 +168,6 @@
"no_pattern_added": "Intet mønster tilføjet",
"note_apply_storage_label_previous_assets": "Bemærk: For at anvende Lagringsmærkatet på tidligere uploadede mediefiler, kør",
"note_cannot_be_changed_later": "BEMÆRK: Dette kan ikke ændres senere!",
"note_unlimited_quota": "Bemærk: Indsæt 0 for uendelig kvote",
"notification_email_from_address": "Fra adressse",
"notification_email_from_address_description": "Afsenderemailadresse, for eksempel: \"Immich Billedserver <noreply@example.com>\"",
"notification_email_host_description": "Host af emailserver (fx smtp.immich.app)",
@@ -363,6 +368,17 @@
"admin_password": "Administratoradgangskode",
"administration": "Administration",
"advanced": "Avanceret",
"advanced_settings_enable_alternate_media_filter_subtitle": "Brug denne valgmulighed for at filtrere media under synkronisering baseret på alternative kriterier. Prøv kun denne hvis du har problemer med at appen ikke opdager alle albums.",
"advanced_settings_log_level_title": "Logniveau: {}",
"advanced_settings_prefer_remote_subtitle": "Nogle enheder tager meget lang tid om at indlæse miniaturebilleder af elementer på enheden. Aktiver denne indstilling for i stedetat indlæse elementer fra serveren.",
"advanced_settings_prefer_remote_title": "Foretræk elementer på serveren",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Spring verificering af SSL-certifikat over for serverens endelokation. Kræves for selvsignerede certifikater.",
"advanced_settings_self_signed_ssl_title": "Tillad selvsignerede certifikater",
"advanced_settings_tile_subtitle": "Avancerede brugerindstillinger",
"advanced_settings_troubleshooting_subtitle": "Slå ekstra funktioner for fejlsøgning til",
"advanced_settings_troubleshooting_title": "Fejlsøgning",
"age_months": "Alder {months, plural, one {# måned} other {# måneder}}",
"age_year_months": "Alder 1 år, {months, plural, one {# måned} other {# måneder}}",
"age_years": "{years, plural, other {Alder #}}",
@@ -371,6 +387,8 @@
"album_cover_updated": "Albumcover opdateret",
"album_delete_confirmation": "Er du sikker på at du vil slette albummet {album}?",
"album_delete_confirmation_description": "Hvis dette album er delt, vil andre brugere ikke længere kunne få adgang til det.",
"album_info_card_backup_album_excluded": "EKSKLUDERET",
"album_info_card_backup_album_included": "INKLUDERET",
"album_info_updated": "Albuminfo opdateret",
"album_leave": "Forlad albummet?",
"album_leave_confirmation": "Er du sikker på at du vil forlade {album}?",
@@ -379,10 +397,22 @@
"album_remove_user": "Fjern bruger?",
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
"album_share_no_users": "Det ser ud til at du har delt denne album med alle brugere, eller du har ikke nogen brugere til at dele med.",
"album_thumbnail_card_item": "1 genstand",
"album_thumbnail_card_items": "{} genstande",
"album_thumbnail_card_shared": ". Delt",
"album_thumbnail_shared_by": "Delt af {}",
"album_updated": "Album opdateret",
"album_updated_setting_description": "Modtag en emailnotifikation når et delt album får nye mediefiler",
"album_user_left": "Forlod {album}",
"album_user_removed": "Fjernede {user}",
"album_viewer_appbar_delete_confirm": "Er du sikker på, du vil slette dette album fra din bruger?",
"album_viewer_appbar_share_err_delete": "Fejlede sletning af album",
"album_viewer_appbar_share_err_leave": "Fejlede i at forlade album",
"album_viewer_appbar_share_err_remove": "Der er problemer med at fjerne elementer fra album",
"album_viewer_appbar_share_err_title": "Fejlede i at ændre albumtitel",
"album_viewer_appbar_share_leave": "Forlad album",
"album_viewer_appbar_share_to": "Del til",
"album_viewer_page_share_add_users": "Tilføj brugere",
"album_with_link_access": "Lad alle med linket se billeder og personer i dette album.",
"albums": "Albummer",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albummer}}",
@@ -400,42 +430,133 @@
"api_key_description": "Denne værdi vises kun én gang. Venligst kopiér den før du lukker vinduet.",
"api_key_empty": "Din API-nøgle-navn burde ikke være tom",
"api_keys": "API-nøgler",
"app_bar_signout_dialog_content": "Er du sikker på, du vil logge ud?",
"app_bar_signout_dialog_ok": "Ja",
"app_bar_signout_dialog_title": "Log ud",
"app_settings": "Appindstillinger",
"appears_in": "Optræder i",
"archive": "Arkiv",
"archive_or_unarchive_photo": "Arkivér eller dearkivér billede",
"archive_page_no_archived_assets": "Ingen arkiverede elementer blev fundet",
"archive_page_title": "Arkivér ({})",
"archive_size": "Arkiv størelse",
"archive_size_description": "Konfigurer arkivstørrelsen for downloads (i GiB)",
"archived": "Arkiveret",
"archived_count": "{count, plural, other {Arkiveret #}}",
"are_these_the_same_person": "Er disse den samme person?",
"are_you_sure_to_do_this": "Er du sikker på, at du vil gøre det her?",
"asset_action_delete_err_read_only": "Kan ikke slette kun læselige elementer. Springer over",
"asset_action_share_err_offline": "Kan ikke hente offline element(er). Springer over",
"asset_added_to_album": "Tilføjet til album",
"asset_adding_to_album": "Tilføjer til album…",
"asset_description_updated": "Mediefilsbeskrivelse er blevet opdateret",
"asset_filename_is_offline": "Mediefil {filename} er offline",
"asset_has_unassigned_faces": "Aktivet har ikke-tildelte ansigter",
"asset_hashing": "Hashing…",
"asset_list_group_by_sub_title": "Gruppér efter",
"asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout",
"asset_list_layout_settings_group_automatically": "Automatisk",
"asset_list_layout_settings_group_by": "Gruppér elementer pr. ",
"asset_list_layout_settings_group_by_month_day": "Måned + dag",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Indstillinger for billedgitterlayout",
"asset_list_settings_title": "Billedgitter",
"asset_offline": "Mediefil offline",
"asset_offline_description": "Denne eksterne mediefil kan ikke længere findes på drevet. Kontakt venligst din Immich-administrator for hjælp.",
"asset_restored_successfully": "Elementet blev gendannet succesfuldt",
"asset_skipped": "Sprunget over",
"asset_skipped_in_trash": "I skraldespand",
"asset_uploaded": "Uploadet",
"asset_uploading": "Uploader…",
"asset_viewer_settings_subtitle": "Administrer indstillinger for gallerifremviser",
"asset_viewer_settings_title": "Billedviser",
"assets": "elementer",
"assets_added_count": "Tilføjet {count, plural, one {# mediefil} other {# mediefiler}}",
"assets_added_to_album_count": "{count, plural, one {# mediefil} other {# mediefiler}} tilføjet til albummet",
"assets_added_to_name_count": "Tilføjet {count, plural, one {# mediefil} other {# mediefiler}} til {hasName, select, true {<b>{name}</b>} other {nyt album}}",
"assets_count": "{count, plural, one {# mediefil} other {# mediefiler}}",
"assets_deleted_permanently": "{} element(er) blev fjernet permanent",
"assets_deleted_permanently_from_server": "{} element(er) blev fjernet permanent fra serveren",
"assets_moved_to_trash_count": "Flyttede {count, plural, one {# mediefil} other {# mediefiler}} til papirkurven",
"assets_permanently_deleted_count": "{count, plural, one {# mediefil} other {# mediefiler}} slettet permanent",
"assets_removed_count": "Fjernede {count, plural, one {# mediefil} other {# mediefiler}}",
"assets_removed_permanently_from_device": "{} element(er) blev fjernet permanent fra din enhed",
"assets_restore_confirmation": "Er du sikker på, at du vil gendanne alle dine mediafiler i papirkurven? Du kan ikke fortryde denne handling! Bemærk, at offline mediefiler ikke kan gendannes på denne måde.",
"assets_restored_count": "{count, plural, one {# mediefil} other {# mediefiler}} gendannet",
"assets_restored_successfully": "{} element(er) blev gendannet succesfuldt",
"assets_trashed": "{} element(er) blev smidt i papirkurven",
"assets_trashed_count": "{count, plural, one {# mediefil} other {# mediefiler}} smidt i papirkurven",
"assets_trashed_from_server": "{} element(er) blev smidt i serverens papirkurv",
"assets_were_part_of_album_count": "mediefil{count, plural, one {mediefil} other {mediefiler}} er allerede en del af albummet",
"authorized_devices": "Tilladte enheder",
"automatic_endpoint_switching_subtitle": "Forbind lokalt over det anviste WiFi, når det er tilgængeligt og brug alternative forbindelser andre stæder",
"automatic_endpoint_switching_title": "Automatisk skift af URL",
"back": "Tilbage",
"back_close_deselect": "Tilbage, luk eller fravælg",
"background_location_permission": "Tilladelse til baggrundsplacering",
"background_location_permission_content": "For at skifte netværk, når appen kører i baggrunden, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
"backup_album_selection_page_albums_device": "Albummer på enhed ({})",
"backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere",
"backup_album_selection_page_assets_scatter": "Elementer kan være spredt på tværs af flere albummer. Albummer kan således inkluderes eller udelukkes under sikkerhedskopieringsprocessen.",
"backup_album_selection_page_select_albums": "Vælg albummer",
"backup_album_selection_page_selection_info": "Oplysninger om valgte",
"backup_album_selection_page_total_assets": "Samlede unikke elementer",
"backup_all": "Alt",
"backup_background_service_backup_failed_message": "Sikkerhedskopiering af elementer fejlede. Forsøger igen...",
"backup_background_service_connection_failed_message": "Forbindelsen til serveren blev tabt. Forsøger igen...",
"backup_background_service_current_upload_notification": "Uploader {}",
"backup_background_service_default_notification": "Søger efter nye elementer...",
"backup_background_service_error_title": "Fejl med sikkerhedskopiering",
"backup_background_service_in_progress_notification": "Tager sikkerhedskopi af dine elementer...",
"backup_background_service_upload_failure_notification": "Fejlede med uploade af {}",
"backup_controller_page_albums": "Sikkerhedskopiér albummer",
"backup_controller_page_background_app_refresh_disabled_content": "Slå baggrundsopdatering af applikationen til i Indstillinger > Generelt > Baggrundsopdatering af applikationer, for at bruge sikkerhedskopi i baggrunden.",
"backup_controller_page_background_app_refresh_disabled_title": "Baggrundsopdatering af app er slået fra",
"backup_controller_page_background_app_refresh_enable_button_text": "Gå til indstillinger",
"backup_controller_page_background_battery_info_link": "Vis mig hvordan",
"backup_controller_page_background_battery_info_message": "For den bedste oplevelse med sikkerhedskopiering i baggrunden, bør du slå batterioptimering, der begrænder baggrundsaktivitet, fra.\n\nSiden dette er afhængigt af enheden, bør du undersøge denne information leveret af din enheds producent.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterioptimering",
"backup_controller_page_background_charging": "Kun under opladning",
"backup_controller_page_background_configure_error": "Fejlede konfigureringen af sikkerhedskopiering i baggrunden",
"backup_controller_page_background_delay": "Udskyd sikkerhedskopi af nye elementer: {}",
"backup_controller_page_background_description": "Slå sikkerhedskopiering i baggrunden til, for automatisk at tage sikkerhedskopi af nye elementer, uden at skulle åbne appen",
"backup_controller_page_background_is_off": "Automatisk sikkerhedskopiering i baggrunden er slået fra",
"backup_controller_page_background_is_on": "Automatisk sikkerhedskopiering i baggrunden er slået til",
"backup_controller_page_background_turn_off": "Slå sikkerhedskopiering i baggrunden fra",
"backup_controller_page_background_turn_on": "Slå sikkerhedskopiering i baggrunden til",
"backup_controller_page_background_wifi": "Kun med WiFi",
"backup_controller_page_backup": "Sikkerhedskopier",
"backup_controller_page_backup_selected": "Valgte: ",
"backup_controller_page_backup_sub": "Sikkerhedskopierede billeder og videoer",
"backup_controller_page_created": "Oprettet den: {}",
"backup_controller_page_desc_backup": "Slå sikkerhedskopiering til automatisk at uploade nye elementer til serveren.",
"backup_controller_page_excluded": "Ekskluderet: ",
"backup_controller_page_failed": "Felet ({})",
"backup_controller_page_filename": "Filnavn: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Sikkerhedskopieringsinformation",
"backup_controller_page_none_selected": "Ingen valgte",
"backup_controller_page_remainder": "Tilbageværende",
"backup_controller_page_remainder_sub": "Tilbageværende billeder og albummer, at sikkerhedskopiere, fra valgte",
"backup_controller_page_server_storage": "Serverlager",
"backup_controller_page_start_backup": "Start sikkerhedskopiering",
"backup_controller_page_status_off": "Sikkerhedskopiering er slået fra",
"backup_controller_page_status_on": "Sikkerhedskopiering er slået til",
"backup_controller_page_storage_format": "{} af {} brugt",
"backup_controller_page_to_backup": "Albummer at sikkerhedskopiere",
"backup_controller_page_total_sub": "Alle unikke billeder og videoer fra valgte albummer",
"backup_controller_page_turn_off": "Slå sikkerhedskopiering fra",
"backup_controller_page_turn_on": "Slå sikkerhedskopiering til",
"backup_controller_page_uploading_file_info": "Uploader filinformation",
"backup_err_only_album": "Kan ikke slette det eneste album",
"backup_info_card_assets": "elementer",
"backup_manual_cancelled": "Annulleret",
"backup_manual_in_progress": "Upload er allerede undervejs. Prøv igen efter noget tid",
"backup_manual_success": "Succes",
"backup_manual_title": "Uploadstatus",
"backup_options_page_title": "Backupindstillinger",
"backup_setting_subtitle": "Administrer indstillnger for upload i forgrund og baggrund",
"backward": "Baglæns",
"birthdate_saved": "Fødselsdatoen blev gemt",
"birthdate_set_description": "Fødselsdato bruges til at beregne alderen på denne person på tidspunktet for et billede.",
@@ -447,24 +568,52 @@
"bulk_keep_duplicates_confirmation": "Er du sikker på, at du vil beholde {count, plural, one {# duplicate asset} other {# duplicate assets}}? Dette vil løse alle dubletgrupper uden at slette noget.",
"bulk_trash_duplicates_confirmation": "Er du sikker på, at du vil masseslette {count, plural, one {# duplikeret objekt} other {# duplikerede objekter}}? Dette vil beholde det største objekt i hver gruppe og slette alle andre dubletter.",
"buy": "Køb Immich",
"cache_settings_album_thumbnails": "Biblioteksminiaturebilleder ({} elementer)",
"cache_settings_clear_cache_button": "Fjern cache",
"cache_settings_clear_cache_button_title": "Fjern appens cache. Dette vil i stor grad påvirke appens ydeevne indtil cachen er genopbygget.",
"cache_settings_duplicated_assets_clear_button": "RYD",
"cache_settings_duplicated_assets_subtitle": "Billeder og videoer der er sortlistet af appen",
"cache_settings_duplicated_assets_title": "Dublikerede elementer ({})",
"cache_settings_image_cache_size": "Størrelse af billedecache ({} elementer)",
"cache_settings_statistics_album": "Biblioteksminiaturer",
"cache_settings_statistics_assets": "{} elementer ({})",
"cache_settings_statistics_full": "Fulde billeder",
"cache_settings_statistics_shared": "Miniaturebilleder til delte albummer",
"cache_settings_statistics_thumbnail": "Miniaturebilleder",
"cache_settings_statistics_title": "Cacheforbrug",
"cache_settings_subtitle": "Håndter cache-adfærden for Immich-appen.",
"cache_settings_thumbnail_size": "Størrelse af miniaturebillede cache ({} elementer)",
"cache_settings_tile_subtitle": "Kontroller den lokale lagerplads",
"cache_settings_tile_title": "Lokal lagerplads",
"cache_settings_title": "Cache-indstillinger",
"camera": "Kamera",
"camera_brand": "Kameramærke",
"camera_model": "Kameramodel",
"cancel": "Annullér",
"cancel_search": "Annullér søgning",
"canceled": "Canceled",
"cannot_merge_people": "Kan ikke sammenflette personer",
"cannot_undo_this_action": "Du kan ikke fortryde denne handling!",
"cannot_update_the_description": "Kan ikke opdatere beskrivelsen",
"change_date": "Ændr dato",
"change_display_order": "Ændrer visningsrækkefølge",
"change_expiration_time": "Ændr udløbstidspunkt",
"change_location": "Ændr sted",
"change_name": "Ændr navn",
"change_name_successfully": "Navn er ændret",
"change_password": "Skift kodeord",
"change_password_description": "Dette er enten første gang du tilmelder dig, eller en ændring af kodeordet blev bestilt. Indtast dit nye kodeord herunder.",
"change_password_form_confirm_password": "Bekræft kodeord",
"change_password_form_description": "Hej {name},\n\nDette er enten første gang du logger ind eller også er der lavet en anmodning om at ændre dit kodeord. Indtast venligst et nyt kodeord nedenfor.",
"change_password_form_new_password": "Nyt kodeord",
"change_password_form_password_mismatch": "Kodeord er ikke ens",
"change_password_form_reenter_new_password": "Gentag nyt kodeord",
"change_your_password": "Skift dit kodeord",
"changed_visibility_successfully": "Synlighed blev ændret",
"check_all": "Markér alle",
"check_corrupt_asset_backup": "Tjek for korrupte sikkerhedskopier af elementer",
"check_corrupt_asset_backup_button": "Foretag kontrol",
"check_corrupt_asset_backup_description": "Kør kun denne kontrol via Wi-Fi, og når alle elementer er blevet sikkerhedskopieret. Proceduren kan tage et par minutter.",
"check_logs": "Tjek logfiler",
"choose_matching_people_to_merge": "Vælg matchende personer til sammenfletning",
"city": "By",
@@ -473,6 +622,14 @@
"clear_all_recent_searches": "Ryd alle seneste søgninger",
"clear_message": "Ryd bedsked",
"clear_value": "Ryd værdi",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "Med uret",
"close": "Luk",
"collapse": "Klap sammen",
@@ -483,6 +640,9 @@
"comment_options": "Kommentarindstillinger",
"comments_and_likes": "Kommentarer og likes",
"comments_are_disabled": "Kommentarer er slået fra",
"common_create_new_album": "Opret et nyt album",
"common_server_error": "Tjek din internetforbindelse, sørg for at serveren er tilgængelig og at app- og serversioner er kompatible.",
"completed": "Completed",
"confirm": "Bekræft",
"confirm_admin_password": "Bekræft administratoradgangskode",
"confirm_delete_face": "Er du sikker på, du vil slette {name}s ansigt fra denne mediefil?",
@@ -492,6 +652,15 @@
"contain": "Inddæm",
"context": "Kontekst",
"continue": "Fortsæt",
"control_bottom_app_bar_album_info_shared": "{} genstande • Delt",
"control_bottom_app_bar_create_new_album": "Opret nyt album",
"control_bottom_app_bar_delete_from_immich": "Slet fra Immich",
"control_bottom_app_bar_delete_from_local": "Slet fra enhed",
"control_bottom_app_bar_edit_location": "Rediger placering",
"control_bottom_app_bar_edit_time": "Rediger tid og dato",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Del til",
"control_bottom_app_bar_trash_from_immich": "Flyt til papirkurv",
"copied_image_to_clipboard": "Kopierede billede til clipboard.",
"copied_to_clipboard": "Kopieret til udklipsholder!",
"copy_error": "Kopifejl",
@@ -506,24 +675,34 @@
"covers": "Omslag",
"create": "Opret",
"create_album": "Opret album",
"create_album_page_untitled": "Uden titel",
"create_library": "Opret bibliotek",
"create_link": "Opret link",
"create_link_to_share": "Opret link for at dele",
"create_link_to_share_description": "Tillad alle med linket at se de(t) valgte billede(r)",
"create_new": "OPRET NY",
"create_new_person": "Opret ny person",
"create_new_person_hint": "Tildel valgte aktiver til en ny person",
"create_new_user": "Opret ny bruger",
"create_shared_album_page_share_add_assets": "TILFØJ ELEMENT",
"create_shared_album_page_share_select_photos": "Vælg billeder",
"create_tag": "Opret tag",
"create_tag_description": "Opret et nyt tag. For indlejrede tags skal du indtaste den fulde sti til tagget inklusive skråstreger.",
"create_user": "Opret bruger",
"created": "Oprettet",
"crop": "Beskær",
"curated_object_page_title": "Ting",
"current_device": "Nuværende enhed",
"current_server_address": "Nuværende serveraddresse",
"custom_locale": "Brugerdefineret lokale",
"custom_locale_description": "Formatér datoer og tal baseret på sproget og regionen",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"dark": "Mørk",
"date_after": "Dato efter",
"date_and_time": "Dato og klokkeslæt",
"date_before": "Dato før",
"date_format": "E d. LLL y • hh:mm",
"date_of_birth_saved": "Fødselsdatoen blev gemt korrekt",
"date_range": "Datointerval",
"day": "Dag",
@@ -537,19 +716,30 @@
"delete": "Slet",
"delete_album": "Slet album",
"delete_api_key_prompt": "Er du sikker på, at du vil slette denne API-nøgle?",
"delete_dialog_alert": "Disse elementer vil blive slettet permanent fra Immich og din enhed",
"delete_dialog_alert_local": "Disse elementer slettes permanent fra din enhed, men vil stadig være tilgængelige på serveren",
"delete_dialog_alert_local_non_backed_up": "Nogle af elementerne har ingen backup på serveren og vil blive slettet permanent fra din enhed",
"delete_dialog_alert_remote": "Disse elementer slettes permanent fra serveren",
"delete_dialog_ok_force": "Slet alligevel",
"delete_dialog_title": "Slet permanent",
"delete_duplicates_confirmation": "Er du sikker på, at du vil slette disse dubletter permanent?",
"delete_face": "Slet ansigt",
"delete_key": "Slet nøgle",
"delete_library": "Slet bibliotek",
"delete_link": "Slet link",
"delete_local_dialog_ok_backed_up_only": "Slet kun backup",
"delete_local_dialog_ok_force": "Slet alligevel",
"delete_others": "Slet andre",
"delete_shared_link": "Slet delt link",
"delete_shared_link_dialog_title": "Slet delt link",
"delete_tag": "Slet tag",
"delete_tag_confirmation_prompt": "Er du sikker på, at du vil slette {tagName}-tagget?",
"delete_user": "Slet bruger",
"deleted_shared_link": "Slettede delt link",
"deletes_missing_assets": "Sletter aktiver, der mangler fra disken",
"description": "Beskrivelse",
"description_input_hint_text": "Tilføj en beskrivelse...",
"description_input_submit_error": "Fejl med at opdatere beskrivelsen. Tjek loggen for flere detaljer",
"details": "DETALJER",
"direction": "Retning",
"disabled": "Deaktiveret",
@@ -566,12 +756,26 @@
"documentation": "Dokumentation",
"done": "Færdig",
"download": "Hent",
"download_canceled": "Download annulleret",
"download_complete": "Download fuldført",
"download_enqueue": "Donload sat i kø",
"download_error": "Fejl med download",
"download_failed": "Download mislykkes",
"download_filename": "fil: {}",
"download_finished": "Download afsluttet",
"download_include_embedded_motion_videos": "Indlejrede videoer",
"download_include_embedded_motion_videos_description": "Inkluder videoer indlejret i levende billeder som en separat fil",
"download_notfound": "Download ikke fundet",
"download_paused": "Download pauset",
"download_settings": "Download",
"download_settings_description": "Administrer indstillinger relateret til mediefil-downloads",
"download_started": "Download startet",
"download_sucess": "Download færdig",
"download_sucess_android": "Mediet er blevet downloadet til DCIM/Immich",
"download_waiting_to_retry": "Afventer at prøve igen",
"downloading": "Downloader",
"downloading_asset_filename": "Downloader mediefil {filename}",
"downloading_media": "Download medier",
"drop_files_to_upload": "Slip filer hvor som helst for at uploade dem",
"duplicates": "Duplikater",
"duplicates_description": "Løs hver gruppe ved at angive, hvilke, hvis nogen, er dubletter",
@@ -588,6 +792,7 @@
"edit_key": "Redigér nøgle",
"edit_link": "Rediger link",
"edit_location": "Rediger placering",
"edit_location_dialog_title": "Placering",
"edit_name": "Rediger navn",
"edit_people": "Redigér personer",
"edit_tag": "Rediger tag",
@@ -600,14 +805,19 @@
"editor_crop_tool_h2_aspect_ratios": "Størrelsesforhold",
"editor_crop_tool_h2_rotation": "Rotation",
"email": "E-mail",
"empty_folder": "This folder is empty",
"empty_trash": "Tøm papirkurv",
"empty_trash_confirmation": "Er du sikker på, at du vil tømme papirkurven? Dette vil fjerne alle objekter i papirkurven permanent fra Immich.\nDu kan ikke fortryde denne handling!",
"enable": "Aktivér",
"enabled": "Aktiveret",
"end_date": "Slutdato",
"enqueued": "Enqueued",
"enter_wifi_name": "Indtast WiFi-navn",
"error": "Fejl",
"error_change_sort_album": "Ændring af sorteringsrækkefølgen mislykkedes",
"error_delete_face": "Fejl ved sletning af ansigt fra mediefil",
"error_loading_image": "Fejl ved indlæsning af billede",
"error_saving_image": "Fejl: {}",
"error_title": "Fejl - Noget gik galt",
"errors": {
"cannot_navigate_next_asset": "Kan ikke navigere til næste mediefil",
@@ -736,8 +946,21 @@
"unable_to_upload_file": "Filen kunne ikke uploades"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Tilføj beskrivelse...",
"exif_bottom_sheet_details": "DETALJER",
"exif_bottom_sheet_location": "LOKATION",
"exif_bottom_sheet_people": "PERSONER",
"exif_bottom_sheet_person_add_person": "Tilføj navn",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Afslut slideshow",
"expand_all": "Udvid alle",
"experimental_settings_new_asset_list_subtitle": "Under udarbejdelse",
"experimental_settings_new_asset_list_title": "Aktiver eksperimentelt fotogitter",
"experimental_settings_subtitle": "Brug på eget ansvar!",
"experimental_settings_title": "Eksperimentelle",
"expire_after": "Udløb efter",
"expired": "Udløbet",
"expires_date": "Udløber {date}",
@@ -748,11 +971,16 @@
"extension": "Udvidelse",
"external": "Ekstern",
"external_libraries": "Eksterne biblioteker",
"external_network": "Eksternt netværk",
"external_network_sheet_info": "Nå der er ikke er forbundet til det foretrukne WiFi-netværk, vil appen forbinde til den første URL, den kan forbinde til, på listen nedenfor. Startende med i toppen",
"face_unassigned": "Ikke tildelt",
"failed": "Failed",
"failed_to_load_assets": "Kunne ikke indlæse mediefiler",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Favorit",
"favorite_or_unfavorite_photo": "Tilføj eller fjern fra yndlingsbilleder",
"favorites": "Favoritter",
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
"feature_photo_updated": "Forsidebillede uploadet",
"features": "Funktioner",
"features_setting_description": "Administrer app-funktioner",
@@ -760,25 +988,38 @@
"file_name_or_extension": "Filnavn eller filtype",
"filename": "Filnavn",
"filetype": "Filtype",
"filter": "Filter",
"filter_people": "Filtrér personer",
"find_them_fast": "Find dem hurtigt med søgning via navn",
"fix_incorrect_match": "Fix forkert match",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Mapper",
"folders_feature_description": "Gennemse mappevisningen efter fotos og videoer på filsystemet",
"forward": "Fremad",
"general": "Generel",
"get_help": "Få hjælp",
"get_wifiname_error": "Kunne ikke hente Wi-Fi-navn. Sørg for, at du har givet de nødvendige tilladelser og er forbundet til et Wi-Fi-netværk",
"getting_started": "Kom godt i gang",
"go_back": "Gå tilbage",
"go_to_folder": "Gå til mappe",
"go_to_search": "Gå til søgning",
"grant_permission": "Giv tilladelse",
"group_albums_by": "Gruppér albummer efter...",
"group_country": "Gruppér efter land",
"group_no": "Ingen gruppering",
"group_owner": "Grupper efter ejer",
"group_places_by": "Gruppér steder efter...",
"group_year": "Grupper efter år",
"haptic_feedback_switch": "Slå haptisk feedback til",
"haptic_feedback_title": "Haptisk feedback",
"has_quota": "Har kvote",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Hej {name} ({email})",
"hide_all_people": "Skjul alle personer",
"hide_gallery": "Skjul galleri",
@@ -786,8 +1027,24 @@
"hide_password": "Skjul adgangskode",
"hide_person": "Skjul person",
"hide_unnamed_people": "Skjul unavngivne personer",
"home_page_add_to_album_conflicts": "Tilføjede {added} elementer til album {album}. {failed} elementer er allerede i albummet.",
"home_page_add_to_album_err_local": "Kan endnu ikke tilføje lokale elementer til album. Springer over..",
"home_page_add_to_album_success": "Tilføjede {added} elementer til album {album}.",
"home_page_album_err_partner": "Kan endnu ikke tilføje partners elementer til album. Springer over",
"home_page_archive_err_local": "Kan ikke arkivere lokalt element endnu.. Springer over",
"home_page_archive_err_partner": "Kan endnu ikke arkivere partners elementer. Springer over",
"home_page_building_timeline": "Bygger tidslinjen",
"home_page_delete_err_partner": "Kan endnu ikke slette partners elementer. Springer over",
"home_page_delete_remote_err_local": "Lokale elementer i fjernsletningssektion. Springer over",
"home_page_favorite_err_local": "Kan endnu ikke gøre lokale elementer til favoritter. Springer over..",
"home_page_favorite_err_partner": "Kan endnu ikke tilføje partners elementer som favoritter. Springer over",
"home_page_first_time_notice": "Hvis det er din første gang i appen, bedes du vælge en sikkerhedskopi af albummer så tidlinjen kan blive fyldt med billeder og videoer fra albummerne.",
"home_page_share_err_local": "Kan ikke dele lokale elementer via link, springer over",
"home_page_upload_err_limit": "Det er kun muligt at lave sikkerhedskopi af 30 elementer ad gangen. Springer over",
"host": "Host",
"hour": "Time",
"ignore_icloud_photos": "Ignorer iCloud-billeder",
"ignore_icloud_photos_description": "Billeder der er gemt på iCloud vil ikke blive uploadet til Immich-serveren",
"image": "Billede",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} taget den {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} taget med {person1} den {date}",
@@ -799,6 +1056,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1} og {person2} den {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1}, {person2}, og {person3} den {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} taget i {city}, {country} med {person1}, {person2}, og {additionalCount, number} andre den {date}",
"image_saved_successfully": "Billede gemt",
"image_viewer_page_state_provider_download_started": "Download startet",
"image_viewer_page_state_provider_download_success": "Download succesfuld",
"image_viewer_page_state_provider_share_error": "Delingsfejl",
"immich_logo": "Immich logo",
"immich_web_interface": "Immich webinterface",
"import_from_json": "Importér fra JSON",
@@ -817,6 +1078,8 @@
"night_at_midnight": "Hver nat ved midnat",
"night_at_twoam": "Hver nat kl. 2"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Inviter personer",
"invite_to_album": "Inviter til album",
"items_count": "{count, plural, one {# element} other {# elementer}}",
@@ -837,6 +1100,12 @@
"level": "Niveau",
"library": "Bibliotek",
"library_options": "Biblioteksindstillinger",
"library_page_device_albums": "Albummer på enhed",
"library_page_new_album": "Nyt album",
"library_page_sort_asset_count": "Antal af elementer\n",
"library_page_sort_created": "Senest oprettet",
"library_page_sort_last_modified": "Sidst redigeret",
"library_page_sort_title": "Albumtitel",
"light": "Lys",
"like_deleted": "Ligesom slettet",
"link_motion_video": "Link bevægelsesvideo",
@@ -846,12 +1115,42 @@
"list": "Liste",
"loading": "Indlæser",
"loading_search_results_failed": "Indlæsning af søgeresultater fejlede",
"local_network": "Lokalt netværk",
"local_network_sheet_info": "Appen vil oprette forbindelse til serveren via denne URL, når du bruger det angivne WiFi-netværk",
"location_permission": "Tilladelse til placering",
"location_permission_content": "For automatisk at skifte netværk, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
"location_picker_choose_on_map": "Vælg på kort",
"location_picker_latitude_error": "Indtast en gyldig breddegrad",
"location_picker_latitude_hint": "Indtast din breddegrad her",
"location_picker_longitude_error": "Indtast en gyldig længdegrad",
"location_picker_longitude_hint": "Indtast din længdegrad her",
"log_out": "Log ud",
"log_out_all_devices": "Log ud af alle enheder",
"logged_out_all_devices": "Logget ud af alle enheder",
"logged_out_device": "Logget ud af enhed",
"login": "Log ind",
"login_disabled": "Login er blevet deaktiveret",
"login_form_api_exception": "API-undtagelse. Tjek serverens URL og prøv igen. ",
"login_form_back_button_text": "Tilbage",
"login_form_email_hint": "din-e-mail@e-mail.com",
"login_form_endpoint_hint": "http://din-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Angiv venligst http:// eller https://",
"login_form_err_invalid_email": "Ugyldig e-mail",
"login_form_err_invalid_url": "Ugyldig webadresse",
"login_form_err_leading_whitespace": "Mellemrum før",
"login_form_err_trailing_whitespace": "Mellemrum efter",
"login_form_failed_get_oauth_server_config": "Fejl med at logge på med OAuth. Tjek serveres webadresse",
"login_form_failed_get_oauth_server_disable": "OAuth er ikke tilgængelig på denne server",
"login_form_failed_login": "Der opstod en vejl ved at logge ind. Tjek server webadressen, e-mailen og kodeordet",
"login_form_handshake_exception": "Der opstod en fejl med at oprette forbindelse til serveren. Aktiver selvsignerede certifikater i indstillingerne, hvis du bruger et selv signeret certifikat.",
"login_form_password_hint": "kodeord",
"login_form_save_login": "Forbliv logget ind",
"login_form_server_empty": "Indtast server-URL.",
"login_form_server_error": "Kunne ikke forbinde til serveren.",
"login_has_been_disabled": "Login er blevet deaktiveret.",
"login_password_changed_error": "Der opstod en fejl i opdateringen af dit kodeord",
"login_password_changed_success": "Kodeordet blev opdateret",
"logout_all_device_confirmation": "Er du sikker på, at du vil logge ud af alle enheder?",
"logout_this_device_confirmation": "Er du sikker på, at du vil logge denne enhed ud?",
"longitude": "Længde",
@@ -868,13 +1167,40 @@
"manage_your_devices": "Administrér dine enheder der er logget ind",
"manage_your_oauth_connection": "Administrér din OAuth-tilslutning",
"map": "Kort",
"map_assets_in_bound": "{} billede",
"map_assets_in_bounds": "{} billeder",
"map_cannot_get_user_location": "Kan ikke finde brugerens placering",
"map_location_dialog_yes": "Ja",
"map_location_picker_page_use_location": "Brug denne placering",
"map_location_service_disabled_content": "Placeringstjenesten skal aktiveres for at vise elementer fra din nuværende placering. Vil du aktivere den nu?",
"map_location_service_disabled_title": "Placeringstjenesten er deaktiveret",
"map_marker_for_images": "Kortmarkør for billeder taget i {city}, {country}",
"map_marker_with_image": "Kortmarkør med billede",
"map_no_assets_in_bounds": "Der er ingen billeder i dette område",
"map_no_location_permission_content": "Der kræves tilladelse til placeringen for at vise elementer fra din nuværende placering. Vil du give tilladelse?",
"map_no_location_permission_title": "Placeringstilladelse blev afvist",
"map_settings": "Kortindstillinger",
"map_settings_dark_mode": "Mørk tilstand",
"map_settings_date_range_option_day": "Sidste 24 timer",
"map_settings_date_range_option_days": "Sidste {} dage",
"map_settings_date_range_option_year": "Sidste år",
"map_settings_date_range_option_years": "Sidste {} år",
"map_settings_dialog_title": "Kortindstillinger",
"map_settings_include_show_archived": "Inkluder arkiveret",
"map_settings_include_show_partners": "Inkluder partnere",
"map_settings_only_show_favorites": "Vis kun favoritter",
"map_settings_theme_settings": "Korttema",
"map_zoom_to_see_photos": "Zoom ud for at vise billeder",
"matches": "Parringer",
"media_type": "Medietype",
"memories": "Minder",
"memories_all_caught_up": "Ajour",
"memories_check_back_tomorrow": "Kom tilbage i morgen for at se nye minder",
"memories_setting_description": "Administrér hvad du ser i dine minder",
"memories_start_over": "Start forfra",
"memories_swipe_to_close": "Stryg op for at lukke",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Minde",
"memory_lane_title": "Minder {title}",
"menu": "Menu",
@@ -889,12 +1215,17 @@
"missing": "Mangler",
"model": "Model",
"month": "Måned",
"monthly_title_text_date_format": "MMMM y",
"more": "Mere",
"moved_to_trash": "Flyttet til skraldespand",
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke redigere datoen på kun læselige elementer. Springer over",
"multiselect_grid_edit_gps_err_read_only": "Kan ikke redigere lokation af kun læselige elementer. Springer over",
"mute_memories": "Dæmp minder",
"my_albums": "Mine albummer",
"name": "Navn",
"name_or_nickname": "Navn eller kælenavn",
"networking_settings": "Netværk",
"networking_subtitle": "Administrer serverens endepunktindstillinger",
"never": "aldrig",
"new_album": "Nyt album",
"new_api_key": "Ny API-nøgle",
@@ -911,6 +1242,7 @@
"no_albums_yet": "Det ser ud til, at du ikke har nogen album endnu.",
"no_archived_assets_message": "Arkivér billeder og videoer for at gemme dem væk fra din Billede oversigt",
"no_assets_message": "KLIK FOR AT UPLOADE DIT FØRSTE BILLEDE",
"no_assets_to_show": "Ingen elementer at vise",
"no_duplicates_found": "Ingen duplikater fundet.",
"no_exif_info_available": "Ingen tilgængelig exif information",
"no_explore_results_message": "Upload flere billeder for at udforske din samling.",
@@ -922,9 +1254,13 @@
"no_results_description": "Prøv et synonym eller et mere generelt søgeord",
"no_shared_albums_message": "Opret et album for at dele billeder og videoer med personer i dit netværk",
"not_in_any_album": "Ikke i noget album",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Bemærk: For at anvende Lagringsmærkat på tidligere uploadede medier, kør",
"note_unlimited_quota": "Bemærk: Indsæt 0 for ubegrænset kvote",
"notes": "Noter",
"notification_permission_dialog_content": "Gå til indstillinger for at slå notifikationer til.",
"notification_permission_list_tile_content": "Tillad at bruge notifikationer.",
"notification_permission_list_tile_enable_button": "Slå notifikationer til",
"notification_permission_list_tile_title": "Notifikationstilladelser",
"notification_toggle_setting_description": "Aktivér emailnotifikationer",
"notifications": "Notifikationer",
"notifications_setting_description": "Administrér notifikationer",
@@ -935,6 +1271,7 @@
"offline_paths_description": "Disse resultater kan være på grund af manuel sletning af filer, som ikke er en del af et eksternt bibliotek.",
"ok": "Ok",
"oldest_first": "Ældste først",
"on_this_device": "På denne enhed",
"onboarding": "Introduktion",
"onboarding_privacy_description": "Følgende (valgfrie) funktioner er afhængige af eksterne tjenester, og kan til enhver tid deaktiveres i administrationsindstillingerne.",
"onboarding_theme_description": "Vælg et farvetema til din instans. Du kan ændre dette senere i dine indstillinger.",
@@ -958,6 +1295,14 @@
"partner_can_access": "{partner} kan tilgå",
"partner_can_access_assets": "Alle dine billeder og videoer, bortset fra dem i Arkivet og Slettet",
"partner_can_access_location": "Stedet, hvor dine billeder blev taget",
"partner_list_user_photos": "{user}s billeder",
"partner_list_view_all": "Se alle",
"partner_page_empty_message": "Dine billeder er endnu ikke delt med en partner.",
"partner_page_no_more_users": "Der er ikke flere brugere at tilføje",
"partner_page_partner_add_failed": "Kunne ikke tilføje en partner",
"partner_page_select_partner": "Vælg partner",
"partner_page_shared_to_title": "Delt til",
"partner_page_stop_sharing_content": "{} vil ikke længere have adgang til dine billeder.",
"partner_sharing": "Partnerdeling",
"partners": "Partnere",
"password": "Kodeord",
@@ -986,6 +1331,14 @@
"permanently_delete_assets_prompt": "Er du sikker på, at du permanent vil slette {count, plural, one {dette aktiv?} other {disse <b>#</b> aktiver?}} Dette vil også fjerne {count, plural, one {det fra dets} other {dem fra deres}} album(er).",
"permanently_deleted_asset": "Permanent slettet medie",
"permanently_deleted_assets_count": "{count, plural, one {# aktiv} other {# aktiver}} permanent slettet",
"permission_onboarding_back": "Tilbage",
"permission_onboarding_continue_anyway": "Fortsæt alligevel",
"permission_onboarding_get_started": "Kom i gang",
"permission_onboarding_go_to_settings": "Gå til indstillinger",
"permission_onboarding_permission_denied": "Tilladelse afvist. For at bruge Immich, skal der gives tilladelse til at se billeder og videoer i indstillinger.",
"permission_onboarding_permission_granted": "Tilladelse givet! Du er nu klar.",
"permission_onboarding_permission_limited": "Tilladelse begrænset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.",
"permission_onboarding_request": "Immich kræver tilliadelse til at se dine billeder og videoer.",
"person": "Person",
"person_birthdate": "Født den {date}",
"person_hidden": "{name}{hidden, select, true { (skjult)} other {}}",
@@ -1003,6 +1356,8 @@
"play_motion_photo": "Afspil bevægelsesbillede",
"play_or_pause_video": "Afspil eller pause video",
"port": "Port",
"preferences_settings_subtitle": "Administrer app-præferencer",
"preferences_settings_title": "Præferencer",
"preset": "Forudindstilling",
"preview": "Forhåndsvisning",
"previous": "Forrige",
@@ -1010,6 +1365,13 @@
"previous_or_next_photo": "Forrige eller næste billede",
"primary": "Primære",
"privacy": "Privatliv",
"profile_drawer_app_logs": "Log",
"profile_drawer_client_out_of_date_major": "Mobilapp er forældet. Opdater venligst til den nyeste større version",
"profile_drawer_client_out_of_date_minor": "Mobilapp er forældet. Opdater venligst til den nyeste mindre version",
"profile_drawer_client_server_up_to_date": "Klient og server er ajour",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server er forældet. Opdater venligst til den nyeste større version",
"profile_drawer_server_out_of_date_minor": "Server er forældet. Opdater venligst til den nyeste mindre version",
"profile_image_of_user": "Profilbillede af {user}",
"profile_picture_set": "Profilbillede indstillet.",
"public_album": "Offentligt album",
@@ -1059,6 +1421,8 @@
"recent": "For nylig",
"recent-albums": "Seneste albums",
"recent_searches": "Seneste søgninger",
"recently_added": "Senest tilføjet",
"recently_added_page_title": "Nyligt tilføjet",
"refresh": "Opdatér",
"refresh_encoded_videos": "Opdater kodede videoer",
"refresh_faces": "Opdater ansigter",
@@ -1115,10 +1479,12 @@
"role_editor": "Redaktør",
"role_viewer": "Seer",
"save": "Gem",
"save_to_gallery": "Gem til galleri",
"saved_api_key": "Gemt API-nøgle",
"saved_profile": "Gemte profil",
"saved_settings": "Gemte indstillinger",
"say_something": "Skriv noget",
"scaffold_body_error_occurred": "Der opstod en fejl",
"scan_all_libraries": "Skan alle biblioteker",
"scan_library": "Skan",
"scan_settings": "Skanningsindstillinger",
@@ -1134,16 +1500,45 @@
"search_camera_model": "Søg efter kameramodel...",
"search_city": "Søg efter by...",
"search_country": "Søg efter land...",
"search_filter_apply": "Tilføj filter",
"search_filter_camera_title": "Vælg type af kamera",
"search_filter_date": "Dato",
"search_filter_date_interval": "{start} til { slut}",
"search_filter_date_title": "Vælg et datointerval",
"search_filter_display_option_not_in_album": "Ikke i album",
"search_filter_display_options": "Visningsindstillinger",
"search_filter_filename": "Search by file name",
"search_filter_location": "Lokation",
"search_filter_location_title": "Vælg lokation",
"search_filter_media_type": "Medietype",
"search_filter_media_type_title": "Vælg medietype",
"search_filter_people_title": "Vælg personer",
"search_for": "Søg efter",
"search_for_existing_person": "Søg efter eksisterende person",
"search_no_more_result": "No more results",
"search_no_people": "Ingen personer",
"search_no_people_named": "Ingen personer med navnet \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Søgemuligheder",
"search_page_categories": "Kategorier",
"search_page_motion_photos": "Bevægelsesbilleder",
"search_page_no_objects": "Ingen elementer er tilgængelige",
"search_page_no_places": "Ingen placeringsinformation er tilgængelig",
"search_page_screenshots": "Skærmbilleder",
"search_page_search_photos_videos": "Søg i dine billeder og videoer",
"search_page_selfies": "Selfier",
"search_page_things": "Ting",
"search_page_view_all_button": "Vis alt",
"search_page_your_activity": "Din aktivitet",
"search_page_your_map": "Dit kort",
"search_people": "Søg i personer",
"search_places": "Søg i steder",
"search_rating": "Søg efter vurdering...",
"search_result_page_new_search_hint": "Ny søgning",
"search_settings": "søgeindstillinger",
"search_state": "Søg efter lansdel...",
"search_suggestion_list_smart_search_hint_1": "Smart søgnining er slået til som standard. For at søge efter metadata brug syntaksen",
"search_suggestion_list_smart_search_hint_2": "m:dit-søgeord",
"search_tags": "Søg tags...",
"search_timezone": "Søg i tidszone...",
"search_type": "Søg efter type",
@@ -1164,10 +1559,14 @@
"select_new_face": "Vælg nyt ansigt",
"select_photos": "Vælg billeder",
"select_trash_all": "Vælg smid alle ud",
"select_user_for_sharing_page_err_album": "Fejlede i at oprette et nyt album",
"selected": "Valgt",
"selected_count": "{count, plural, one {# valgt} other {# valgte}}",
"send_message": "Send besked",
"send_welcome_email": "Send velkomstemail",
"server_endpoint": "Server endepunkt",
"server_info_box_app_version": "Applikationsversion",
"server_info_box_server_url": "Server URL",
"server_offline": "Server Offline",
"server_online": "Server Online",
"server_stats": "Serverstatus",
@@ -1179,22 +1578,91 @@
"set_date_of_birth": "Indstil fødselsdato",
"set_profile_picture": "Indstil profilbillede",
"set_slideshow_to_fullscreen": "Sæt diasshow til fuldskærmsvisning",
"setting_image_viewer_help": "Detaljeret visning indlæser miniaturebilleder først. Herefter indlæses mediumstørrelse forhåndsvisning af billedet (hvis dette er slået til), for til sidst at vise originalen (hvis dette er slået til).",
"setting_image_viewer_original_subtitle": "Slå indlæsning af originalbillede i fuld størrelse til (stort!). Deaktiver for at reducere dataforbruget (både på netværket og for enhedscache).",
"setting_image_viewer_original_title": "Indlæs originalbillede",
"setting_image_viewer_preview_subtitle": "Slå indlæsning af et mediumstørrelse billede til. Slå fra for enten direkte at indlæse originalen eller kun at bruge miniaturebilledet.",
"setting_image_viewer_preview_title": "Indlæs forhåndsvisning af billedet",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Anvend",
"setting_languages_subtitle": "Ændrer app-sprog",
"setting_languages_title": "Sprog",
"setting_notifications_notify_failures_grace_period": "Giv besked om fejl med sikkerhedskopiering i baggrunden: {}",
"setting_notifications_notify_hours": "{} timer",
"setting_notifications_notify_immediately": "med det samme",
"setting_notifications_notify_minutes": "{} minutter",
"setting_notifications_notify_never": "aldrig",
"setting_notifications_notify_seconds": "{} sekunder",
"setting_notifications_single_progress_subtitle": "Detaljeret uploadstatus pr. element",
"setting_notifications_single_progress_title": "Vis detaljeret baggrundsuploadstatus",
"setting_notifications_subtitle": "Tilpas dine notifikationspræferencer",
"setting_notifications_total_progress_subtitle": "Samlet uploadstatus (færdige/samlet antal elementer)",
"setting_notifications_total_progress_title": "Vis samlet baggrundsuploadstatus",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Indstillinger",
"settings_require_restart": "Genstart venligst Immich for at anvende denne ændring",
"settings_saved": "Indstillinger er gemt",
"share": "Del",
"share_add_photos": "Tilføj billeder",
"share_assets_selected": "{} valgt",
"share_dialog_preparing": "Forbereder...",
"shared": "Delt",
"shared_album_activities_input_disable": "Kommentarer er deaktiveret",
"shared_album_activity_remove_content": "Vil du slette denne aktivitet?",
"shared_album_activity_remove_title": "Slet aktivitet",
"shared_album_section_people_action_error": "Der opstod en fejl i fjernelsen fra albummet",
"shared_album_section_people_action_leave": "Fjern brugere fra albummet",
"shared_album_section_people_action_remove_user": "Fjern brugere fra albummet",
"shared_album_section_people_title": "PERSONER",
"shared_by": "Delt af",
"shared_by_user": "Delt af {user}",
"shared_by_you": "Delt af dig",
"shared_from_partner": "Billeder fra {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Delte links",
"shared_link_clipboard_copied_massage": "Kopieret til udklipsholderen",
"shared_link_clipboard_text": "Link: {}\nkodeord: {}",
"shared_link_create_error": "Der opstod en fejl i oprettelsen af et delt link",
"shared_link_edit_description_hint": "Indtast beskrivelse",
"shared_link_edit_expire_after_option_day": "1 dag",
"shared_link_edit_expire_after_option_days": "{} dage",
"shared_link_edit_expire_after_option_hour": "1 time",
"shared_link_edit_expire_after_option_hours": "{} timer",
"shared_link_edit_expire_after_option_minute": "1 minut",
"shared_link_edit_expire_after_option_minutes": "{} minutter",
"shared_link_edit_expire_after_option_months": "{} måneder",
"shared_link_edit_expire_after_option_year": "{} år",
"shared_link_edit_password_hint": "Indtast kodeordet",
"shared_link_edit_submit_button": "Opdater link",
"shared_link_error_server_url_fetch": "Kan ikke finde server URL",
"shared_link_expires_day": "Udløber om {} dag",
"shared_link_expires_days": "Udløber om {} dage",
"shared_link_expires_hour": "Udløber om {} time",
"shared_link_expires_hours": "Udløber om {} timer",
"shared_link_expires_minute": "Udløber om {} minut",
"shared_link_expires_minutes": "Udløber om {} minutter",
"shared_link_expires_never": "Udløber aldrig",
"shared_link_expires_second": "Udløber om {} sekund",
"shared_link_expires_seconds": "Udløber om {} sekunder",
"shared_link_individual_shared": "Individuelt delt",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Håndter delte links",
"shared_link_options": "Muligheder for delt link",
"shared_links": "Delte links",
"shared_links_description": "Del billeder og videoer med et link",
"shared_photos_and_videos_count": "{assetCount, plural, other {# delte billeder & videoer.}}",
"shared_with_me": "Delt med mig",
"shared_with_partner": "Delt med {partner}",
"sharing": "Delte",
"sharing_enter_password": "Indtast venligst adgangskoden for at se denne side.",
"sharing_page_album": "Delt albums",
"sharing_page_description": "Opret delte albummer for at dele billeder og video med personer på dit netværk.",
"sharing_page_empty_list": "TOM LISTE",
"sharing_sidebar_description": "Vis et link til deling i sidemenuen",
"sharing_silver_appbar_create_shared_album": "Opret delt album",
"sharing_silver_appbar_share_partner": "Del med partner",
"shift_to_permanent_delete": "tryk på ⇧ for at slette aktiv permanent",
"show_album_options": "Vis albumindstillinger",
"show_albums": "Vis albummer",
@@ -1261,6 +1729,9 @@
"support_third_party_description": "Din Immich-installation blev sammensat af en tredjepart. Problemer, du oplever, kan være forårsaget af denne udvikler, så rejs venligst problemer med dem i første omgang ved at bruge nedenstående links.",
"swap_merge_direction": "Byt retning for sammenfletning",
"sync": "Synkronisér",
"sync_albums": "Synkroniser albummer",
"sync_albums_manual_subtitle": "Synkroniser alle uploadet billeder og videoer til de valgte backupalbummer",
"sync_upload_album_setting_subtitle": "Opret og upload dine billeder og videoer til de valgte albummer i Immich",
"tag": "Tag",
"tag_assets": "Tag mediefiler",
"tag_created": "Oprettet tag: {tag}",
@@ -1274,6 +1745,19 @@
"theme": "Tema",
"theme_selection": "Temavalg",
"theme_selection_description": "Indstil automatisk temaet til lyst eller mørkt baseret på din browsers systempræference",
"theme_setting_asset_list_storage_indicator_title": "Vis opbevaringsindikator på filer",
"theme_setting_asset_list_tiles_per_row_title": "Antal elementer per række ({})",
"theme_setting_colorful_interface_subtitle": "Tilføj primær farve til baggrundsoverflader.",
"theme_setting_colorful_interface_title": "Farverig grænseflade",
"theme_setting_image_viewer_quality_subtitle": "Juster kvaliteten i billedfremviseren",
"theme_setting_image_viewer_quality_title": "Billedfremviserkvalitet",
"theme_setting_primary_color_subtitle": "Vælg en farve til primære handlinger og accenter.",
"theme_setting_primary_color_title": "Primær farve",
"theme_setting_system_primary_color_title": "Brug systemfarver",
"theme_setting_system_theme_switch": "Automatisk (Følg systemindstillinger)",
"theme_setting_theme_subtitle": "Vælg appens temaindstilling",
"theme_setting_three_stage_loading_subtitle": "Tre-trins indlæsning kan øge ydeevnen, men kan ligeledes føre til højere netværksbelastning",
"theme_setting_three_stage_loading_title": "Slå tre-trins indlæsning til",
"they_will_be_merged_together": "De vil blive slået sammen",
"third_party_resources": "Tredjepartsressourcer",
"time_based_memories": "Tidsbaserede minder",
@@ -1293,7 +1777,15 @@
"trash_all": "Smid alle ud",
"trash_count": "Slet {count, number}",
"trash_delete_asset": "Flyt mediefil til Papirkurv",
"trash_emptied": "Tømte papirkurven",
"trash_no_results_message": "Billeder og videoer markeret til sletning vil blive vist her.",
"trash_page_delete_all": "Slet alt",
"trash_page_empty_trash_dialog_content": "Vil du tømme papirkurven? Disse elementer vil blive permanent fjernet fra Immich",
"trash_page_info": "Slettede elementer vil blive slettet permanent efter {} dage",
"trash_page_no_assets": "Ingen slettede elementer",
"trash_page_restore_all": "Gendan alt",
"trash_page_select_assets_btn": "Vælg elementer",
"trash_page_title": "Papirkurv ({})",
"trashed_items_will_be_permanently_deleted_after": "Mediefiler i skraldespanden vil blive slettet permanent efter {days, plural, one {# dag} other {# dage}}.",
"type": "Type",
"unarchive": "Afakivér",
@@ -1322,6 +1814,8 @@
"updated_password": "Opdaterede adgangskode",
"upload": "Upload",
"upload_concurrency": "Upload samtidighed",
"upload_dialog_info": "Vil du sikkerhedskopiere de(t) valgte element(er) til serveren?",
"upload_dialog_title": "Upload element",
"upload_errors": "Upload afsluttet med {count, plural, one {# fejl} other {# fejl}}. Opdater siden for at se nye uploadaktiver.",
"upload_progress": "Resterende {remaining, number} - Behandlet {processed, number}/{total, number}",
"upload_skipped_duplicates": "Sprang over {count, plural, one {# duplet aktiv} other {# duplikerede aktiver}}",
@@ -1329,8 +1823,11 @@
"upload_status_errors": "Fejl",
"upload_status_uploaded": "Uploadet",
"upload_success": "Upload gennemført. Opdater siden for at se nye uploadaktiver.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "Forbrug",
"use_current_connection": "brug nuværende forbindelse",
"use_custom_date_range": "Brug tilpasset datointerval i stedet",
"user": "Bruger",
"user_id": "Bruger-ID",
@@ -1345,10 +1842,16 @@
"users": "Brugere",
"utilities": "Værktøjer",
"validate": "Validér",
"validate_endpoint_error": "Indtast en gyldig URL",
"variables": "Variabler",
"version": "Version",
"version_announcement_closing": "Din ven, Alex",
"version_announcement_message": "Hej! En ny version af Immich er tilgængelig. Brug venligst lidt tid på at læse <link>udgivelsesbemærkningerne</link> for at sikre, at din opsætning er opdateret for at forhindre fejlkonfigurationer, især hvis du bruger WatchTower eller en mekanisme, der håndterer automatisk opdatering af din Immich-instans.",
"version_announcement_overlay_release_notes": "udgivelsesnoterne",
"version_announcement_overlay_text_1": "Hej ven, der er en ny version af",
"version_announcement_overlay_text_2": ". Besøg venligst ",
"version_announcement_overlay_text_3": " for at sikre dig, at din dockercompose- og .env-fil er opdateret, så der undgås fejlkonfiguration, specielt hvis du bruger WatchTower eller lignede.",
"version_announcement_overlay_title": "Ny serverversion er tilgængelig 🎉",
"version_history": "Versionshistorik",
"version_history_item": "Installerede {version} den {date}",
"video": "Video",
@@ -1367,15 +1870,20 @@
"view_next_asset": "Se næste medie",
"view_previous_asset": "Se forrige medie",
"view_stack": "Vis stak",
"viewer_remove_from_stack": "Fjern fra stak",
"viewer_stack_use_as_main_asset": "Brug som hovedelement",
"viewer_unstack": "Fjern fra stak",
"visibility_changed": "Synlighed ændret for {count, plural, one {# person} other {# personer}}",
"waiting": "Venter",
"warning": "Advarsel",
"week": "Uge",
"welcome": "Velkommen",
"welcome_to_immich": "Velkommen til Immich",
"wifi_name": "WiFi-navn",
"year": "År",
"years_ago": "{years, plural, one {# år} other {# år}} siden",
"yes": "Ja",
"you_dont_have_any_shared_links": "Du har ikke nogen delte links",
"your_wifi_name": "Dit WiFi-navn",
"zoom_image": "Zoom billede"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Konto seaded",
"acknowledge": "Sain aru",
"action": "Tegevus",
"action_common_update": "Uuenda",
"actions": "Tegevused",
"active": "Aktiivne",
"activity": "Aktiivsus",
@@ -13,6 +14,7 @@
"add_a_location": "Lisa asukoht",
"add_a_name": "Lisa nimi",
"add_a_title": "Lisa pealkiri",
"add_endpoint": "Lisa lõpp-punkt",
"add_exclusion_pattern": "Lisa välistamismuster",
"add_import_path": "Lisa imporditee",
"add_location": "Lisa asukoht",
@@ -22,6 +24,8 @@
"add_photos": "Lisa fotosid",
"add_to": "Lisa kohta…",
"add_to_album": "Lisa albumisse",
"add_to_album_bottom_sheet_added": "Lisatud albumisse {album}",
"add_to_album_bottom_sheet_already_exists": "On juba albumis {album}",
"add_to_shared_album": "Lisa jagatud albumisse",
"add_url": "Lisa URL",
"added_to_archive": "Lisatud arhiivi",
@@ -35,11 +39,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",
"backup_database": "Loo andmebaasi tõmmis",
"backup_database_enable_description": "Luba andmebaasi tõmmised",
"backup_keep_last_amount": "Eelmiste tõmmiste arv, mida alles hoida",
"backup_settings": "Andmebaasi tõmmiste seaded",
"backup_settings_description": "Halda andmebaasi tõmmiste seadeid. Märkus: Neid tööteid ei jälgita ning ebaõnnestumisest ei hoiatata.",
"check_all": "Märgi kõik",
"cleanup": "Koristus",
"cleared_jobs": "Tööted eemaldatud: {job}",
@@ -167,7 +171,6 @@
"no_pattern_added": "Mustreid ei ole",
"note_apply_storage_label_previous_assets": "Märkus: Et rakendada talletussilt varem üleslaaditud üksustele, käivita",
"note_cannot_be_changed_later": "MÄRKUS: Seda ei saa hiljem muuta!",
"note_unlimited_quota": "Märkus: Piiramatu kvoodi jaoks sisesta 0",
"notification_email_from_address": "Saatja aadress",
"notification_email_from_address_description": "Saatja e-posti aadress, näiteks: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "E-posti serveri host (nt. smtp.immich.app)",
@@ -368,6 +371,10 @@
"admin_password": "Administraatori parool",
"administration": "Administratsioon",
"advanced": "Täpsemad valikud",
"advanced_settings_log_level_title": "Logimistase: {}",
"advanced_settings_proxy_headers_title": "Vaheserveri päised",
"advanced_settings_self_signed_ssl_title": "Luba endasigneeritud SSL-sertifikaadid",
"advanced_settings_troubleshooting_title": "Tõrkeotsing",
"age_months": "Vanus {months, plural, one {# kuu} other {# kuud}}",
"age_year_months": "Vanus 1 aasta, {months, plural, one {# kuu} other {# kuud}}",
"age_years": "{years, plural, other {Vanus #}}",
@@ -376,6 +383,8 @@
"album_cover_updated": "Albumi kaanepilt muudetud",
"album_delete_confirmation": "Kas oled kindel, et soovid albumi {album} kustutada?",
"album_delete_confirmation_description": "Kui see album on jagatud, ei pääse teised kasutajad sellele enam ligi.",
"album_info_card_backup_album_excluded": "VÄLJA JÄETUD",
"album_info_card_backup_album_included": "LISATUD",
"album_info_updated": "Albumi info muudetud",
"album_leave": "Lahku albumist?",
"album_leave_confirmation": "Kas oled kindel, et soovid albumist {album} lahkuda?",
@@ -384,10 +393,21 @@
"album_remove_user": "Eemalda kasutaja?",
"album_remove_user_confirmation": "Kas oled kindel, et soovid kasutaja {user} eemaldada?",
"album_share_no_users": "Paistab, et oled seda albumit kõikide kasutajatega jaganud, või pole ühtegi kasutajat, kellega jagada.",
"album_thumbnail_card_item": "1 üksus",
"album_thumbnail_card_items": "{} üksust",
"album_thumbnail_card_shared": " · Jagatud",
"album_thumbnail_shared_by": "Jagas {}",
"album_updated": "Album muudetud",
"album_updated_setting_description": "Saa teavitus e-posti teel, kui jagatud albumis on uusi üksuseid",
"album_user_left": "Lahkutud albumist {album}",
"album_user_removed": "Kasutaja {user} eemaldatud",
"album_viewer_appbar_delete_confirm": "Kas oled kindel, et soovid selle albumi oma kontolt kustutada?",
"album_viewer_appbar_share_err_delete": "Albumi kustutamine ebaõnnestus",
"album_viewer_appbar_share_err_leave": "Albumist lahkumine ebaõnnestus",
"album_viewer_appbar_share_err_remove": "Üksuste albumist eemaldamisel tekkis probleeme",
"album_viewer_appbar_share_err_title": "Albumi pealkirja muutmine ebaõnnestus",
"album_viewer_appbar_share_leave": "Lahku albumist",
"album_viewer_page_share_add_users": "Lisa kasutajaid",
"album_with_link_access": "Luba kõigil, kellel on link, näha selle albumi fotosid ja isikuid.",
"albums": "Albumid",
"albums_count": "{count, plural, one {{count, number} album} other {{count, number} albumit}}",
@@ -405,23 +425,36 @@
"api_key_description": "Seda väärtust kuvatakse ainult üks kord. Kopeeri see enne akna sulgemist.",
"api_key_empty": "Su API võtme nimi ei tohiks olla tühi",
"api_keys": "API võtmed",
"app_bar_signout_dialog_content": "Kas oled kindel, et soovid välja logida?",
"app_bar_signout_dialog_ok": "Jah",
"app_bar_signout_dialog_title": "Logi välja",
"app_settings": "Rakenduse seaded",
"appears_in": "Albumid",
"archive": "Arhiiv",
"archive_or_unarchive_photo": "Arhiveeri või taasta foto",
"archive_page_no_archived_assets": "Arhiveeritud üksuseid ei leitud",
"archive_size": "Arhiivi suurus",
"archive_size_description": "Seadista arhiivi suurus allalaadimiseks (GiB)",
"archived": "Arhiveeritud",
"archived_count": "{count, plural, other {# arhiveeritud}}",
"are_these_the_same_person": "Kas need on sama isik?",
"are_you_sure_to_do_this": "Kas oled kindel, et soovid seda teha?",
"asset_action_delete_err_read_only": "Kirjutuskaitstud üksuseid ei saa kustutada, jätan vahele",
"asset_added_to_album": "Lisatud albumisse",
"asset_adding_to_album": "Albumisse lisamine…",
"asset_description_updated": "Üksuse kirjeldus on muudetud",
"asset_filename_is_offline": "Üksus {filename} ei ole kättesaadav",
"asset_has_unassigned_faces": "Üksusel on seostamata nägusid",
"asset_hashing": "Räsimine…",
"asset_list_group_by_sub_title": "Grupeeri",
"asset_list_layout_settings_dynamic_layout_title": "Dünaamiline asetus",
"asset_list_layout_settings_group_automatically": "Automaatne",
"asset_list_layout_settings_group_by": "Grupeeri üksused",
"asset_list_layout_settings_group_by_month_day": "Kuu + päev",
"asset_list_layout_sub_title": "Asetus",
"asset_offline": "Üksus pole kättesaadav",
"asset_offline_description": "Seda välise kogu üksust ei leitud kettalt. Abi saamiseks palun võta ühendust oma Immich'i administraatoriga.",
"asset_restored_successfully": "Üksus edukalt taastatud",
"asset_skipped": "Vahele jäetud",
"asset_skipped_in_trash": "Prügikastis",
"asset_uploaded": "Üleslaaditud",
@@ -439,8 +472,26 @@
"assets_trashed_count": "{count, plural, one {# üksus} other {# üksust}} liigutatud prügikasti",
"assets_were_part_of_album_count": "{count, plural, one {Üksus oli} other {Üksused olid}} juba osa albumist",
"authorized_devices": "Autoriseeritud seadmed",
"automatic_endpoint_switching_subtitle": "Ühendu lokaalselt üle valitud WiFi-võrgu, kui see on saadaval, ja kasuta mujal alternatiivseid ühendusi",
"back": "Tagasi",
"back_close_deselect": "Tagasi, sulge või tühista valik",
"backup_album_selection_page_select_albums": "Vali albumid",
"backup_album_selection_page_selection_info": "Valiku info",
"backup_album_selection_page_total_assets": "Unikaalseid üksuseid kokku",
"backup_all": "Kõik",
"backup_background_service_default_notification": "Uute üksuste kontrollimine…",
"backup_background_service_error_title": "Varundamise viga",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_wifi": "Ainult WiFi-võrgus",
"backup_controller_page_backup_sub": "Varundatud fotod ja videod",
"backup_controller_page_desc_backup": "Lülita sisse esiplaanil varundamine, et rakenduse avamisel uued üksused automaatselt serverisse üles laadida.",
"backup_controller_page_to_backup": "Albumid, mida varundada",
"backup_controller_page_total_sub": "Kõik unikaalsed fotod ja videod valitud albumitest",
"backup_err_only_album": "Ei saa ainsat albumit eemaldada",
"backup_info_card_assets": "üksused",
"backup_manual_cancelled": "Tühistatud",
"backup_manual_title": "Üleslaadimise staatus",
"backup_setting_subtitle": "Halda taustal ja esiplaanil üleslaadimise seadeid",
"backward": "Tagasi",
"birthdate_saved": "Sünnikuupäev salvestatud",
"birthdate_set_description": "Sünnikuupäeva kasutatakse isiku vanuse arvutamiseks foto tegemise hetkel.",
@@ -452,11 +503,14 @@
"bulk_keep_duplicates_confirmation": "Kas oled kindel, et soovid {count, plural, one {# dubleeritud üksuse} other {# dubleeritud üksust}} alles jätta? Sellega märgitakse kõik duplikaadigrupid lahendatuks ilma midagi kustutamata.",
"bulk_trash_duplicates_confirmation": "Kas oled kindel, et soovid {count, plural, one {# dubleeritud üksuse} other {# dubleeritud üksust}} masskustutada? Sellega jäetakse alles iga grupi suurim üksus ning duplikaadid liigutatakse prügikasti.",
"buy": "Osta Immich",
"cache_settings_clear_cache_button": "Tühjenda puhver",
"cache_settings_statistics_title": "Puhvri kasutus",
"camera": "Kaamera",
"camera_brand": "Kaamera mark",
"camera_model": "Kaamera mudel",
"cancel": "Katkesta",
"cancel_search": "Katkesta otsing",
"canceled": "Tühistatud",
"cannot_merge_people": "Ei saa isikuid ühendada",
"cannot_undo_this_action": "Sa ei saa seda tagasi võtta!",
"cannot_update_the_description": "Kirjelduse muutmine ebaõnnestus",
@@ -467,6 +521,10 @@
"change_name_successfully": "Nimi edukalt muudetud",
"change_password": "Parooli muutmine",
"change_password_description": "See on su esimene kord süsteemi siseneda, või on tehtud taotlus parooli muutmiseks. Palun sisesta allpool uus parool.",
"change_password_form_confirm_password": "Kinnita parool",
"change_password_form_new_password": "Uus parool",
"change_password_form_password_mismatch": "Paroolid ei klapi",
"change_password_form_reenter_new_password": "Korda uut parooli",
"change_your_password": "Muuda oma parooli",
"changed_visibility_successfully": "Nähtavus muudetud",
"check_all": "Märgi kõik",
@@ -478,6 +536,14 @@
"clear_all_recent_searches": "Tühjenda hiljutised otsingud",
"clear_message": "Tühjenda sõnum",
"clear_value": "Tühjenda väärtus",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Sisesta parool",
"client_cert_import": "Impordi",
"client_cert_import_success_msg": "Klientsertifikaat on imporditud",
"client_cert_invalid_msg": "Vigane sertifikaadi fail või vale parool",
"client_cert_remove_msg": "Klientsertifikaat on eemaldatud",
"client_cert_subtitle": "Toetab ainult PKCS12 (.p12, .pfx) formaati. Sertifikaadi importimine/eemaldamine on saadaval ainult enne sisselogimist",
"client_cert_title": "SSL klientsertifikaat",
"clockwise": "Päripäeva",
"close": "Sulge",
"collapse": "Peida",
@@ -488,6 +554,8 @@
"comment_options": "Kommentaari valikud",
"comments_and_likes": "Kommentaarid ja meeldimised",
"comments_are_disabled": "Kommentaarid on keelatud",
"common_create_new_album": "Lisa uus album",
"completed": "Lõpetatud",
"confirm": "Kinnita",
"confirm_admin_password": "Kinnita administraatori parool",
"confirm_delete_face": "Kas oled kindel, et soovid isiku {name} näo üksuselt kustutada?",
@@ -497,6 +565,10 @@
"contain": "Mahuta ära",
"context": "Kontekst",
"continue": "Jätka",
"control_bottom_app_bar_create_new_album": "Lisa uus album",
"control_bottom_app_bar_delete_from_local": "Kustuta seadmest",
"control_bottom_app_bar_edit_location": "Muuda asukohta",
"control_bottom_app_bar_edit_time": "Muuda kuupäeva ja aega",
"copied_image_to_clipboard": "Pilt kopeeritud lõikelauale.",
"copied_to_clipboard": "Kopeeritud lõikelauale!",
"copy_error": "Kopeeri viga",
@@ -518,6 +590,7 @@
"create_new_person": "Lisa uus isik",
"create_new_person_hint": "Seosta valitud üksused uue isikuga",
"create_new_user": "Lisa uus kasutaja",
"create_shared_album_page_share_select_photos": "Vali fotod",
"create_tag": "Lisa silt",
"create_tag_description": "Lisa uus silt. Pesastatud siltide jaoks sisesta täielik tee koos kaldkriipsudega.",
"create_user": "Lisa kasutaja",
@@ -542,19 +615,23 @@
"delete": "Kustuta",
"delete_album": "Kustuta album",
"delete_api_key_prompt": "Kas oled kindel, et soovid selle API võtme kustutada?",
"delete_dialog_title": "Kustuta jäädavalt",
"delete_duplicates_confirmation": "Kas oled kindel, et soovid need duplikaadid jäädavalt kustutada?",
"delete_face": "Kustuta nägu",
"delete_key": "Kustuta võti",
"delete_library": "Kustuta kogu",
"delete_link": "Kustuta link",
"delete_local_dialog_ok_backed_up_only": "Kustuta ainult varundatud",
"delete_others": "Kustuta teised",
"delete_shared_link": "Kustuta jagatud link",
"delete_shared_link_dialog_title": "Kustuta jagatud link",
"delete_tag": "Kustuta silt",
"delete_tag_confirmation_prompt": "Kas oled kindel, et soovid sildi {tagName} kustutada?",
"delete_user": "Kustuta kasutaja",
"deleted_shared_link": "Jagatud link kustutatud",
"deletes_missing_assets": "Kustutab üksused, mis on kettalt puudu",
"description": "Kirjeldus",
"description_input_hint_text": "Lisa kirjeldus...",
"details": "Üksikasjad",
"direction": "Suund",
"disabled": "Välja lülitatud",
@@ -571,10 +648,20 @@
"documentation": "Dokumentatsioon",
"done": "Tehtud",
"download": "Laadi alla",
"download_canceled": "Allalaadimine katkestatud",
"download_complete": "Allalaadimine lõpetatud",
"download_enqueue": "Allalaadimine ootel",
"download_error": "Allalaadimise viga",
"download_failed": "Allalaadimine ebaõnnestus",
"download_finished": "Allalaadimine lõpetatud",
"download_include_embedded_motion_videos": "Manustatud videod",
"download_include_embedded_motion_videos_description": "Lisa liikuvatesse fotodesse manustatud videod eraldi failidena",
"download_paused": "Allalaadimine peatatud",
"download_settings": "Allalaadimine",
"download_settings_description": "Halda üksuste allalaadimise seadeid",
"download_started": "Allalaadimine alustatud",
"download_sucess": "Allalaadimine õnnestus",
"download_sucess_android": "Meediumid laaditi alla kataloogi DCIM/Immich",
"downloading": "Allalaadimine",
"downloading_asset_filename": "Üksuse {filename} allalaadimine",
"drop_files_to_upload": "Failide üleslaadimiseks sikuta need ükskõik kuhu",
@@ -593,6 +680,7 @@
"edit_key": "Muuda võtit",
"edit_link": "Muuda linki",
"edit_location": "Muuda asukohta",
"edit_location_dialog_title": "Asukoht",
"edit_name": "Muuda nime",
"edit_people": "Muuda isikuid",
"edit_tag": "Muuda silti",
@@ -605,12 +693,15 @@
"editor_crop_tool_h2_aspect_ratios": "Kuvasuhted",
"editor_crop_tool_h2_rotation": "Pööre",
"email": "E-post",
"empty_folder": "See kaust on tühi",
"empty_trash": "Tühjenda prügikast",
"empty_trash_confirmation": "Kas oled kindel, et soovid prügikasti tühjendada? See eemaldab kõik seal olevad üksused Immich'ist jäädavalt.\nSeda tegevust ei saa tagasi võtta!",
"enable": "Luba",
"enabled": "Lubatud",
"end_date": "Lõppkuupäev",
"enter_wifi_name": "Sisesta WiFi-võrgu nimi",
"error": "Viga",
"error_change_sort_album": "Albumi sorteerimisjärjestuse muutmine ebaõnnestus",
"error_delete_face": "Viga näo kustutamisel",
"error_loading_image": "Viga pildi laadimisel",
"error_title": "Viga - midagi läks valesti",
@@ -741,8 +832,14 @@
"unable_to_upload_file": "Faili üleslaadimine ebaõnnestus"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Lisa kirjeldus...",
"exif_bottom_sheet_details": "ÜKSIKASJAD",
"exif_bottom_sheet_location": "ASUKOHT",
"exif_bottom_sheet_people": "ISIKUD",
"exif_bottom_sheet_person_add_person": "Lisa nimi",
"exit_slideshow": "Sulge slaidiesitlus",
"expand_all": "Näita kõik",
"experimental_settings_title": "Eksperimentaalne",
"expire_after": "Aegub",
"expired": "Aegunud",
"expires_date": "Aegub {date}",
@@ -753,6 +850,7 @@
"extension": "Laiend",
"external": "Väline",
"external_libraries": "Välised kogud",
"external_network_sheet_info": "Kui seade ei ole eelistatud WiFi-võrgus, ühendub rakendus serveriga allolevatest URL-idest esimese kättesaadava kaudu, alustades ülevalt",
"face_unassigned": "Seostamata",
"failed_to_load_assets": "Üksuste laadimine ebaõnnestus",
"favorite": "Lemmik",
@@ -768,6 +866,8 @@
"filter_people": "Filtreeri isikuid",
"find_them_fast": "Leia teda kiiresti nime järgi otsides",
"fix_incorrect_match": "Paranda ebaõige vaste",
"folder": "Kaust",
"folder_not_found": "Kausta ei leitud",
"folders": "Kaustad",
"folders_feature_description": "Kaustavaate abil failisüsteemis olevate fotode ja videote sirvimine",
"forward": "Edasi",
@@ -784,6 +884,10 @@
"group_places_by": "Grupeeri kohad...",
"group_year": "Grupeeri aasta kaupa",
"has_quota": "On kvoot",
"header_settings_add_header_tip": "Lisa päis",
"header_settings_field_validator_msg": "Väärtus ei saa olla tühi",
"header_settings_header_name_input": "Päise nimi",
"header_settings_header_value_input": "Päise väärtus",
"hi_user": "Tere {name} ({email})",
"hide_all_people": "Peida kõik isikud",
"hide_gallery": "Peida galerii",
@@ -791,8 +895,20 @@
"hide_password": "Peida parool",
"hide_person": "Peida isik",
"hide_unnamed_people": "Peida nimetud isikud",
"home_page_add_to_album_conflicts": "{added} üksust lisati albumisse {album}. {failed} üksust oli juba albumis.",
"home_page_add_to_album_err_local": "Lokaalseid üksuseid ei saa veel albumisse lisada, jätan vahele",
"home_page_add_to_album_success": "{added} üksust lisati albumisse {album}.",
"home_page_album_err_partner": "Partneri üksuseid ei saa veel albumisse lisada, jätan vahele",
"home_page_archive_err_local": "Lokaalseid üksuseid ei saa veel arhiveerida, jätan vahele",
"home_page_archive_err_partner": "Partneri üksuseid ei saa arhiveerida, jätan vahele",
"home_page_building_timeline": "Ajajoone koostamine",
"home_page_delete_err_partner": "Partneri üksuseid ei saa kustutada, jätan vahele",
"home_page_favorite_err_local": "Lokaalseid üksuseid ei saa lemmikuks märkida, jätan vahele",
"home_page_favorite_err_partner": "Partneri üksuseid ei saa lemmikuks märkida, jätan vahele",
"home_page_share_err_local": "Lokaalseid üksuseid ei saa lingiga jagada, jätan vahele",
"host": "Host",
"hour": "Tund",
"ignore_icloud_photos": "Ignoreeri iCloud fotosid",
"image": "Pilt",
"image_alt_text_date": "{isVideo, select, true {Video} other {Pilt}} tehtud {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Pilt}} tehtud {date} koos isikuga {person1}",
@@ -804,6 +920,8 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Pilt}} tehtud {date} kohas {city}, {country} koos isikutega {person1} ja {person2}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Pilt}} tehtud {date} kohas {city}, {country} koos isikutega {person1}, {person2} ja {person3}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Pilt}} tehtud {date} kohas {city}, {country} koos {person1}, {person2} ja veel {additionalCount, number} isikuga",
"image_viewer_page_state_provider_download_started": "Allalaadimine alustatud",
"image_viewer_page_state_provider_download_success": "Allalaadimine õnnestus",
"immich_logo": "Immich'i logo",
"immich_web_interface": "Immich'i veebiliides",
"import_from_json": "Impordi JSON-formaadist",
@@ -822,6 +940,8 @@
"night_at_midnight": "Iga päev keskööl",
"night_at_twoam": "Iga öö kell 2"
},
"invalid_date": "Vigane kuupäev",
"invalid_date_format": "Vigane kuupäevaformaat",
"invite_people": "Kutsu inimesi",
"invite_to_album": "Kutsu albumisse",
"items_count": "{count, plural, one {# üksus} other {# üksust}}",
@@ -842,6 +962,9 @@
"level": "Tase",
"library": "Kogu",
"library_options": "Kogu seaded",
"library_page_new_album": "Uus album",
"library_page_sort_asset_count": "Üksuste arv",
"library_page_sort_title": "Albumi pealkiri",
"light": "Hele",
"like_deleted": "Meeldimine kustutatud",
"link_motion_video": "Lingi liikuv video",
@@ -851,12 +974,24 @@
"list": "Loend",
"loading": "Laadimine",
"loading_search_results_failed": "Otsitulemuste laadimine ebaõnnestus",
"local_network_sheet_info": "Rakendus ühendub valitud Wi-Fi võrgus olles serveriga selle URL-i kaudu",
"location_permission_content": "Automaatseks ümberlülitumiseks vajab Immich täpse asukoha luba, et saaks lugeda aktiivse WiFi-võrgu nime",
"location_picker_choose_on_map": "Vali kaardil",
"log_out": "Logi välja",
"log_out_all_devices": "Logi kõigist seadmetest välja",
"logged_out_all_devices": "Kõigist seadmetest välja logitud",
"logged_out_device": "Seadmest välja logitud",
"login": "Logi sisse",
"login_form_back_button_text": "Tagasi",
"login_form_email_hint": "sinunimi@email.com",
"login_form_endpoint_hint": "http://serveri-ip:port",
"login_form_endpoint_url": "Serveri lõpp-punkti URL",
"login_form_err_http": "Palun täpsusta http:// või https://",
"login_form_err_invalid_email": "Vigane e-posti aadress",
"login_form_err_invalid_url": "Vigane URL",
"login_form_password_hint": "parool",
"login_has_been_disabled": "Sisselogimine on keelatud.",
"login_password_changed_success": "Parool edukalt uuendatud",
"logout_all_device_confirmation": "Kas oled kindel, et soovid kõigist seadmetest välja logida?",
"logout_this_device_confirmation": "Kas oled kindel, et soovid sellest seadmest välja logida?",
"longitude": "Pikkuskraad",
@@ -877,10 +1012,14 @@
"map_marker_for_images": "Kaardimarker kohas {city}, {country} tehtud piltide jaoks",
"map_marker_with_image": "Kaardimarker pildiga",
"map_settings": "Kaardi seaded",
"map_settings_date_range_option_day": "Viimased 24 tundi",
"map_settings_date_range_option_year": "Viimane aasta",
"map_settings_dialog_title": "Kaardi seaded",
"matches": "Ühtivad failid",
"media_type": "Meedia tüüp",
"media_type": "Meediumi tüüp",
"memories": "Mälestused",
"memories_setting_description": "Halda, mida sa oma mälestustes näed",
"memories_year_ago": "Aasta tagasi",
"memory": "Mälestus",
"memory_lane_title": "Mälestus {title}",
"menu": "Menüü",
@@ -897,10 +1036,14 @@
"month": "Kuu",
"more": "Rohkem",
"moved_to_trash": "Liigutatud prügikasti",
"multiselect_grid_edit_date_time_err_read_only": "Kirjutuskaitsega üksus(t)e kuupäeva ei saa muuta, jätan vahele",
"multiselect_grid_edit_gps_err_read_only": "Kirjutuskaitsega üksus(t)e asukohta ei saa muuta, jätan vahele",
"mute_memories": "Vaigista mälestused",
"my_albums": "Minu albumid",
"name": "Nimi",
"name_or_nickname": "Nimi või hüüdnimi",
"networking_settings": "Võrguühendus",
"networking_subtitle": "Halda serveri lõpp-punkti seadeid",
"never": "Mitte kunagi",
"new_album": "Uus album",
"new_api_key": "Uus API võti",
@@ -929,7 +1072,6 @@
"no_shared_albums_message": "Lisa album, et fotosid ja videosid teistega jagada",
"not_in_any_album": "Pole üheski albumis",
"note_apply_storage_label_to_previously_uploaded assets": "Märkus: Et rakendada talletussilt varem üleslaaditud üksustele, käivita",
"note_unlimited_quota": "Märkus: Piiramatu kvoodi jaoks sisesta 0",
"notes": "Märkused",
"notification_toggle_setting_description": "Luba e-posti teel teavitused",
"notifications": "Teavitused",
@@ -964,6 +1106,9 @@
"partner_can_access": "{partner} pääseb ligi",
"partner_can_access_assets": "Kõik su fotod ja videod, välja arvatud arhiveeritud ja kustutatud",
"partner_can_access_location": "Asukohad, kus su fotod tehti",
"partner_list_view_all": "Vaata kõiki",
"partner_page_partner_add_failed": "Partneri lisamine ebaõnnestus",
"partner_page_select_partner": "Vali partner",
"partner_sharing": "Partneriga jagamine",
"partners": "Partnerid",
"password": "Parool",
@@ -992,6 +1137,7 @@
"permanently_delete_assets_prompt": "Kas oled kindel, et soovid {count, plural, one {selle üksuse} other {need <b>#</b> üksust}} jäädavalt kustutada? Sellega eemaldatakse {count, plural, one {see} other {need}} ka oma albumi(te)st.",
"permanently_deleted_asset": "Üksus jäädavalt kustutatud",
"permanently_deleted_assets_count": "{count, plural, one {# üksus} other {# üksust}} jäädavalt kustutatud",
"permission_onboarding_back": "Tagasi",
"person": "Isik",
"person_birthdate": "Sündinud {date}",
"person_hidden": "{name}{hidden, select, true { (peidetud)} other {}}",
@@ -1009,6 +1155,7 @@
"play_motion_photo": "Esita liikuv foto",
"play_or_pause_video": "Esita või peata video",
"port": "Port",
"preferences_settings_title": "Eelistused",
"preset": "Eelseadistus",
"preview": "Eelvaade",
"previous": "Eelmine",
@@ -1016,6 +1163,8 @@
"previous_or_next_photo": "Eelmine või järgmine foto",
"primary": "Peamine",
"privacy": "Privaatsus",
"profile_drawer_app_logs": "Logid",
"profile_drawer_github": "GitHub",
"profile_image_of_user": "Kasutaja {user} profiilipilt",
"profile_picture_set": "Profiilipilt määratud.",
"public_album": "Avalik album",
@@ -1065,6 +1214,8 @@
"recent": "Hiljutine",
"recent-albums": "Hiljutised albumid",
"recent_searches": "Hiljutised otsingud",
"recently_added": "Hiljuti lisatud",
"recently_added_page_title": "Hiljuti lisatud",
"refresh": "Värskenda",
"refresh_encoded_videos": "Värskenda kodeeritud videod",
"refresh_faces": "Värskenda näod",
@@ -1121,6 +1272,7 @@
"role_editor": "Muutja",
"role_viewer": "Vaataja",
"save": "Salvesta",
"save_to_gallery": "Salvesta galeriisse",
"saved_api_key": "API võti salvestatud",
"saved_profile": "Profiil salvestatud",
"saved_settings": "Seaded salvestatud",
@@ -1140,14 +1292,32 @@
"search_camera_model": "Otsi kaamera mudelit...",
"search_city": "Otsi linna...",
"search_country": "Otsi riiki...",
"search_filter_camera_title": "Vali kaamera tüüp",
"search_filter_date": "Kuupäev",
"search_filter_date_interval": "{start} kuni {end}",
"search_filter_date_title": "Vali kuupäevavahemik",
"search_filter_display_options": "Kuva valikud",
"search_filter_filename": "Otsi failinime alusel",
"search_filter_location": "Asukoht",
"search_filter_location_title": "Vali asukoht",
"search_filter_media_type": "Meediumi tüüp",
"search_filter_media_type_title": "Vali meediumi tüüp",
"search_filter_people_title": "Vali isikud",
"search_for": "Otsi",
"search_for_existing_person": "Otsi olemasolevat isikut",
"search_no_people": "Isikuid ei ole",
"search_no_people_named": "Ei ole isikuid nimega \"{name}\"",
"search_options": "Otsingu valikud",
"search_page_categories": "Kategooriad",
"search_page_screenshots": "Ekraanipildid",
"search_page_search_photos_videos": "Otsi oma fotosid ja videosid",
"search_page_selfies": "Selfid",
"search_page_things": "Asjad",
"search_page_view_all_button": "Vaata kõiki",
"search_people": "Otsi inimesi",
"search_places": "Otsi kohti",
"search_rating": "Otsi hinnangu järgi...",
"search_result_page_new_search_hint": "Uus otsing",
"search_settings": "Otsi seadeid",
"search_state": "Otsi osariiki...",
"search_tags": "Otsi silte...",
@@ -1170,10 +1340,14 @@
"select_new_face": "Vali uus nägu",
"select_photos": "Vali fotod",
"select_trash_all": "Vali kõik prügikasti",
"select_user_for_sharing_page_err_album": "Albumi lisamine ebaõnnestus",
"selected": "Valitud",
"selected_count": "{count, plural, other {# valitud}}",
"send_message": "Saada sõnum",
"send_welcome_email": "Saada tervituskiri",
"server_endpoint": "Serveri lõpp-punkt",
"server_info_box_app_version": "Rakenduse versioon",
"server_info_box_server_url": "Serveri URL",
"server_offline": "Serveriga ühendus puudub",
"server_online": "Server ühendatud",
"server_stats": "Serveri statistika",
@@ -1185,22 +1359,42 @@
"set_date_of_birth": "Määra sünnikuupäev",
"set_profile_picture": "Sea profiilipilt",
"set_slideshow_to_fullscreen": "Kuva slaidiesitlus täisekraanil",
"setting_languages_apply": "Rakenda",
"setting_languages_title": "Keeled",
"setting_notifications_notify_immediately": "kohe",
"setting_notifications_notify_never": "mitte kunagi",
"settings": "Seaded",
"settings_saved": "Seaded salvestatud",
"share": "Jaga",
"shared": "Jagatud",
"shared_album_section_people_action_error": "Viga albumist eemaldamisel/lahkumisel",
"shared_album_section_people_action_leave": "Eemalda kasutaja albumist",
"shared_album_section_people_action_remove_user": "Eemalda kasutaja albumist",
"shared_album_section_people_title": "ISIKUD",
"shared_by": "Jagas",
"shared_by_user": "Jagas {user}",
"shared_by_you": "Jagasid sina",
"shared_from_partner": "Fotod partnerilt {partner}",
"shared_link_app_bar_title": "Jagatud lingid",
"shared_link_clipboard_copied_massage": "Kopeeritud lõikelauale",
"shared_link_create_error": "Viga jagatud lingi loomisel",
"shared_link_edit_expire_after_option_day": "1 päev",
"shared_link_edit_expire_after_option_hour": "1 tund",
"shared_link_edit_expire_after_option_minute": "1 minut",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Halda jagatud linke",
"shared_link_options": "Jagatud lingi valikud",
"shared_links": "Jagatud lingid",
"shared_links_description": "Jaga fotosid ja videosid lingiga",
"shared_photos_and_videos_count": "{assetCount, plural, other {# jagatud fotot ja videot.}}",
"shared_with_me": "Minuga jagatud",
"shared_with_partner": "Jagatud partneriga {partner}",
"sharing": "Jagamine",
"sharing_enter_password": "Palun sisesta selle lehe vaatamiseks salasõna.",
"sharing_page_album": "Jagatud albumid",
"sharing_sidebar_description": "Kuva külgmenüüs Jagamise linki",
"sharing_silver_appbar_create_shared_album": "Uus jagatud album",
"sharing_silver_appbar_share_partner": "Jaga partneriga",
"shift_to_permanent_delete": "vajuta ⇧, et üksus jäädavalt kustutada",
"show_album_options": "Näita albumi valikuid",
"show_albums": "Näita albumeid",
@@ -1267,6 +1461,7 @@
"support_third_party_description": "Sinu Immich'i install on kolmanda osapoole pakendatud. Probleemid, mida täheldad, võivad olla põhjustatud selle pakendamise poolt, seega võta esmajärjekorras nendega ühendust, kasutades allolevaid linke.",
"swap_merge_direction": "Muuda ühendamise suunda",
"sync": "Sünkrooni",
"sync_albums": "Sünkrooni albumid",
"tag": "Silt",
"tag_assets": "Sildista üksuseid",
"tag_created": "Lisatud silt: {tag}",
@@ -1280,6 +1475,9 @@
"theme": "Teema",
"theme_selection": "Teema valik",
"theme_selection_description": "Sea automaatselt hele või tume teema vastavalt veebilehitseja eelistustele",
"theme_setting_primary_color_title": "Põhivärv",
"theme_setting_system_primary_color_title": "Kasuta süsteemset värvi",
"theme_setting_system_theme_switch": "Automaatne (järgi süsteemi seadet)",
"they_will_be_merged_together": "Nad ühendatakse kokku",
"third_party_resources": "Kolmanda osapoole ressursid",
"time_based_memories": "Ajapõhised mälestused",
@@ -1300,6 +1498,9 @@
"trash_count": "Liiguta {count, number} prügikasti",
"trash_delete_asset": "Kustuta üksus",
"trash_no_results_message": "Siia ilmuvad prügikasti liigutatud fotod ja videod.",
"trash_page_delete_all": "Kustuta kõik",
"trash_page_restore_all": "Taasta kõik",
"trash_page_select_assets_btn": "Vali üksused",
"trashed_items_will_be_permanently_deleted_after": "Prügikasti tõstetud üksused kustutatakse jäädavalt {days, plural, one {# päeva} other {# päeva}} pärast.",
"type": "Tüüp",
"unarchive": "Taasta arhiivist",
@@ -1335,6 +1536,7 @@
"upload_status_errors": "Vead",
"upload_status_uploaded": "Üleslaaditud",
"upload_success": "Üleslaadimine õnnestus, uute üksuste nägemiseks värskenda lehte.",
"uploading": "Üleslaadimine",
"url": "URL",
"usage": "Kasutus",
"use_custom_date_range": "Kasuta kohandatud kuupäevavahemikku",
@@ -1372,16 +1574,21 @@
"view_name": "Vaade",
"view_next_asset": "Vaata järgmist üksust",
"view_previous_asset": "Vaata eelmist üksust",
"view_qr_code": "Vaata QR-koodi",
"view_stack": "Vaata virna",
"viewer_remove_from_stack": "Eemalda virnast",
"viewer_unstack": "Eralda",
"visibility_changed": "{count, plural, one {# isiku} other {# isiku}} nähtavus muudetud",
"waiting": "Ootel",
"warning": "Hoiatus",
"week": "Nädal",
"welcome": "Tere tulemast",
"welcome_to_immich": "Tere tulemast Immich'isse",
"wifi_name": "WiFi-võrgu nimi",
"year": "Aasta",
"years_ago": "{years, plural, one {# aasta} other {# aastat}} tagasi",
"yes": "Jah",
"you_dont_have_any_shared_links": "Sul pole ühtegi jagatud linki",
"your_wifi_name": "Sinu WiFi-võrgu nimi",
"zoom_image": "Suumi pilti"
}

View File

@@ -132,7 +132,6 @@
"no_pattern_added": "هیچ الگوی اضافه نشده",
"note_apply_storage_label_previous_assets": "توجه: برای اعمال برچسب ذخیره سازی به دارایی هایی که قبلاً بارگذاری شده اند، دستور زیر را اجرا کنید",
"note_cannot_be_changed_later": "توجه: این را نمی توان بعداً تغییر داد!",
"note_unlimited_quota": "توجه: برای سهمیه نامحدود، عدد 0 را وارد کنید",
"notification_email_from_address": "آدرس فرستنده",
"notification_email_from_address_description": "آدرس ایمیل فرستنده، به عنوان مثال:\"Immich سرور عکس <noreply@example.com>\"",
"notification_email_host_description": "میزبان سرور ایمیل (مثلاً smtp.immich.app)",
@@ -664,7 +663,6 @@
"no_shared_albums_message": "",
"not_in_any_album": "در هیچ آلبومی نیست",
"note_apply_storage_label_to_previously_uploaded assets": "",
"note_unlimited_quota": "",
"notes": "یادداشت‌ها",
"notification_toggle_setting_description": "اعلان‌های ایمیلی را فعال کنید",
"notifications": "اعلان‌ها",

View File

@@ -4,6 +4,7 @@
"account_settings": "Tilin asetukset",
"acknowledge": "Tiedostan",
"action": "Toiminta",
"action_common_update": "Päivitä",
"actions": "Toimintoja",
"active": "Aktiivinen",
"activity": "Aktiviteetti",
@@ -13,6 +14,7 @@
"add_a_location": "Lisää sijainti",
"add_a_name": "Lisää nimi",
"add_a_title": "Lisää otsikko",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Lisää poissulkemismalli",
"add_import_path": "Lisää tuontipolku",
"add_location": "Lisää sijainti",
@@ -22,6 +24,8 @@
"add_photos": "Lisää kuvia",
"add_to": "Lisää…",
"add_to_album": "Lisää albumiin",
"add_to_album_bottom_sheet_added": "Lisätty albumiin {album}",
"add_to_album_bottom_sheet_already_exists": "Kohde on jo albumissa {album}",
"add_to_shared_album": "Lisää jaettuun albumiin",
"add_url": "Lisää URL",
"added_to_archive": "Arkistoitu",
@@ -159,7 +163,6 @@
"no_pattern_added": "Kaavoja ei lisättynä",
"note_apply_storage_label_previous_assets": "Huom: Asettaaksesi nimikkeen aiemmin ladatulle aineistolle, aja",
"note_cannot_be_changed_later": "Huom: Tätä ei voi enää myöhemmin vaihtaa!",
"note_unlimited_quota": "Huom: Määritä 0 rajoittamattomaksi kiintiöksi",
"notification_email_from_address": "Lähettäjän osoite",
"notification_email_from_address_description": "Lähettäjän sähköpostiosoite. Esimerkiksi \"Immich-kuvapalvelin <noreply@example.com>\"",
"notification_email_host_description": "Sähköpostipalvelin (esim. smtp.immich.app)",
@@ -360,6 +363,16 @@
"admin_password": "Ylläpitäjän salasana",
"administration": "Ylläpito",
"advanced": "Edistyneet",
"advanced_settings_log_level_title": "Lokitaso: {}",
"advanced_settings_prefer_remote_subtitle": "Jotkut laitteet ovat erittäin hitaita lataamaan esikatselukuvia laitteen kohteista. Aktivoi tämä asetus käyttääksesi etäkuvia.",
"advanced_settings_prefer_remote_title": "Suosi etäkuvia",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Ohita SSL sertifikaattivarmennus palvelimen päätepisteellä. Vaaditaan self-signed -sertifikaateissa.",
"advanced_settings_self_signed_ssl_title": "Salli self-signed SSL -sertifikaatit",
"advanced_settings_tile_subtitle": "Edistyneen käyttäjän asetukset",
"advanced_settings_troubleshooting_subtitle": "Ota vianetsinnän lisäominaisuudet käyttöön",
"advanced_settings_troubleshooting_title": "Vianetsintä",
"age_months": "Ikä {months, plural, one {# kuukausi} other {# kuukautta}}",
"age_year_months": "Ikä 1 vuosi, {months, plural, one {# kuukausi} other {# kuukautta}}",
"age_years": "{years, plural, other {Ikä #v}}",
@@ -368,6 +381,8 @@
"album_cover_updated": "Albumin kansikuva päivitetty",
"album_delete_confirmation": "Haluatko varmasti poistaa albumin {album}?",
"album_delete_confirmation_description": "Jos albumi on jaettu, muut eivät pääse siihen enää.",
"album_info_card_backup_album_excluded": "JÄTETTY POIS",
"album_info_card_backup_album_included": "SISÄLLYTETTY",
"album_info_updated": "Albumin tiedot päivitetty",
"album_leave": "Poistu albumista?",
"album_leave_confirmation": "Haluatko varmasti poistua albumista {album}?",
@@ -376,10 +391,22 @@
"album_remove_user": "Poista käyttäjä?",
"album_remove_user_confirmation": "Oletko varma että haluat poistaa {user}?",
"album_share_no_users": "Näyttää että olet jakanut tämän albumin kaikkien kanssa, tai sinulla ei ole käyttäjiä joille jakaa.",
"album_thumbnail_card_item": "1 kohde",
"album_thumbnail_card_items": "{} kohdetta",
"album_thumbnail_card_shared": "Jaettu",
"album_thumbnail_shared_by": "Jakanut {}",
"album_updated": "Albumi päivitetty",
"album_updated_setting_description": "Saa sähköpostia kun jaetussa albumissa on uutta sisältöä",
"album_user_left": "Poistuttiin albumista {album}",
"album_user_removed": "{user} poistettu",
"album_viewer_appbar_delete_confirm": "Haluatko varmast poistaa tämän albumin tililtäsi?",
"album_viewer_appbar_share_err_delete": "Albumin poistaminen epäonnistui",
"album_viewer_appbar_share_err_leave": "Albumista poistuminen epäonnistui",
"album_viewer_appbar_share_err_remove": "Ongelmia kohteiden poistamisessa albumista",
"album_viewer_appbar_share_err_title": "Albumin nimen muuttaminen epäonnistui",
"album_viewer_appbar_share_leave": "Poistu albumista",
"album_viewer_appbar_share_to": "Jaa",
"album_viewer_page_share_add_users": "Lisää käyttäjiä",
"album_with_link_access": "Anna kenen tahansa nähdä linkin kautta tämän albumin valokuvat ja henkilöt.",
"albums": "Albumit",
"albums_count": "{count, plural, one {{count, number} albumi} other {{count, number} albumia}}",
@@ -396,42 +423,133 @@
"api_key_description": "Tämä arvo näytetään vain kerran. Varmista, että olet kopioinut sen ennen kuin suljet ikkunan.",
"api_key_empty": "API-avaimesi ei pitäisi olla tyhjä",
"api_keys": "API-avaimet",
"app_bar_signout_dialog_content": "Haluatko varmasti kirjautua ulos?",
"app_bar_signout_dialog_ok": "Kyllä",
"app_bar_signout_dialog_title": "Kirjaudu ulos",
"app_settings": "Sovellusasetukset",
"appears_in": "Esiintyy albumeissa",
"archive": "Arkisto",
"archive_or_unarchive_photo": "Arkistoi kuva tai palauta arkistosta",
"archive_page_no_archived_assets": "Arkistoituja kohteita ei löytynyt",
"archive_page_title": "Arkisto ({})",
"archive_size": "Arkiston koko",
"archive_size_description": "Määritä arkiston koko latauksissa (Gt)",
"archived": "Archived",
"archived_count": "{count, plural, other {Arkistoitu #}}",
"are_these_the_same_person": "Ovatko he sama henkilö?",
"are_you_sure_to_do_this": "Haluatko varmasti tehdä tämän?",
"asset_action_delete_err_read_only": "Vain luku-tilassa olevia kohteita ei voitu poistaa, ohitetaan",
"asset_action_share_err_offline": "Verkottomassa tilassa olevia kohteita ei voitu noutaa, ohitetaan",
"asset_added_to_album": "Lisätty albumiin",
"asset_adding_to_album": "Lisätään albumiin…",
"asset_description_updated": "Kohteen kuvaus on päivitetty",
"asset_filename_is_offline": "Kohde {filename} on offline-tilassa",
"asset_has_unassigned_faces": "Kohteella on määrittämättömiä kasvoja",
"asset_hashing": "Hajautetaan…",
"asset_list_group_by_sub_title": "Ryhmittele",
"asset_list_layout_settings_dynamic_layout_title": "Dynaaminen asetelma",
"asset_list_layout_settings_group_automatically": "Automaattisesti",
"asset_list_layout_settings_group_by": "Ryhmittele",
"asset_list_layout_settings_group_by_month_day": "Kuukauden ja päivän mukaan",
"asset_list_layout_sub_title": "Asettelu",
"asset_list_settings_subtitle": "Kuvaruudukon asettelu",
"asset_list_settings_title": "Kuvaruudukko",
"asset_offline": "Aineisto offline-tilassa",
"asset_offline_description": "Tätä ulkoista resurssia ei enää löydy levyltä. Ole hyvä ja ota yhteyttä Immich-järjestelmänvalvojaan saadaksesi apua.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "Ohitettu",
"asset_skipped_in_trash": "Roskakorissa",
"asset_uploaded": "Lähetetty",
"asset_uploading": "Lähetetään…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Katselin",
"assets": "kohdetta",
"assets_added_count": "Lisätty {count, plural, one {# kohde} other {# kohdetta}}",
"assets_added_to_album_count": "Albumiin lisätty {count, plural, one {# kohde} other {# kohdetta}}",
"assets_added_to_name_count": "Lisätty {count, plural, one {# kohde} other {# kohdetta}} {hasName, select, true {<b>{name}</b>} other {uuteen albumiin}}",
"assets_count": "{count, plural, one {# media} other {# mediaa}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "Siirretty {count, plural, one {# media} other {# mediaa}} roskakoriin",
"assets_permanently_deleted_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
"assets_removed_count": "{count, plural, one {# media} other {# mediaa}} poistettu",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "Haluatko varmasti palauttaa kaikki roskakoriisi siirretyt resurssit? Tätä toimintoa ei voi peruuttaa! Huomaa, että offline-resursseja ei voida palauttaa tällä tavalla.",
"assets_restored_count": "{count, plural, one {# media} other {# mediaa}} palautettu",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "{count, plural, one {# media} other {# mediaa}} siirretty roskakoriin",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Media oli} other {Mediat olivat}} jo albumissa",
"authorized_devices": "Valtuutetut laitteet",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Takaisin",
"back_close_deselect": "Palaa, sulje tai poista valinnat",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Laitteen albumit ({})",
"backup_album_selection_page_albums_tap": "Napauta sisällyttääksesi, kaksoisnapauta jättääksesi pois",
"backup_album_selection_page_assets_scatter": "Kohteet voivat olla hajaantuneina useisiin albumeihin. Albumeita voidaan sisällyttää varmuuskopiointiin tai jättää siitä pois.",
"backup_album_selection_page_select_albums": "Valitse albumit",
"backup_album_selection_page_selection_info": "Valintatiedot",
"backup_album_selection_page_total_assets": "Uniikkeja kohteita yhteensä",
"backup_all": "Kaikki",
"backup_background_service_backup_failed_message": "Kohteiden varmuuskopiointi epäonnistui. Yritetään uudelleen...",
"backup_background_service_connection_failed_message": "Palvelimeen ei saatu yhteyttä. Yritetään uudelleen...",
"backup_background_service_current_upload_notification": "Lähetetään {}",
"backup_background_service_default_notification": "Tarkistetaan uusia kohteita...",
"backup_background_service_error_title": "Virhe varmuuskopioinnissa",
"backup_background_service_in_progress_notification": "Varmuuskopioidaan kohteita...",
"backup_background_service_upload_failure_notification": "Lähetys palvelimelle epäonnistui {}",
"backup_controller_page_albums": "Varmuuskopioi albumit",
"backup_controller_page_background_app_refresh_disabled_content": "Salli sovelluksen päivittäminen taustalla suorittaaksesi varmuuskopiointia taustalla: Asetukset > Yleiset > Appien päivitys taustalla",
"backup_controller_page_background_app_refresh_disabled_title": "Sovelluksen päivittäminen taustalla on pois päältä",
"backup_controller_page_background_app_refresh_enable_button_text": "Siirry asetuksiin",
"backup_controller_page_background_battery_info_link": "Näytä minulle miten",
"backup_controller_page_background_battery_info_message": "Kytke pois päältä kaikki Immichin taustatyöskentelyyn liittyvät akun optimoinnit, jotta varmistat taustavarmuuskopioinnin parhaan mahdollisen toiminnan.\n\nKoska tämä on laitekohtaista, tarkista tarvittavat toimet laitevalmistajan ohjeista.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Akun optimointi",
"backup_controller_page_background_charging": "Vain laitteen ollessa kytkettynä laturiin",
"backup_controller_page_background_configure_error": "Taustapalvelun asettaminen epäonnistui",
"backup_controller_page_background_delay": "Viivästytä uusien kohteiden varmuuskopiointia: {}",
"backup_controller_page_background_description": "Kytke taustapalvelu päälle varmuuskopioidaksesi uudet kohteet automaattisesti, ilman sovelluksen avaamista",
"backup_controller_page_background_is_off": "Automaattinen varmuuskopiointi taustalla on pois päältä",
"backup_controller_page_background_is_on": "Automaattinen varmuuskopiointi taustalla on päällä",
"backup_controller_page_background_turn_off": "Kytke taustapalvelu pois päältä",
"backup_controller_page_background_turn_on": "Kytke taustapalvelu päälle",
"backup_controller_page_background_wifi": "Vain WiFi-verkossa",
"backup_controller_page_backup": "Varmuuskopiointi",
"backup_controller_page_backup_selected": "Valittu: ",
"backup_controller_page_backup_sub": "Varmuuskopioidut kuvat ja videot",
"backup_controller_page_created": "Luotu: {}",
"backup_controller_page_desc_backup": "Kytke varmuuskopiointi päälle lähettääksesi uudet kohteet palvelimelle automaattisesti.",
"backup_controller_page_excluded": "Jätetty pois: ",
"backup_controller_page_failed": "Epäonnistui ({})",
"backup_controller_page_filename": "Tiedoston nimi: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Varmuuskopioinnin tiedot",
"backup_controller_page_none_selected": "Ei mitään",
"backup_controller_page_remainder": "Jäljellä",
"backup_controller_page_remainder_sub": "Varmuuskopiointia odottavat kuvat ja videot",
"backup_controller_page_server_storage": "Palvelimen tallennustila",
"backup_controller_page_start_backup": "Aloita varmuuskopiointi",
"backup_controller_page_status_off": "Varmuuskopiointi on pois päältä",
"backup_controller_page_status_on": "Varmuuskopiointi on päällä",
"backup_controller_page_storage_format": "{} / {} käytetty",
"backup_controller_page_to_backup": "Varmuuskopioitavat albumit",
"backup_controller_page_total_sub": "Kaikki uniikit kuvat ja videot valituista albumeista",
"backup_controller_page_turn_off": "Varmuuskopiointi pois päältä",
"backup_controller_page_turn_on": "Varmuuskopiointi päälle",
"backup_controller_page_uploading_file_info": "Tiedostojen lähetystiedot",
"backup_err_only_album": "Vähintään yhden albumin tulee olla valittuna",
"backup_info_card_assets": "kohdetta",
"backup_manual_cancelled": "Peruutettu",
"backup_manual_in_progress": "Lähetys palvelimelle on jo käynnissä. Kokeile uudelleen hetken kuluttua.",
"backup_manual_success": "Onnistui",
"backup_manual_title": "Lähetyksen tila",
"backup_options_page_title": "Varmuuskopioinnin asetukset",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "Taaksepäin",
"birthdate_saved": "Syntymäaika tallennettu",
"birthdate_set_description": "Syntymäaikaa käytetään laskemaan henkilön ikä kuvanottohetkellä.",
@@ -443,24 +561,52 @@
"bulk_keep_duplicates_confirmation": "Haluatko varmasti säilyttää {count, plural, one {# kaksoiskappaleen} other {# kaksoiskappaleet}}? Tämä merkitsee kaikki kaksoiskappaleet ratkaistuiksi, eikä poista mitään.",
"bulk_trash_duplicates_confirmation": "Haluatko varmasti siirtää {count, plural, one {# kaksoiskappaleen} other {# kaksoiskappaleet}} roskakoriin? Tämä säilyttää kustakin mediasta kookkaimman ja siirtää loput roskakoriin.",
"buy": "Osta lisenssi Immich:iin",
"cache_settings_album_thumbnails": "Kirjastosivun esikatselukuvat ({} kohdetta)",
"cache_settings_clear_cache_button": "Tyhjennä välimuisti",
"cache_settings_clear_cache_button_title": "Tyhjennä sovelluksen välimuisti. Tämä vaikuttaa merkittävästi sovelluksen suorituskykyyn, kunnes välimuisti on rakennettu uudelleen.",
"cache_settings_duplicated_assets_clear_button": "Tyhjennä",
"cache_settings_duplicated_assets_subtitle": "Sovelluksen mustalle listalle merkitsemät valokuvat ja videot",
"cache_settings_duplicated_assets_title": "Kaksoiskappaleet ({})",
"cache_settings_image_cache_size": "Kuvien välimuistin koko ({} kohdetta)",
"cache_settings_statistics_album": "Kirjaston esikatselukuvat",
"cache_settings_statistics_assets": "{} kohdetta ({})",
"cache_settings_statistics_full": "Täysikokoiset kuvat",
"cache_settings_statistics_shared": "Jaettujen albumien esikatselukuvat",
"cache_settings_statistics_thumbnail": "Esikatselukuvat",
"cache_settings_statistics_title": "Välimuistin käyttö",
"cache_settings_subtitle": "Hallitse Immich-mobiilisovelluksen välimuistin käyttöä",
"cache_settings_thumbnail_size": "Esikatselukuvien välimuistin koko ({} kohdetta)",
"cache_settings_tile_subtitle": "Hallitse paikallista tallenustilaa",
"cache_settings_tile_title": "Paikallinen tallennustila",
"cache_settings_title": "Välimuistin asetukset",
"camera": "Kamera",
"camera_brand": "Kameran merkki",
"camera_model": "Kameran malli",
"cancel": "Peruuta",
"cancel_search": "Peru haku",
"canceled": "Canceled",
"cannot_merge_people": "Ihmisiä ei voitu yhdistää",
"cannot_undo_this_action": "Et voi perua tätä toimintoa!",
"cannot_update_the_description": "Kuvausta ei voi päivittää",
"change_date": "Vaihda päiväys",
"change_display_order": "Change display order",
"change_expiration_time": "Muuta erääntymisaikaa",
"change_location": "Vaihda sijainti",
"change_name": "Vaihda nimi",
"change_name_successfully": "Nimi vaihdettu",
"change_password": "Vaihda Salasana",
"change_password_description": "Tämä on joko ensimmäinen kertasi kun kirjaudut järjestelmään, tai salasanasi on pyydetty vaihtamaan. Määritä uusi salasana alle.",
"change_password_form_confirm_password": "Vahvista salasana",
"change_password_form_description": "Hei {name},\n\nTämä on joko ensimmäinen kirjautumisesi järjestelmään tai salasanan vaihtaminen vaihtaminen on pakotettu. Ole hyvä ja syötä uusi salasana alle.",
"change_password_form_new_password": "Uusi salasana",
"change_password_form_password_mismatch": "Salasanat eivät täsmää",
"change_password_form_reenter_new_password": "Uusi salasana uudelleen",
"change_your_password": "Vaihda salasanasi",
"changed_visibility_successfully": "Näkyvyys vaihdettu",
"check_all": "Valitse kaikki",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "Katso lokeja",
"choose_matching_people_to_merge": "Valitse henkilöt joka yhdistetään",
"city": "Kaupunki",
@@ -469,6 +615,14 @@
"clear_all_recent_searches": "Tyhjennä viimeisimmät haut",
"clear_message": "Tyhjennä viesti",
"clear_value": "Tyhjää arvo",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "Myötäpäivään",
"close": "Sulje",
"collapse": "Supista",
@@ -479,6 +633,9 @@
"comment_options": "Kommentin valinnat",
"comments_and_likes": "Kommentit ja tykkäykset",
"comments_are_disabled": "Kommentointi ei käytössä",
"common_create_new_album": "Luo uusi albumi",
"common_server_error": "Tarkista internet-yhteytesi. Varmista että palvelin on saavutettavissa ja sovellus-/palvelinversiot ovat yhteensopivia.",
"completed": "Completed",
"confirm": "Vahvista",
"confirm_admin_password": "Vahvista ylläpitäjän salasana",
"confirm_delete_shared_link": "Haluatko varmasti poistaa tämän jaetun linkin?",
@@ -487,6 +644,15 @@
"contain": "Mahduta",
"context": "Konteksti",
"continue": "Jatka",
"control_bottom_app_bar_album_info_shared": "{} kohdetta · Jaettu",
"control_bottom_app_bar_create_new_album": "Luo uusi albumi",
"control_bottom_app_bar_delete_from_immich": "Poista Immichistä",
"control_bottom_app_bar_delete_from_local": "Poista laitteelta",
"control_bottom_app_bar_edit_location": "Muokkaa sijaintia",
"control_bottom_app_bar_edit_time": "Muokkaa aikaa",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Jaa",
"control_bottom_app_bar_trash_from_immich": "Siirrä roskakoriin",
"copied_image_to_clipboard": "Kuva kopioitu leikepöydälle.",
"copied_to_clipboard": "Kopioitu leikepöydälle!",
"copy_error": "Kopiointivirhe",
@@ -501,24 +667,34 @@
"covers": "Kannet",
"create": "Luo",
"create_album": "Luo albumi",
"create_album_page_untitled": "Nimetön",
"create_library": "Luo uusi kirjasto",
"create_link": "Luo linkki",
"create_link_to_share": "Luo linkki jaettavaksi",
"create_link_to_share_description": "Salli kaikkien linkin saaneiden nähdä valitut kuvat",
"create_new": "CREATE NEW",
"create_new_person": "Luo uusi henkilö",
"create_new_person_hint": "Määritä valitut mediat uudelle henkilölle",
"create_new_user": "Luo uusi käyttäjä",
"create_shared_album_page_share_add_assets": "LISÄÄ KOHTEITA",
"create_shared_album_page_share_select_photos": "Valitse kuvat",
"create_tag": "Luo tunniste",
"create_tag_description": "Luo uusi tunniste. Sisäkkäisiä tunnisteita varten syötä tunnisteen täydellinen polku kauttaviivat mukaan luettuna.",
"create_user": "Luo käyttäjä",
"created": "Luotu",
"crop": "Crop",
"curated_object_page_title": "Asiat",
"current_device": "Nykyinen laite",
"current_server_address": "Current server address",
"custom_locale": "Muokatut maa-asetukset",
"custom_locale_description": "Muotoile päivämäärät ja numerot perustuen alueen kieleen",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Tumma",
"date_after": "Päivämäärän jälkeen",
"date_and_time": "Päivämäärä ja aika",
"date_before": "Päivä ennen",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Syntymäaika tallennettu",
"date_range": "Päivämäärän rajaus",
"day": "Päivä",
@@ -532,18 +708,29 @@
"delete": "Poista",
"delete_album": "Poista albumi",
"delete_api_key_prompt": "Haluatko varmasti poistaa tämän API-avaimen?",
"delete_dialog_alert": "Nämä kohteet poistetaan pysyvästi Immich:stä ja laitteeltasi",
"delete_dialog_alert_local": "Kohteet poistetaan pysyvästi laitteelta, mutta ovat saatavilla Immich-palvelimella",
"delete_dialog_alert_local_non_backed_up": "Joitain kohteista ei ole varmuuskopioitu Immichiin ja ne poistetaan laitteelta pysyvästi",
"delete_dialog_alert_remote": "Kohteet poistetaan pysyvästi Immich-palvelimelta",
"delete_dialog_ok_force": "Poista kuitenkin",
"delete_dialog_title": "Poista pysyvästi",
"delete_duplicates_confirmation": "Haluatko varmasti poistaa nämä kaksoiskappaleet pysyvästi?",
"delete_key": "Poista avain",
"delete_library": "Poista kirjasto",
"delete_link": "Poista linkki",
"delete_local_dialog_ok_backed_up_only": "Poista vain varmuuskopioidut",
"delete_local_dialog_ok_force": "Poista kuitenkin",
"delete_others": "Poista muut",
"delete_shared_link": "Poista jaettu linkki",
"delete_shared_link_dialog_title": "Poista jaettu linkki",
"delete_tag": "Poista tunniste",
"delete_tag_confirmation_prompt": "Haluatko varmasti poistaa tunnisteen {tagName}?",
"delete_user": "Poista käyttäjä",
"deleted_shared_link": "Jaettu linkki poistettu",
"deletes_missing_assets": "Poistaa levyltä puuttuvat resurssit",
"description": "Kuvaus",
"description_input_hint_text": "Lisää kuvaus...",
"description_input_submit_error": "Virhe kuvauksen päivittämisessä, tarkista lisätiedot lokista",
"details": "TIEDOT",
"direction": "Suunta",
"disabled": "Poistettu käytöstä",
@@ -560,12 +747,26 @@
"documentation": "Dokumentaatio",
"done": "Valmis",
"download": "Lataa",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "Upotetut videot",
"download_include_embedded_motion_videos_description": "Sisällytä liikekuviin upotetut videot erillisinä tiedostoina",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Lataukset",
"download_settings_description": "Hallitse aineiston lataukseen liittyviä asetuksia",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "Ladataan",
"downloading_asset_filename": "Ladataan mediaa {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "Pudota tiedostot mihin tahansa ladataksesi ne",
"duplicates": "Kaksoiskappaleet",
"duplicates_description": "Selvitä jokaisen kohdalla mitkä (jos yksikään) ovat kaksoiskappaleita",
@@ -582,6 +783,7 @@
"edit_key": "Muokkaa avainta",
"edit_link": "Muokkaa linkkiä",
"edit_location": "Muokkaa sijaintia",
"edit_location_dialog_title": "Sijainti",
"edit_name": "Muokkaa nimeä",
"edit_people": "Muokkaa henkilöitä",
"edit_tag": "Muokkaa tunnistetta",
@@ -594,13 +796,18 @@
"editor_crop_tool_h2_aspect_ratios": "Kuvasuhteet",
"editor_crop_tool_h2_rotation": "Rotaatio",
"email": "Sähköposti",
"empty_folder": "This folder is empty",
"empty_trash": "Tyhjennä roskakori",
"empty_trash_confirmation": "Haluatko varmasti tyhjentää roskakorin? Tämä poistaa pysyvästi kaikki tiedostot Immich:stä.\nToimintoa ei voi perua!",
"enable": "Ota käyttöön",
"enabled": "Käytössä",
"end_date": "Päättymispäivä",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "Virhe",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "Kuvan lataus ei onnistunut",
"error_saving_image": "Error: {}",
"error_title": "Virhe - Jotain meni pieleen",
"errors": {
"cannot_navigate_next_asset": "Seuraavaan mediaan ei voi siirtyä",
@@ -729,8 +936,21 @@
"unable_to_upload_file": "Tiedostoa ei voitu ladata"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Lisää kuvaus…",
"exif_bottom_sheet_details": "TIEDOT",
"exif_bottom_sheet_location": "SIJAINTI",
"exif_bottom_sheet_people": "IHMISET",
"exif_bottom_sheet_person_add_person": "Lisää nimi",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Poistu diaesityksestä",
"expand_all": "Laajenna kaikki",
"experimental_settings_new_asset_list_subtitle": "Työn alla",
"experimental_settings_new_asset_list_title": "Ota käyttöön kokeellinen kuvaruudukko",
"experimental_settings_subtitle": "Käyttö omalla vastuulla!",
"experimental_settings_title": "Kokeellinen",
"expire_after": "Umpeutuu",
"expired": "Voimassaolo päättynyt",
"expires_date": "Vanhenee {date}",
@@ -741,11 +961,16 @@
"extension": "Tiedostopääte",
"external": "Ulkoisesta",
"external_libraries": "Ulkoiset kirjastot",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Ei määritelty",
"failed": "Failed",
"failed_to_load_assets": "Kohteiden lataus epäonnistui",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Suosikki",
"favorite_or_unfavorite_photo": "Suosikki- tai ei-suosikkikuva",
"favorites": "Suosikit",
"favorites_page_no_favorites": "Suosikkikohteita ei löytynyt",
"feature_photo_updated": "Kansikuva ladattu",
"features": "Ominaisuudet",
"features_setting_description": "Hallitse sovelluksen ominaisuuksia",
@@ -753,25 +978,38 @@
"file_name_or_extension": "Tiedostonimi tai tiedostopääte",
"filename": "Tiedostonimi",
"filetype": "Tiedostotyyppi",
"filter": "Filter",
"filter_people": "Suodata henkilöt",
"find_them_fast": "Löydä nopeasti hakemalla nimellä",
"fix_incorrect_match": "Korjaa virheellinen osuma",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Kansiot",
"folders_feature_description": "Käytetään kansionäkymää valokuvien ja videoiden selaamiseen järjestelmässä",
"forward": "Eteenpäin",
"general": "Yleinen",
"get_help": "Hae apua",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "Aloittaminen",
"go_back": "Palaa",
"go_to_folder": "Mene kansioon",
"go_to_search": "Siirry hakuun",
"grant_permission": "Grant permission",
"group_albums_by": "Ryhmitä albumi...",
"group_country": "Ryhmitä maan mukaan",
"group_no": "Ei ryhmitystä",
"group_owner": "Ryhmitä omistajan mukaan",
"group_places_by": "Ryhmitä paikat...",
"group_year": "Ryhmitä vuoden mukaan",
"haptic_feedback_switch": "Ota haptinen palaute käyttöön",
"haptic_feedback_title": "Haptinen palaute",
"has_quota": "On kiintiö",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Hei {name} ({email})",
"hide_all_people": "Piilota kaikki henkilöt",
"hide_gallery": "Piilota galleria",
@@ -779,8 +1017,24 @@
"hide_password": "Piilota salasana",
"hide_person": "Piilota henkilö",
"hide_unnamed_people": "Piilota nimeämättömät henkilöt",
"home_page_add_to_album_conflicts": "Lisätty {added} kohdetta albumiin {album}. {failed} kohdetta on jo albumissa.",
"home_page_add_to_album_err_local": "Paikallisten kohteiden lisääminen albumeihin ei ole mahdollista, ohitetaan",
"home_page_add_to_album_success": "Lisätty {added} kohdetta albumiin {album}.",
"home_page_album_err_partner": "Kumppanin kohteita ei voi vielä lisätä albumiin. Hypätään yli",
"home_page_archive_err_local": "Paikallisten kohteiden arkistointi ei ole mahdollista, ohitetaan",
"home_page_archive_err_partner": "Kumppanin kohteita ei voi arkistoida. Hypätään yli",
"home_page_building_timeline": "Rakennetaan aikajanaa",
"home_page_delete_err_partner": "Kumppanin kohteita ei voi poistaa.Hypätään yli",
"home_page_delete_remote_err_local": "Paikallisia kohteita etäkohdevalintojen joukossa, ohitetaan",
"home_page_favorite_err_local": "Paikallisten kohteiden lisääminen suosikkeihin ei ole mahdollista, ohitetaan",
"home_page_favorite_err_partner": "Kumppanin kohteita ei voi vielä merkitä suosikiksi. Hypätään yli",
"home_page_first_time_notice": "Jos käytät sovellusta ensimmäistä kertaa, muista valita varmuuskopioitavat albumi(t), jotta aikajanalla voi olla kuvia ja videoita.",
"home_page_share_err_local": "Paikallisia kohteita ei voitu jakaa linkkien avulla. Hypätään yli",
"home_page_upload_err_limit": "Voit lähettää palvelimelle enintään 30 kohdetta kerrallaan, ohitetaan",
"host": "Isäntä",
"hour": "Tunti",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Kuva",
"image_alt_text_date": "{isVideo, select, true {Video} other {Kuva}} otettu {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Kuva}} otettu {person1} kanssa {date}",
@@ -792,6 +1046,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n ja {person2}n kanssa {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {person3}n kanssa {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Kuva}} otettu {city}ssä, {country}ssä {person1}n, {person2}n ja {additionalCount, number} muun kanssa {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Lataaminen aloitettu",
"image_viewer_page_state_provider_download_success": "Lataus onnistui",
"image_viewer_page_state_provider_share_error": "Jakovirhe",
"immich_logo": "Immich-logo",
"immich_web_interface": "Immich-verkkokäyttöliittymä",
"import_from_json": "Tuo JSON-tiedostosta",
@@ -810,6 +1068,8 @@
"night_at_midnight": "Joka yö keskiyöllä",
"night_at_twoam": "Joka yö klo 02:00"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Kutsu ihmisiä",
"invite_to_album": "Kutsu albumiin",
"items_count": "{count, plural, one {# kpl} other {# kpl}}",
@@ -829,6 +1089,12 @@
"level": "Taso",
"library": "Kirjasto",
"library_options": "Kirjastovaihtoehdot",
"library_page_device_albums": "Laitteen albumit",
"library_page_new_album": "Uusi albumi",
"library_page_sort_asset_count": "Kohteiden lukumäärä",
"library_page_sort_created": "Viimeisin luotu",
"library_page_sort_last_modified": "Viimeksi muokattu",
"library_page_sort_title": "Albumin otsikko",
"light": "Vaalea",
"like_deleted": "Tykkäys poistettu",
"link_motion_video": "Linkitä liikevideo",
@@ -838,12 +1104,42 @@
"list": "Lista",
"loading": "Ladataan",
"loading_search_results_failed": "Hakutulosten lataaminen epäonnistui",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Valitse kartalta",
"location_picker_latitude_error": "Lisää kelvollinen leveysaste",
"location_picker_latitude_hint": "Syötä leveysaste",
"location_picker_longitude_error": "Lisää kelvollinen pituusaste",
"location_picker_longitude_hint": "Syötä pituusaste",
"log_out": "Kirjaudu ulos",
"log_out_all_devices": "Kirjaudu ulos kaikilta laitteilta",
"logged_out_all_devices": "Kaikki laitteet kirjattu ulos",
"logged_out_device": "Laite kirjattu ulos",
"login": "Kirjaudu",
"login_disabled": "Kirjautuminen on poistettu käytöstä",
"login_form_api_exception": "API-virhe. Tarkista palvelimen URL-osoite ja yritä uudelleen.",
"login_form_back_button_text": "Takaisin",
"login_form_email_hint": "sahkopostisi@esimerkki.fi",
"login_form_endpoint_hint": "http://palvelimesi-osoite:portti",
"login_form_endpoint_url": "Palvelimen URL",
"login_form_err_http": "Lisää http:// tai https://",
"login_form_err_invalid_email": "Virheellinen sähköpostiosoite",
"login_form_err_invalid_url": "Virheellinen URL",
"login_form_err_leading_whitespace": "Alussa välilyönti",
"login_form_err_trailing_whitespace": "Lopussa välilyönti",
"login_form_failed_get_oauth_server_config": "Virhe kirjauduttaessa OAuth:lla, tarkista palvelimen URL",
"login_form_failed_get_oauth_server_disable": "OAuth-ominaisuus ei ole käytössä tällä palvelimella",
"login_form_failed_login": "Virhe kirjautumisessa. Tarkista palvelimen URL, sähköpostiosoite ja salasana.",
"login_form_handshake_exception": "Tapahtui poikkeus kättelyssä palvelimen kanssa. Kytke päälle self-signed -sertifikaattituki asetuksista, mikäli käytät self-signed -sertifikaatteja.",
"login_form_password_hint": "salasana",
"login_form_save_login": "Pysy kirjautuneena",
"login_form_server_empty": "Syötä palvelimen URL-osoite.",
"login_form_server_error": "Palvelimeen ei saatu yhteyttä.",
"login_has_been_disabled": "Kirjautuminen on otettu pois käytöstä.",
"login_password_changed_error": "Salasanan päivityksessä tapahtui virhe",
"login_password_changed_success": "Salasan päivitetty onnistuneesti",
"logout_all_device_confirmation": "Haluatko varmasti kirjautua ulos kaikilta laitteilta?",
"logout_this_device_confirmation": "Haluatko varmasti kirjautua ulos näiltä laitteilta?",
"longitude": "Pituusaste",
@@ -860,13 +1156,40 @@
"manage_your_devices": "Hallitse sisäänkirjautuneita laitteitasi",
"manage_your_oauth_connection": "Hallitse OAuth-yhteyttäsi",
"map": "Kartta",
"map_assets_in_bound": "{} kuva",
"map_assets_in_bounds": "{} kuvaa",
"map_cannot_get_user_location": "Käyttäjän sijaintia ei voitu määrittää",
"map_location_dialog_yes": "Kyllä",
"map_location_picker_page_use_location": "Käytä tätä sijaintia",
"map_location_service_disabled_content": "Paikannuspalvelun pitää olla kytkettynä päälle, jotta nykyisen sijaintisi kohteita voidaan näyttää. Haluatko kytkeä sen päälle nyt?",
"map_location_service_disabled_title": "Paikannuspalvelu pois päältä",
"map_marker_for_images": "Karttamarkerointi kuville, jotka on otettu kaupungissa {city}, maassa {country}",
"map_marker_with_image": "Karttamarkerointi kuvalla",
"map_no_assets_in_bounds": "Ei kuvia tällä alueella",
"map_no_location_permission_content": "Paikannuslupa tarvitaan, jotta nykyisen sijainnin kohteita voidaan näyttää. Haluatko sallia pääsyn sijaintiin?",
"map_no_location_permission_title": "Paikannuslupa estetty",
"map_settings": "Kartta-asetukset",
"map_settings_dark_mode": "Tumma tila",
"map_settings_date_range_option_day": "Viimeiset 24 tuntia",
"map_settings_date_range_option_days": "Viimeiset {} päivää",
"map_settings_date_range_option_year": "Viimeisin vuosi",
"map_settings_date_range_option_years": "Viimeiset {} vuotta",
"map_settings_dialog_title": "Kartta-asetukset",
"map_settings_include_show_archived": "Sisällytä arkistoidut",
"map_settings_include_show_partners": "Sisällytä kumppanit",
"map_settings_only_show_favorites": "Näytä vain suosikit",
"map_settings_theme_settings": "Kartan teema",
"map_zoom_to_see_photos": "Tarkenna nähdäksesi kuvat",
"matches": "Osumia",
"media_type": "Median tyyppi",
"memories": "Muistoja",
"memories_all_caught_up": "Kaikki ajan tasalla",
"memories_check_back_tomorrow": "Palaa huomenna nähdäskesi lisää muistoja",
"memories_setting_description": "Hallitse mitä näet muistoissasi",
"memories_start_over": "Aloita alusta",
"memories_swipe_to_close": "Pyyhkäise ylös sulkeaksesi",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Muisto",
"memory_lane_title": "Muistojen polku {title}",
"menu": "Valikko",
@@ -881,11 +1204,16 @@
"missing": "Puuttuu",
"model": "Malli",
"month": "Kuukauden mukaan",
"monthly_title_text_date_format": "MMMM y",
"more": "Enemmän",
"moved_to_trash": "Siirretty roskakoriin",
"multiselect_grid_edit_date_time_err_read_only": "Vain luku -tilassa olevien kohteiden päivämäärää ei voitu muokata, ohitetaan",
"multiselect_grid_edit_gps_err_read_only": "Vain luku-tilassa olevien kohteiden sijantitietoja ei voitu muokata, ohitetaan",
"my_albums": "Albumini",
"name": "Nimi",
"name_or_nickname": "Nimi tai lempinimi",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "ei koskaan",
"new_album": "Uusi Albumi",
"new_api_key": "Uusi API-avain",
@@ -902,6 +1230,7 @@
"no_albums_yet": "Näyttää siltä, ettei sinulla ole vielä yhtään albumia.",
"no_archived_assets_message": "Arkistoi kuvia ja videoita piilottaaksesi ne kuvat näkymästä",
"no_assets_message": "NAPAUTA LATAAKSESI ENSIMMÄISEN KUVASI",
"no_assets_to_show": "Ei näytettäviä kohteita",
"no_duplicates_found": "Kaksoiskappaleita ei löytynyt.",
"no_exif_info_available": "EXIF-tietoa ei saatavilla",
"no_explore_results_message": "Lataa lisää kuvia tutkiaksesi kokoelmaasi.",
@@ -913,9 +1242,13 @@
"no_results_description": "Kokeile synonyymiä tai yleisempää avainsanaa",
"no_shared_albums_message": "Luo albumi, jotta voit jakaa kuvia ja videoita toisille",
"not_in_any_album": "Ei yhdessäkään albumissa",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Huom: Jotta voit soveltaa tallennustunnistetta aiemmin ladattuihin kohteisiin, suorita",
"note_unlimited_quota": "Huomio: Syötä 0 rajoittamatonta kiintiötä varten",
"notes": "Muistiinpanot",
"notification_permission_dialog_content": "Ottaaksesi ilmoitukset käyttöön, siirry asetuksiin ja valitse 'salli'.",
"notification_permission_list_tile_content": "Myönnä käyttöoikeus ottaaksesi ilmoitukset käyttöön.",
"notification_permission_list_tile_enable_button": "Ota ilmoitukset käyttöön",
"notification_permission_list_tile_title": "Ilmoitusten käyttöoikeus",
"notification_toggle_setting_description": "Ota sähköposti-ilmoitukset käyttöön",
"notifications": "Ilmoitukset",
"notifications_setting_description": "Hallitse ilmoituksia",
@@ -926,6 +1259,7 @@
"offline_paths_description": "Nämä tulokset voivat johtua tiedostojen manuaalisesta poistamisesta, jotka eivät ole osa ulkoista kirjastoa.",
"ok": "Ok",
"oldest_first": "Vanhin ensin",
"on_this_device": "On this device",
"onboarding": "Käyttöönotto",
"onboarding_privacy_description": "Seuraavat (valinnaiset) ominaisuudet perustuvat ulkoisiin palveluihin, ja ne voidaan poistaa käytöstä milloin tahansa hallinta asetuksista.",
"onboarding_theme_description": "Valitse väriteema istunnollesi. Voit muuttaa tämän myöhemmin asetuksistasi.",
@@ -949,6 +1283,14 @@
"partner_can_access": "{partner} voi päästä",
"partner_can_access_assets": "Kaikki valokuvasi ja videosi, lukuun ottamatta arkistoituja ja poistettuja",
"partner_can_access_location": "Sijainti, jossa kuvasi on otettu",
"partner_list_user_photos": "Käyttäjän {user} kuvat",
"partner_list_view_all": "Näytä kaikki",
"partner_page_empty_message": "Kuviasi ei ole vielä jaettu kenenkään kumppanin kanssa.",
"partner_page_no_more_users": "Ei enempää käyttäjiä lisättäväksi",
"partner_page_partner_add_failed": "Kumppanin lisääminen epäonnistui",
"partner_page_select_partner": "Valitse kumppani",
"partner_page_shared_to_title": "Jaettu henkilöille",
"partner_page_stop_sharing_content": "{} ei voi enää käyttää kuviasi.",
"partner_sharing": "Kumppanijako",
"partners": "Kumppanit",
"password": "Salasana",
@@ -977,6 +1319,14 @@
"permanently_delete_assets_prompt": "Oletko varma, että haluat poistaa pysyvästi {count, plural, one {tämän kohteen?} other {nämä <b>#</b> kohteet?}} Tämä poistaa myös {count, plural, one {sen sen} other {ne niiden}} albumista.",
"permanently_deleted_asset": "Media poistettu pysyvästi",
"permanently_deleted_assets_count": "{count, plural, one {# media} other {# mediaa}} poistettu pysyvästi",
"permission_onboarding_back": "Takaisin",
"permission_onboarding_continue_anyway": "Jatka silti",
"permission_onboarding_get_started": "Aloittaminen",
"permission_onboarding_go_to_settings": "Siirry asetuksiin",
"permission_onboarding_permission_denied": "Kielletty käyttöoikeus. Käyttääksesi Immichiä, myönnä oikeus kuviin ja videoihin asetuksista.",
"permission_onboarding_permission_granted": "Käyttöoikeus myönnetty! Kaikki valmista.",
"permission_onboarding_permission_limited": "Rajoitettu käyttöoikeus. Salliaksesi Immichin varmuuskopioida ja hallita koko kuvakirjastoasi, myönnä oikeus kuviin ja videoihin asetuksista.",
"permission_onboarding_request": "Immich vaatii käyttöoikeuden kuvien ja videoiden käyttämiseen.",
"person": "Henkilö",
"person_hidden": "{name}{hidden, select, true { (piilotettu)} other {}}",
"photo_shared_all_users": "Näyttää että olet jakanut kuvasi kaikkien käyttäjien kanssa, tai sinulla ei ole käyttäjää kenelle jakaa.",
@@ -992,6 +1342,8 @@
"play_motion_photo": "Toista Liikekuva",
"play_or_pause_video": "Toista tai keskeytä video",
"port": "Portti",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Asetukset",
"preset": "Asetus",
"preview": "Esikatselu",
"previous": "Edellinen",
@@ -999,6 +1351,13 @@
"previous_or_next_photo": "Edellinen tai seuraava kuva",
"primary": "Ensisijainen",
"privacy": "Yksityisyys",
"profile_drawer_app_logs": "Lokit",
"profile_drawer_client_out_of_date_major": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
"profile_drawer_client_out_of_date_minor": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään versioon.",
"profile_drawer_client_server_up_to_date": "Asiakassovellus ja palvelin ovat ajan tasalla",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
"profile_drawer_server_out_of_date_minor": "Palvelimen ohjelmistoversio on vanhentunut. Päivitä viimeisimpään versioon.",
"profile_image_of_user": "Käyttäjän {user} profiilikuva",
"profile_picture_set": "Profiilikuva asetettu.",
"public_album": "Julkinen albumi",
@@ -1048,6 +1407,8 @@
"recent": "Viimeisin",
"recent-albums": "Viimeisimmät albumit",
"recent_searches": "Edelliset haut",
"recently_added": "Recently added",
"recently_added_page_title": "Viimeksi lisätyt",
"refresh": "Päivitä",
"refresh_encoded_videos": "Päivitä enkoodatut videot",
"refresh_faces": "Päivitä kasvot",
@@ -1099,10 +1460,12 @@
"role_editor": "Editori",
"role_viewer": "Toistin",
"save": "Tallenna",
"save_to_gallery": "Save to gallery",
"saved_api_key": "API-avain tallennettu",
"saved_profile": "Profiili tallennettu",
"saved_settings": "Asetukset tallennettu",
"say_something": "Sano jotain",
"scaffold_body_error_occurred": "Tapahtui virhe",
"scan_all_libraries": "Skannaa kaikki kirjastot",
"scan_library": "Skannaa",
"scan_settings": "Skannausasetukset",
@@ -1117,14 +1480,43 @@
"search_camera_model": "Etsi kameramallia...",
"search_city": "Etsi kaupunkia...",
"search_country": "Etsi maata...",
"search_filter_apply": "Käytä",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Ei kuulu albumiin",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for_existing_person": "Etsi olemassa olevaa henkilöä",
"search_no_more_result": "No more results",
"search_no_people": "Ei henkilöitä",
"search_no_people_named": "Ei \"{name}\" nimisiä henkilöitä",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Hakuvaihtoehdot",
"search_page_categories": "Kategoriat",
"search_page_motion_photos": "Liikekuvat",
"search_page_no_objects": "Objektitietoja ei ole saatavilla",
"search_page_no_places": "Paikkatietoja ei ole saatavilla",
"search_page_screenshots": "Näyttökuvat",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfiet",
"search_page_things": "Asiat",
"search_page_view_all_button": "Näytä kaikki",
"search_page_your_activity": "Toimintasi",
"search_page_your_map": "Sinun karttasi",
"search_people": "Etsi ihmisiä",
"search_places": "Etsi paikkoja",
"search_result_page_new_search_hint": "Uusi haku",
"search_settings": "Hakuasetukset",
"search_state": "Etsi tilaa...",
"search_suggestion_list_smart_search_hint_1": "Älykäs haku on oletuksena käytössä. Käytä metatietojen etsimiseen syntaksia",
"search_suggestion_list_smart_search_hint_2": "m:hakusana",
"search_tags": "Etsi tunnisteita...",
"search_timezone": "Etsi aikavyöhyke...",
"search_type": "Etsinnän tyyppi",
@@ -1144,10 +1536,14 @@
"select_new_face": "Valitse uudet kasvot",
"select_photos": "Valitse kuvat",
"select_trash_all": "Valitse kaikki roskakoriin",
"select_user_for_sharing_page_err_album": "Albumin luonti epäonnistui",
"selected": "Valittu",
"selected_count": "{count, plural, other {# valittu}}",
"send_message": "Lähetä viesti",
"send_welcome_email": "Lähetä tervetuloviesti",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Sovelluksen versio",
"server_info_box_server_url": "Palvelimen URL-osoite",
"server_offline": "Palvelin Offline-tilassa",
"server_online": "Palvelin Online-tilassa",
"server_stats": "Palvelimen tilastot",
@@ -1159,21 +1555,90 @@
"set_date_of_birth": "Aseta syntymäaika",
"set_profile_picture": "Aseta profiilikuva",
"set_slideshow_to_fullscreen": "Näytä diaesitys koko ruudulla",
"setting_image_viewer_help": "Sovellus lataa ensin pienen esikatselukuvan, toisena keskitarkkuuksisen kuvan (jos käytössä) ja kolmantena alkuperäisen täysitarkkuuksisen kuvan (jos käytössä)",
"setting_image_viewer_original_subtitle": "Ota käyttöön ladataksesi alkuperäinen täysitarkkuuksinen kuva (suuri!). Poista käytöstä vähentääksesi datan käyttöä (sekä verkossa että laitteen välimuistissa).",
"setting_image_viewer_original_title": "Lataa alkuperäinen kuva",
"setting_image_viewer_preview_subtitle": "Ota käyttöön ladataksesi keskitarkkuuksinen kuva. Poista käytöstä ladataksesi alkuperäinen kuva tai käyttääksesi vain esikatselukuvaa.",
"setting_image_viewer_preview_title": "Lataa esikatselukuva",
"setting_image_viewer_title": "Kuvat",
"setting_languages_apply": "Käytä",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Kieli",
"setting_notifications_notify_failures_grace_period": "Ilmoita taustavarmuuskopioinnin epäonnistumisista: {}",
"setting_notifications_notify_hours": "{} tunnin välein",
"setting_notifications_notify_immediately": "heti",
"setting_notifications_notify_minutes": "{} minuutin välein",
"setting_notifications_notify_never": "ei koskaan",
"setting_notifications_notify_seconds": "{} sekuntia",
"setting_notifications_single_progress_subtitle": "Yksityiskohtainen tieto palvelimelle lähettämisen edistymisestä kohteittain",
"setting_notifications_single_progress_title": "Näytä taustavarmuuskopioinnin eidstminen",
"setting_notifications_subtitle": "Ilmoitusasetusten määrittely",
"setting_notifications_total_progress_subtitle": "Lähetyksen yleinen edistyminen (kohteita lähetetty/yhteensä)",
"setting_notifications_total_progress_title": "Näytä taustavarmuuskopioinnin kokonaisedistyminen",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Asetukset",
"settings_require_restart": "Käynnistä Immich uudelleen ottaaksesti tämän asetuksen käyttöön",
"settings_saved": "Asetukset tallennettu",
"share": "Jaa",
"share_add_photos": "Lisää kuvia",
"share_assets_selected": "{} valittu",
"share_dialog_preparing": "Valmistellaan...",
"shared": "Jaettu",
"shared_album_activities_input_disable": "Kommentointi on kytketty pois päältä",
"shared_album_activity_remove_content": "Haluatko poistaa tämän aktiviteetin?",
"shared_album_activity_remove_title": "Poista aktiviteetti",
"shared_album_section_people_action_error": "Virhe poistuttaessa/poistaessa kohdetta albumista",
"shared_album_section_people_action_leave": "Poista käyttäjä albumista",
"shared_album_section_people_action_remove_user": "Poista käyttäjä albumista",
"shared_album_section_people_title": "HENKILÖT",
"shared_by": "Jakanut",
"shared_by_user": "Käyttäjän {user} jakama",
"shared_by_you": "Sinun jakamasi",
"shared_from_partner": "Kumppanin {partner} kuvia",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Jaetut linkit",
"shared_link_clipboard_copied_massage": "Kopioitu leikepöydältä",
"shared_link_clipboard_text": "Linkki: {}\nSalasana: {}",
"shared_link_create_error": "Jaetun linkin luomisessa tapahtui virhe",
"shared_link_edit_description_hint": "Lisää jaon kuvaus",
"shared_link_edit_expire_after_option_day": "1 päivä",
"shared_link_edit_expire_after_option_days": "{} päivää",
"shared_link_edit_expire_after_option_hour": "1 tunti",
"shared_link_edit_expire_after_option_hours": "{} tuntia",
"shared_link_edit_expire_after_option_minute": "1 minuutti",
"shared_link_edit_expire_after_option_minutes": "{} minuuttia",
"shared_link_edit_expire_after_option_months": "{} kuukautta",
"shared_link_edit_expire_after_option_year": "{} vuosi",
"shared_link_edit_password_hint": "Syötä jaon salasana",
"shared_link_edit_submit_button": "Päivitä linkki",
"shared_link_error_server_url_fetch": "Palvelimen URL-osoitetta ei voitu hakea",
"shared_link_expires_day": "Voimassaolo päättyy {} päivän kuluttua",
"shared_link_expires_days": "Voimassaolo päättyy {} päivän kuluttua",
"shared_link_expires_hour": "Voimassaolo päättyy {} tunnin kuluttua",
"shared_link_expires_hours": "Voimassaolo päättyy {} tunnin kuluttua",
"shared_link_expires_minute": "Voimassaolo päättyy {} minuutin kuluttua",
"shared_link_expires_minutes": "Voimassaolo päättyy {} minuutin kuluttua",
"shared_link_expires_never": "Voimassaolo päättyy ∞",
"shared_link_expires_second": "Voimassaolo päättyy {} sekunnin kuluttua",
"shared_link_expires_seconds": "Voimassaolo päättyy {} sekunnin kuluttua",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Hallitse jaettuja linkkejä",
"shared_link_options": "Jaetun linkin vaihtoehdot",
"shared_links": "Jaetut linkit",
"shared_photos_and_videos_count": "{assetCount, plural, other {# jaettua kuvaa ja videota.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "Jaa kumppanin {partner} kanssa",
"sharing": "Jakaminen",
"sharing_enter_password": "Nähdäksesi sivun sinun tulee antaa salasana.",
"sharing_page_album": "Jaetut albumit",
"sharing_page_description": "Luo jaettuja albumeja jakaaksesi kuvia ja videoita läheisillesi.",
"sharing_page_empty_list": "TYHJÄ LISTA",
"sharing_sidebar_description": "Näytä jakamislinkki sivupalkissa",
"sharing_silver_appbar_create_shared_album": "Luo jaettu albumi",
"sharing_silver_appbar_share_partner": "Jaa kumppanille",
"shift_to_permanent_delete": "Paina ⇧ poistaaksesi median pysyvästi",
"show_album_options": "Näytä albumin asetukset",
"show_albums": "Näytä albumit",
@@ -1239,6 +1704,9 @@
"support_third_party_description": "Immich-asennuksesi on pakattu kolmannen osapuolen toimesta. Kohtaamasi ongelmat saattavat johtua tästä paketista, joten ilmoita niistä ensisijaisesti heille alla olevien linkkien kautta.",
"swap_merge_direction": "Käännä yhdistämissuunta",
"sync": "Synkronoi",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Lisää tunniste",
"tag_assets": "Lisää tunnisteita",
"tag_created": "Luotu tunniste: {tag}",
@@ -1251,6 +1719,19 @@
"theme": "Teema",
"theme_selection": "Teeman valinta",
"theme_selection_description": "Aseta vaalea tai tumma tila automaattisesti perustuen selaimesi asetuksiin",
"theme_setting_asset_list_storage_indicator_title": "Näytä tallennustilan ilmaisin kohteiden kuvakkeissa",
"theme_setting_asset_list_tiles_per_row_title": "Kohteiden määrä rivillä ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "Säädä kuvien katselun laatua",
"theme_setting_image_viewer_quality_title": "Kuvien katseluohjelman laatu",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automaattinen (seuraa järjestelmän asetusta)",
"theme_setting_theme_subtitle": "Valitse sovelluksen teema-asetukset",
"theme_setting_three_stage_loading_subtitle": "Kolmivaiheinen lataaminen saattaa parantaa latauksen suorituskykyä, mutta lisää kaistankäyttöä huomattavasti.",
"theme_setting_three_stage_loading_title": "Ota kolmivaiheinen lataus käyttöön",
"they_will_be_merged_together": "Nämä tullaan yhdistämään",
"third_party_resources": "Kolmannen osapuolen resurssit",
"time_based_memories": "Aikaan perustuvat muistot",
@@ -1270,7 +1751,15 @@
"trash_all": "Vie kaikki roskakoriin",
"trash_count": "Roskakori {count, number}",
"trash_delete_asset": "Poista / vie roskakoriin",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "Roskakorissa olevat kuvat ja videot näytetään täällä.",
"trash_page_delete_all": "Poista kaikki",
"trash_page_empty_trash_dialog_content": "Haluatko poistaa roskakoriin siirretyt kohteet? Kohteet poistetaan lopullisesti Immich:sta.",
"trash_page_info": "Roskakoriin siirretyt kohteet poistetaan lopullisesti {} päivän kuluttua",
"trash_page_no_assets": "Ei poistettuja kohteita",
"trash_page_restore_all": "Palauta kaikki",
"trash_page_select_assets_btn": "Valitse kohteet",
"trash_page_title": "Roskakori",
"trashed_items_will_be_permanently_deleted_after": "Roskakorin kohteet poistetaan pysyvästi {days, plural, one {# päivän} other {# päivän}} päästä.",
"type": "Tyyppi",
"unarchive": "Palauta arkistosta",
@@ -1297,6 +1786,8 @@
"updated_password": "Salasana päivitetty",
"upload": "Siirrä palvelimelle",
"upload_concurrency": "Latausten samanaikaisuus",
"upload_dialog_info": "Haluatko varmuuskopioida valitut kohteet palvelimelle?",
"upload_dialog_title": "Lähetä kohde",
"upload_errors": "Lataus valmistui {count, plural, one {# virheen} other {# virheen}} kanssa. Päivitä sivu nähdäksesi ladatut tiedot.",
"upload_progress": "Jäljellä {remaining, number} - Käsitelty {processed, number}/{total, number}",
"upload_skipped_duplicates": "Ohitettiin {count, plural, one {# kaksoiskappale} other {# kaksoiskappaletta}}",
@@ -1304,8 +1795,11 @@
"upload_status_errors": "Virheet",
"upload_status_uploaded": "Ladattu",
"upload_success": "Lataus onnistui. Päivitä sivu jotta näet latauksesi.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "Käyttö",
"use_current_connection": "use current connection",
"use_custom_date_range": "Käytä omaa aikaväliä",
"user": "Käyttäjä",
"user_id": "Käyttäjän ID",
@@ -1320,10 +1814,16 @@
"users": "Käyttäjät",
"utilities": "Apuohjelmat",
"validate": "Validoi",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "Muuttujat",
"version": "Versio",
"version_announcement_closing": "Ystäväsi Alex",
"version_announcement_message": "Hei! Sovelluksen uusi versio on saatavilla. Käythän vilkaisemassa <link>julkaisun tiedot</link> ja varmistathan, että ohjelman määritykset ovat ajan tasalla. Erityisesti, jos käytössä on Watchtower tai jokin muu mekanismi Immich-sovelluksen automaattista päivitystä varten.",
"version_announcement_overlay_release_notes": "julkaisutiedoissa",
"version_announcement_overlay_text_1": "Hei, kaveri! Uusi palvelinversio on saatavilla sovelluksesta",
"version_announcement_overlay_text_2": "Ota hetki aikaa vieraillaksesi",
"version_announcement_overlay_text_3": "ja varmista, että käyttämäsi docker-compose ja .env-asetukset ovat ajantasalla välttyäksesi asetusongelmilta. Varsinkin jos käytät WatchToweria tai jotain muuta mekanismia päivittääksesi palvelinsovellusta automaattisesti.",
"version_announcement_overlay_title": "Uusi palvelinversio saatavilla 🎉",
"version_history": "Versiohistoria",
"version_history_item": "Asennettu {version} päivänä {date}",
"video": "Video",
@@ -1341,15 +1841,20 @@
"view_next_asset": "Näytä seuraava",
"view_previous_asset": "Näytä edellinen",
"view_stack": "Näytä pinona",
"viewer_remove_from_stack": "Poista pinosta",
"viewer_stack_use_as_main_asset": "Käytä pääkohteena",
"viewer_unstack": "Pura pino",
"visibility_changed": "{count, plural, one {# henkilön} other {# henkilöiden}} näkyvyys vaihdettu",
"waiting": "Odottaa",
"warning": "Varoitus",
"week": "Viikko",
"welcome": "Tervetuloa",
"welcome_to_immich": "Tervetuloa Immichiin",
"wifi_name": "WiFi Name",
"year": "Vuosi",
"years_ago": "{years, plural, one {# vuosi} other {# vuotta}} sitten",
"yes": "Kyllä",
"you_dont_have_any_shared_links": "Sinulla ei ole jaettuja linkkejä",
"your_wifi_name": "Your WiFi name",
"zoom_image": "Zoomaa kuvaa"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "अभिलेख व्यवस्था",
"acknowledge": "स्वीकार करें",
"action": "कार्रवाई",
"action_common_update": "Update",
"actions": "कार्यवाहियां",
"active": "सक्रिय",
"activity": "गतिविधि",
@@ -13,6 +14,7 @@
"add_a_location": "एक स्थान जोड़ें",
"add_a_name": "नाम जोड़ें",
"add_a_title": "एक शीर्षक जोड़ें",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "अपवाद उदाहरण जोड़ें",
"add_import_path": "आयात पथ जोड़ें",
"add_location": "स्थान जोड़ें",
@@ -22,6 +24,8 @@
"add_photos": "फ़ोटो जोड़ें",
"add_to": "इसमें जोड़ें…",
"add_to_album": "एल्बम में जोड़ें",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"add_to_shared_album": "साझा एल्बम में जोड़ें",
"add_url": "URL जोड़ें",
"added_to_archive": "संग्रहीत कर दिया गया है",
@@ -146,7 +150,6 @@
"no_pattern_added": "कोई पैटर्न नहीं जोड़ा गया",
"note_apply_storage_label_previous_assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
"note_cannot_be_changed_later": "नोट: इसे बाद में बदला नहीं जा सकता!",
"note_unlimited_quota": "नोट: असीमित कोटा के लिए 0 दर्ज करें",
"notification_email_from_address": "इस पते से",
"notification_email_from_address_description": "प्रेषक का ईमेल पता, उदाहरण के लिए: \"इमिच फोटो सर्वर <noreply@example.com>\"",
"notification_email_host_description": "ईमेल सर्वर का होस्ट (उदा. smtp.immitch.app)",
@@ -313,17 +316,41 @@
"admin_password": "व्यवस्थापक पासवर्ड",
"administration": "प्रशासन",
"advanced": "विकसित",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
"advanced_settings_prefer_remote_title": "Prefer remote images",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
"advanced_settings_tile_subtitle": "Advanced user's settings",
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
"advanced_settings_troubleshooting_title": "Troubleshooting",
"album_added": "एल्बम जोड़ा गया",
"album_added_notification_setting_description": "जब आपको किसी साझा एल्बम में जोड़ा जाए तो एक ईमेल सूचना प्राप्त करें",
"album_cover_updated": "एल्बम कवर अपडेट किया गया",
"album_info_card_backup_album_excluded": "EXCLUDED",
"album_info_card_backup_album_included": "INCLUDED",
"album_info_updated": "एल्बम की जानकारी अपडेट की गई",
"album_leave": "एल्बम छोड़ें?",
"album_name": "एल्बम का नाम",
"album_options": "एल्बम विकल्प",
"album_remove_user": "उपयोगकर्ता हटाएं?",
"album_share_no_users": "ऐसा लगता है कि आपने यह एल्बम सभी उपयोगकर्ताओं के साथ साझा कर दिया है या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Shared",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "एल्बम अपडेट किया गया",
"album_updated_setting_description": "जब किसी साझा एल्बम में नई संपत्तियाँ हों तो एक ईमेल सूचना प्राप्त करें",
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
"album_viewer_appbar_share_err_delete": "Failed to delete album",
"album_viewer_appbar_share_err_leave": "Failed to leave album",
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
"album_viewer_appbar_share_err_title": "Failed to change album title",
"album_viewer_appbar_share_leave": "Leave album",
"album_viewer_appbar_share_to": "साझा करें",
"album_viewer_page_share_add_users": "Add users",
"album_with_link_access": "लिंक वाले किसी भी व्यक्ति को इस एल्बम में फ़ोटो और लोगों को देखने दें।",
"albums": "एलबम",
"all": "सभी",
@@ -338,29 +365,120 @@
"api_key_description": "यह की केवल एक बार दिखाई जाएगी। विंडो बंद करने से पहले कृपया इसे कॉपी करना सुनिश्चित करें।।",
"api_key_empty": "आपका एपीआई कुंजी नाम खाली नहीं होना चाहिए",
"api_keys": "एपीआई कीज",
"app_bar_signout_dialog_content": "क्या आप सुनिश्चित हैं कि आप लॉग आउट करना चाहते हैं?",
"app_bar_signout_dialog_ok": "हाँ",
"app_bar_signout_dialog_title": "लॉग आउट",
"app_settings": "एप्लिकेशन सेटिंग",
"appears_in": "प्रकट होता है",
"archive": "संग्रहालय",
"archive_or_unarchive_photo": "फ़ोटो को संग्रहीत या असंग्रहीत करें",
"archive_page_no_archived_assets": "No archived assets found",
"archive_page_title": "Archive ({})",
"archive_size": "पुरालेख आकार",
"archive_size_description": "डाउनलोड के लिए संग्रह आकार कॉन्फ़िगर करें (GiB में)",
"archived": "संग्रहित",
"are_these_the_same_person": "क्या ये वही व्यक्ति हैं?",
"are_you_sure_to_do_this": "क्या आप वास्तव में इसे करना चाहते हैं?",
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
"asset_added_to_album": "एल्बम में जोड़ा गया",
"asset_adding_to_album": "एल्बम में जोड़ा जा रहा है..।",
"asset_description_updated": "संपत्ति विवरण अद्यतन कर दिया गया है",
"asset_has_unassigned_faces": "एसेट में अनिर्धारित चेहरे हैं",
"asset_hashing": "हैशिंग..।",
"asset_list_group_by_sub_title": "Group by",
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
"asset_list_layout_settings_group_automatically": "Automatic",
"asset_list_layout_settings_group_by": "Group assets by",
"asset_list_layout_settings_group_by_month_day": "Month + day",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Photo grid layout settings",
"asset_list_settings_title": "Photo Grid",
"asset_offline": "संपत्ति ऑफ़लाइन",
"asset_offline_description": "यह संपत्ति ऑफ़लाइन है।",
"asset_restored_successfully": "संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"asset_skipped": "छोड़ा गया",
"asset_uploaded": "अपलोड किए गए",
"asset_uploading": "अपलोड हो रहा है..।",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"assets": "संपत्तियां",
"assets_deleted_permanently": "{} संपत्ति(याँ) स्थायी रूप से हटा दी गईं",
"assets_deleted_permanently_from_server": "{} संपत्ति(याँ) इमिच सर्वर से स्थायी रूप से हटा दी गईं",
"assets_removed_permanently_from_device": "{} संपत्ति(याँ) आपके डिवाइस से स्थायी रूप से हटा दी गईं",
"assets_restore_confirmation": "क्या आप वाकई अपनी सभी नष्ट की गई संपत्तियों को पुनर्स्थापित करना चाहते हैं? आप इस क्रिया को पूर्ववत नहीं कर सकते!",
"assets_restored_successfully": "{} संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"assets_trashed": "{} संपत्ति(याँ) कचरे में डाली गईं",
"assets_trashed_from_server": "{} संपत्ति(याँ) इमिच सर्वर से कचरे में डाली गईं",
"authorized_devices": "अधिकृत उपकरण",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "वापस",
"back_close_deselect": "वापस जाएँ, बंद करें, या अचयनित करें",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
"backup_album_selection_page_select_albums": "Select albums",
"backup_album_selection_page_selection_info": "Selection Info",
"backup_album_selection_page_total_assets": "Total unique assets",
"backup_all": "All",
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "Checking for new assets…",
"backup_background_service_error_title": "Backup error",
"backup_background_service_in_progress_notification": "Backing up your assets…",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "Backup Albums",
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
"backup_controller_page_background_battery_info_link": "Show me how",
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Battery optimizations",
"backup_controller_page_background_charging": "Only while charging",
"backup_controller_page_background_configure_error": "Failed to configure the background service",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
"backup_controller_page_background_is_off": "Automatic background backup is off",
"backup_controller_page_background_is_on": "Automatic background backup is on",
"backup_controller_page_background_turn_off": "Turn off background service",
"backup_controller_page_background_turn_on": "Turn on background service",
"backup_controller_page_background_wifi": "Only on WiFi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selected: ",
"backup_controller_page_backup_sub": "Backed up photos and videos",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
"backup_controller_page_excluded": "Excluded: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Backup Information",
"backup_controller_page_none_selected": "None selected",
"backup_controller_page_remainder": "Remainder",
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
"backup_controller_page_server_storage": "Server Storage",
"backup_controller_page_start_backup": "Start Backup",
"backup_controller_page_status_off": "Automatic foreground backup is off",
"backup_controller_page_status_on": "Automatic foreground backup is on",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "Albums to be backed up",
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
"backup_controller_page_turn_off": "Turn off foreground backup",
"backup_controller_page_turn_on": "Turn on foreground backup",
"backup_controller_page_uploading_file_info": "Uploading file info",
"backup_err_only_album": "Cannot remove the only album",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Cancelled",
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "पिछला",
"birthdate_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
"birthdate_set_description": "जन्मतिथि का उपयोग फोटो के समय इस व्यक्ति की आयु की गणना करने के लिए किया जाता है।",
@@ -368,24 +486,52 @@
"build": "निर्माण",
"build_image": "छवि बनाएँ",
"buy": "इम्मीच खरीदो",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "Library thumbnails",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "Full images",
"cache_settings_statistics_shared": "Shared album thumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cache usage",
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "स्थानीय संग्रहण के व्यवहार को नियंत्रित करें",
"cache_settings_tile_title": "स्थानीय संग्रहण",
"cache_settings_title": "Caching Settings",
"camera": "कैमरा",
"camera_brand": "कैमरा ब्रांड",
"camera_model": "कैमरा मॉडल",
"cancel": "रद्द करना",
"cancel_search": "खोज रद्द करें",
"canceled": "Canceled",
"cannot_merge_people": "लोगों का विलय नहीं हो सकता",
"cannot_undo_this_action": "आप इस क्रिया को पूर्ववत नहीं कर सकते!",
"cannot_update_the_description": "विवरण अद्यतन नहीं किया जा सकता",
"change_date": "बदलाव दिनांक",
"change_display_order": "Change display order",
"change_expiration_time": "समाप्ति समय बदलें",
"change_location": "स्थान बदलें",
"change_name": "नाम परिवर्तन करें",
"change_name_successfully": "नाम सफलतापूर्वक बदलें",
"change_password": "पासवर्ड बदलें",
"change_password_description": "यह या तो पहली बार है जब आप सिस्टम में साइन इन कर रहे हैं या आपका पासवर्ड बदलने का अनुरोध किया गया है।",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"change_your_password": "अपना पासवर्ड बदलें",
"changed_visibility_successfully": "दृश्यता सफलतापूर्वक परिवर्तित",
"check_all": "सभी चेक करें",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "लॉग जांचें",
"choose_matching_people_to_merge": "मर्ज करने के लिए मिलते-जुलते लोगों को चुनें",
"city": "शहर",
@@ -394,6 +540,14 @@
"clear_all_recent_searches": "सभी हालिया खोजें साफ़ करें",
"clear_message": "स्पष्ट संदेश",
"clear_value": "स्पष्ट मूल्य",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"close": "बंद",
"collapse": "गिर जाना",
"collapse_all": "सभी को संकुचित करें",
@@ -402,6 +556,9 @@
"comment_options": "टिप्पणी विकल्प",
"comments_and_likes": "टिप्पणियाँ और पसंद",
"comments_are_disabled": "टिप्पणियाँ अक्षम हैं",
"common_create_new_album": "Create new album",
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
"completed": "Completed",
"confirm": "पुष्टि",
"confirm_admin_password": "एडमिन पासवर्ड की पुष्टि करें",
"confirm_delete_shared_link": "क्या आप वाकई इस साझा लिंक को हटाना चाहते हैं?",
@@ -409,6 +566,15 @@
"contain": "समाहित",
"context": "संदर्भ",
"continue": "जारी",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "Create new album",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
"control_bottom_app_bar_edit_location": "Edit Location",
"control_bottom_app_bar_edit_time": "Edit Date & Time",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
"copied_image_to_clipboard": "छवि को क्लिपबोर्ड पर कॉपी किया गया।",
"copied_to_clipboard": "क्लिपबोर्ड पर नकल!",
"copy_error": "प्रतिलिपि त्रुटि",
@@ -423,22 +589,32 @@
"covers": "आवरण",
"create": "तैयार करें",
"create_album": "एल्बम बनाओ",
"create_album_page_untitled": "Untitled",
"create_library": "लाइब्रेरी बनाएं",
"create_link": "लिंक बनाएं",
"create_link_to_share": "शेयर करने के लिए लिंक बनाएं",
"create_link_to_share_description": "लिंक वाले किसी भी व्यक्ति को चयनित फ़ोटो देखने दें",
"create_new": "नया बनाएं",
"create_new_person": "नया व्यक्ति बनाएं",
"create_new_person_hint": "चयनित संपत्तियों को एक नए व्यक्ति को सौंपें",
"create_new_user": "नया उपयोगकर्ता बनाएं",
"create_shared_album_page_share_add_assets": "ADD ASSETS",
"create_shared_album_page_share_select_photos": "Select Photos",
"create_user": "उपयोगकर्ता बनाइये",
"created": "बनाया",
"crop": "छाँटें",
"curated_object_page_title": "Things",
"current_device": "वर्तमान उपकरण",
"current_server_address": "Current server address",
"custom_locale": "कस्टम लोकेल",
"custom_locale_description": "भाषा और क्षेत्र के आधार पर दिनांक और संख्याएँ प्रारूपित करें",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "डार्क",
"date_after": "इसके बाद की तारीख",
"date_and_time": "तिथि और समय",
"date_before": "पहले की तारीख",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "जन्मतिथि सफलतापूर्वक सहेजी गई",
"date_range": "तिथि सीमा",
"day": "दिन",
@@ -448,14 +624,25 @@
"delete": "हटाएँ",
"delete_album": "एल्बम हटाएँ",
"delete_api_key_prompt": "क्या आप वाकई इस एपीआई कुंजी को हटाना चाहते हैं?",
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
"delete_dialog_ok_force": "Delete Anyway",
"delete_dialog_title": "Delete Permanently",
"delete_duplicates_confirmation": "क्या आप वाकई इन डुप्लिकेट को स्थायी रूप से हटाना चाहते हैं?",
"delete_key": "कुंजी हटाएँ",
"delete_library": "लाइब्रेरी हटाएँ",
"delete_link": "लिंक हटाएँ",
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
"delete_local_dialog_ok_force": "Delete Anyway",
"delete_shared_link": "साझा किए गए लिंक को हटाएं",
"delete_shared_link_dialog_title": "साझा किए गए लिंक को हटाएं",
"delete_user": "उपभोक्ता मिटायें",
"deleted_shared_link": "साझा किया गया लिंक हटा दिया गया",
"description": "वर्णन",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Error updating description, check the log for more details",
"details": "विवरण",
"direction": "दिशा",
"disabled": "अक्षम",
@@ -470,9 +657,23 @@
"do_not_show_again": "इस संदेश को दुबारा मत दिखाना",
"done": "ठीक है",
"download": "डाउनलोड करें",
"download_canceled": "डाउनलोड रद्द कर दिया गया",
"download_complete": "डाउनलोड पूरा",
"download_enqueue": "डाउनलोड कतार में है",
"download_error": "डाउनलोड त्रुटि",
"download_failed": "डाउनलोड विफल",
"download_filename": "फ़ाइल: {}",
"download_finished": "डाउनलोड समाप्त",
"download_notfound": "डाउनलोड नहीं मिला",
"download_paused": "डाउनलोड स्थगित",
"download_settings": "डाउनलोड करना",
"download_settings_description": "संपत्ति डाउनलोड से संबंधित सेटिंग्स प्रबंधित करें",
"download_started": "डाउनलोड प्रारंभ हुआ",
"download_sucess": "डाउनलोड सफल",
"download_sucess_android": "मीडिया DCIM/Immich में डाउनलोड हो गया है",
"download_waiting_to_retry": "पुनः प्रयास करने का इंतजार कर रहा है",
"downloading": "डाउनलोड",
"downloading_media": "मीडिया डाउनलोड हो रहा है",
"drop_files_to_upload": "अपलोड करने के लिए फ़ाइलें कहीं भी छोड़ें",
"duplicates": "डुप्लिकेट",
"duplicates_description": "प्रत्येक समूह को यह इंगित करके हल करें कि कौन सा, यदि कोई है, डुप्लिकेट है",
@@ -489,6 +690,7 @@
"edit_key": "कुंजी संपादित करें",
"edit_link": "लिंक संपादित करें",
"edit_location": "स्थान संपादित करें",
"edit_location_dialog_title": "Location",
"edit_name": "नाम संपादित करें",
"edit_people": "लोगों को संपादित करें",
"edit_title": "शीर्षक संपादित करें",
@@ -496,13 +698,18 @@
"edited": "संपादित",
"editor": "",
"email": "ईमेल",
"empty_folder": "This folder is empty",
"empty_trash": "कूड़ेदान खाली करें",
"empty_trash_confirmation": "क्या आपको यकीन है कि आप कचरा खाली करना चाहते हैं? यह इमिच से स्थायी रूप से कचरा में सभी संपत्तियों को हटा देगा।\nआप इस कार्रवाई को नहीं रोक सकते!",
"enable": "सक्षम",
"enabled": "सक्रिय",
"end_date": "अंतिम तिथि",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "गलती",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "छवि लोड करने में त्रुटि",
"error_saving_image": "त्रुटि: {}",
"error_title": "त्रुटि - कुछ गलत हो गया",
"errors": {
"cannot_navigate_next_asset": "अगली संपत्ति पर नेविगेट नहीं किया जा सकता",
@@ -616,8 +823,21 @@
"unable_to_upload_file": "फाइल अपलोड करने में असमर्थ"
},
"exif": "एक्सिफ",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "स्लाइड शो से बाहर निकलें",
"expand_all": "सभी का विस्तार",
"experimental_settings_new_asset_list_subtitle": "Work in progress",
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"expire_after": "एक्सपायर आफ्टर",
"expired": "खत्म हो चुका",
"explore": "अन्वेषण करना",
@@ -626,37 +846,77 @@
"extension": "विस्तार",
"external": "बाहरी",
"external_libraries": "बाहरी पुस्तकालय",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "सौंपे नहीं गए",
"failed": "Failed",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "पसंदीदा",
"favorite_or_unfavorite_photo": "पसंदीदा या नापसंद फोटो",
"favorites": "पसंदीदा",
"favorites_page_no_favorites": "No favorite assets found",
"feature_photo_updated": "फ़ीचर फ़ोटो अपडेट किया गया",
"file_name": "फ़ाइल का नाम",
"file_name_or_extension": "फ़ाइल का नाम या एक्सटेंशन",
"filename": "फ़ाइल का नाम",
"filetype": "फाइल का प्रकार",
"filter": "फ़िल्टर",
"filter_people": "लोगों को फ़िल्टर करें",
"find_them_fast": "खोज के साथ नाम से उन्हें तेजी से ढूंढें",
"fix_incorrect_match": "ग़लत मिलान ठीक करें",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Folders",
"forward": "आगे",
"general": "सामान्य",
"get_help": "मदद लें",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "शुरू करना",
"go_back": "वापस जाओ",
"go_to_search": "खोज पर जाएँ",
"grant_permission": "Grant permission",
"group_albums_by": "इनके द्वारा समूह एल्बम..।",
"group_no": "कोई समूहीकरण नहीं",
"group_owner": "स्वामी द्वारा समूह",
"group_year": "वर्ष के अनुसार समूह",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"has_quota": "कोटा है",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hide_all_people": "सभी लोगों को छुपाएं",
"hide_gallery": "गैलरी छिपाएँ",
"hide_password": "पासवर्ड छिपाएं",
"hide_person": "व्यक्ति छिपाएँ",
"hide_unnamed_people": "अनाम लोगों को छुपाएं",
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
"home_page_album_err_partner": "अब तक पार्टनर एसेट्स को एल्बम में जोड़ा नहीं कर सकते, स्किप कर रहे हैं",
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
"home_page_archive_err_partner": "पार्टनर एसेट्स को आर्काइव नहीं कर सकते, स्किप कर रहे हैं",
"home_page_building_timeline": "Building the timeline",
"home_page_delete_err_partner": "पार्टनर एसेट्स को डिलीट नहीं कर सकते, स्किप कर रहे हैं",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
"home_page_favorite_err_partner": "अब तक पार्टनर एसेट्स को फेवरेट नहीं कर सकते, स्किप कर रहे हैं",
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
"home_page_share_err_local": "लोकल एसेट्स को लिंक के जरिए शेयर नहीं कर सकते, स्किप कर रहे हैं",
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
"host": "मेज़बान",
"hour": "घंटा",
"ignore_icloud_photos": "आइक्लाउड फ़ोटो को अनदेखा करें",
"ignore_icloud_photos_description": "आइक्लाउड पर स्टोर की गई फ़ोटोज़ इमिच सर्वर पर अपलोड नहीं की जाएंगी",
"image": "छवि",
"image_saved_successfully": "इमेज सहेज दी गई",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Download Success",
"image_viewer_page_state_provider_share_error": "Share Error",
"immich_logo": "Immich लोगो",
"immich_web_interface": "इमिच वेब इंटरफ़ेस",
"import_from_json": "JSON से आयात करें",
@@ -673,6 +933,8 @@
"night_at_midnight": "हर रात आधी रात को",
"night_at_twoam": "हर रात 2 बजे"
},
"invalid_date": "अमान्य तारीख़",
"invalid_date_format": "अमान्य तारीख़ प्रारूप",
"invite_people": "लोगो को निमंत्रण भेजो",
"invite_to_album": "एल्बम के लिए आमंत्रित करें",
"jobs": "नौकरियां",
@@ -689,6 +951,12 @@
"level": "स्तर",
"library": "पुस्तकालय",
"library_options": "पुस्तकालय विकल्प",
"library_page_device_albums": "Albums on Device",
"library_page_new_album": "New album",
"library_page_sort_asset_count": "Number of assets",
"library_page_sort_created": "Created date",
"library_page_sort_last_modified": "Last modified",
"library_page_sort_title": "Album title",
"light": "रोशनी",
"like_deleted": "जैसे हटा दिया गया",
"link_options": "लिंक विकल्प",
@@ -697,12 +965,42 @@
"list": "सूची",
"loading": "लोड हो रहा है",
"loading_search_results_failed": "खोज परिणाम लोड करना विफल रहा",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude_error": "Enter a valid latitude",
"location_picker_latitude_hint": "Enter your latitude here",
"location_picker_longitude_error": "Enter a valid longitude",
"location_picker_longitude_hint": "Enter your longitude here",
"log_out": "लॉग आउट",
"log_out_all_devices": "सभी डिवाइस लॉग आउट करें",
"logged_out_all_devices": "सभी डिवाइस लॉग आउट कर दिए गए",
"logged_out_device": "लॉग आउट डिवाइस",
"login": "लॉग इन करें",
"login_disabled": "Login has been disabled",
"login_form_api_exception": "API exception. Please check the server URL and try again.",
"login_form_back_button_text": "Back",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Please specify http:// or https://",
"login_form_err_invalid_email": "Invalid Email",
"login_form_err_invalid_url": "Invalid URL",
"login_form_err_leading_whitespace": "Leading whitespace",
"login_form_err_trailing_whitespace": "Trailing whitespace",
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
"login_form_failed_login": "Error logging you in, check server URL, email and password",
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
"login_form_password_hint": "password",
"login_form_save_login": "Stay logged in",
"login_form_server_empty": "Enter a server URL.",
"login_form_server_error": "Could not connect to server.",
"login_has_been_disabled": "लॉगिन अक्षम कर दिया गया है।",
"login_password_changed_error": "There was an error updating your password",
"login_password_changed_success": "Password updated successfully",
"logout_all_device_confirmation": "क्या आप वाकई सभी डिवाइस से लॉग आउट करना चाहते हैं?",
"logout_this_device_confirmation": "क्या आप वाकई इस डिवाइस को लॉग आउट करना चाहते हैं?",
"longitude": "देशान्तर",
@@ -718,12 +1016,39 @@
"manage_your_devices": "अपने लॉग-इन डिवाइस प्रबंधित करें",
"manage_your_oauth_connection": "अपना OAuth कनेक्शन प्रबंधित करें",
"map": "नक्शा",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "Cannot get user's location",
"map_location_dialog_yes": "Yes",
"map_location_picker_page_use_location": "Use this location",
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
"map_location_service_disabled_title": "Location Service disabled",
"map_marker_with_image": "छवि के साथ मानचित्र मार्कर",
"map_no_assets_in_bounds": "No photos in this area",
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
"map_no_location_permission_title": "Location Permission denied",
"map_settings": "मानचित्र सेटिंग",
"map_settings_dark_mode": "Dark mode",
"map_settings_date_range_option_day": "Past 24 hours",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "Past year",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "Map Settings",
"map_settings_include_show_archived": "Include Archived",
"map_settings_include_show_partners": "Include Partners",
"map_settings_only_show_favorites": "Show Favorite Only",
"map_settings_theme_settings": "Map Theme",
"map_zoom_to_see_photos": "Zoom out to see photos",
"matches": "माचिस",
"media_type": "मीडिया प्रकार",
"memories": "यादें",
"memories_all_caught_up": "All caught up",
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
"memories_setting_description": "आप अपनी यादों में जो देखते हैं उसे प्रबंधित करें",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "याद",
"menu": "मेन्यू",
"merge": "मर्ज",
@@ -736,11 +1061,16 @@
"missing": "गुम",
"model": "मॉडल",
"month": "महीना",
"monthly_title_text_date_format": "MMMM y",
"more": "अधिक",
"moved_to_trash": "कूड़ेदान में ले जाया गया",
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "मेरे एल्बम",
"name": "नाम",
"name_or_nickname": "नाम या उपनाम",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "कभी नहीं",
"new_album": "नयी एल्बम",
"new_api_key": "नई एपीआई कुंजी",
@@ -757,6 +1087,7 @@
"no_albums_yet": "ऐसा लगता है कि आपके पास अभी तक कोई एल्बम नहीं है।",
"no_archived_assets_message": "फ़ोटो और वीडियो को अपने फ़ोटो दृश्य से छिपाने के लिए उन्हें संग्रहीत करें",
"no_assets_message": "अपना पहला फोटो अपलोड करने के लिए क्लिक करें",
"no_assets_to_show": "No assets to show",
"no_duplicates_found": "कोई नकलची नहीं मिला।",
"no_exif_info_available": "कोई एक्सिफ़ जानकारी उपलब्ध नहीं है",
"no_explore_results_message": "अपने संग्रह का पता लगाने के लिए और फ़ोटो अपलोड करें।",
@@ -768,9 +1099,13 @@
"no_results_description": "कोई पर्यायवाची या अधिक सामान्य कीवर्ड आज़माएँ",
"no_shared_albums_message": "अपने नेटवर्क में लोगों के साथ फ़ोटो और वीडियो साझा करने के लिए एक एल्बम बनाएं",
"not_in_any_album": "किसी एलबम में नहीं",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "नोट: पहले अपलोड की गई संपत्तियों पर स्टोरेज लेबल लागू करने के लिए, चलाएँ",
"note_unlimited_quota": "नोट: असीमित कोटा के लिए 0 दर्ज करें",
"notes": "टिप्पणियाँ",
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
"notification_permission_list_tile_enable_button": "Enable Notifications",
"notification_permission_list_tile_title": "Notification Permission",
"notification_toggle_setting_description": "ईमेल सूचनाएं सक्षम करें",
"notifications": "सूचनाएं",
"notifications_setting_description": "सूचनाएं प्रबंधित करें",
@@ -780,6 +1115,7 @@
"offline_paths_description": "ये परिणाम उन फ़ाइलों को मैन्युअल रूप से हटाने के कारण हो सकते हैं जो बाहरी लाइब्रेरी का हिस्सा नहीं हैं।",
"ok": "ठीक है",
"oldest_first": "सबसे पुराना पहले",
"on_this_device": "इस डिवाइस पर",
"onboarding": "ज्ञानप्राप्ति",
"onboarding_theme_description": "अपने उदाहरण के लिए एक रंग थीम चुनें।",
"onboarding_welcome_description": "आइए कुछ सामान्य सेटिंग्स के साथ अपना इंस्टेंस सेट अप करें।",
@@ -799,6 +1135,14 @@
"partner": "साथी",
"partner_can_access_assets": "संग्रहीत और हटाए गए को छोड़कर आपके सभी फ़ोटो और वीडियो",
"partner_can_access_location": "वह स्थान जहां आपकी तस्वीरें ली गईं थीं",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
"partner_page_no_more_users": "No more users to add",
"partner_page_partner_add_failed": "Failed to add partner",
"partner_page_select_partner": "Select partner",
"partner_page_shared_to_title": "Shared to",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos।",
"partner_sharing": "पार्टनर शेयरिंग",
"partners": "भागीदारों",
"password": "पासवर्ड",
@@ -822,6 +1166,14 @@
"permanent_deletion_warning_setting_description": "संपत्तियों को स्थायी रूप से हटाते समय एक चेतावनी दिखाएं",
"permanently_delete": "स्थायी रूप से हटाना",
"permanently_deleted_asset": "स्थायी रूप से हटाई गई संपत्ति",
"permission_onboarding_back": "वापस",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
"permission_onboarding_go_to_settings": "Go to settings",
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"person": "व्यक्ति",
"photo_shared_all_users": "ऐसा लगता है कि आपने अपनी तस्वीरें सभी उपयोगकर्ताओं के साथ साझा कीं या आपके पास साझा करने के लिए कोई उपयोगकर्ता नहीं है।",
"photos": "तस्वीरें",
@@ -835,12 +1187,21 @@
"play_motion_photo": "मोशन फ़ोटो चलाएं",
"play_or_pause_video": "वीडियो चलाएं या रोकें",
"port": "पत्तन",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preset": "प्रीसेट",
"preview": "पूर्व दर्शन",
"previous": "पहले का",
"previous_memory": "पिछली स्मृति",
"previous_or_next_photo": "पिछला या अगला फ़ोटो",
"primary": "प्राथमिक",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
"profile_drawer_github": "गिटहब",
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
"profile_picture_set": "प्रोफ़ाइल चित्र सेट।",
"public_album": "सार्वजनिक एल्बम",
"public_share": "सार्वजनिक शेयर",
@@ -881,6 +1242,8 @@
"reassing_hint": "चयनित संपत्तियों को किसी मौजूदा व्यक्ति को सौंपें",
"recent": "हाल ही का",
"recent_searches": "हाल की खोजें",
"recently_added": "हाल ही में जोड़ा गया",
"recently_added_page_title": "Recently Added",
"refresh": "ताज़ा करना",
"refresh_encoded_videos": "एन्कोडेड वीडियो ताज़ा करें",
"refresh_metadata": "मेटाडेटा ताज़ा करें",
@@ -924,10 +1287,12 @@
"role_editor": "संपादक",
"role_viewer": "दर्शक",
"save": "बचाना",
"save_to_gallery": "गैलरी में सहेजें",
"saved_api_key": "सहेजी गई एपीआई कुंजी",
"saved_profile": "प्रोफ़ाइल सहेजी गई",
"saved_settings": "सहेजी गई सेटिंग्स",
"say_something": "कुछ कहें",
"scaffold_body_error_occurred": "Error occurred",
"scan_all_libraries": "सभी पुस्तकालयों को स्कैन करें",
"scan_settings": "सेटिंग्स स्कैन करें",
"scanning_for_album": "एल्बम के लिए स्कैन किया जा रहा है..।",
@@ -940,11 +1305,40 @@
"search_camera_model": "कैमरा मॉडल खोजें..।",
"search_city": "शहर खोजें..।",
"search_country": "देश खोजें..।",
"search_filter_apply": "Apply filter",
"search_filter_camera_title": "कैमरा प्रकार चुनें",
"search_filter_date": "तारीख़",
"search_filter_date_interval": "{start} से {end} तक",
"search_filter_date_title": "तारीख़ की सीमा चुनें",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "प्रदर्शन विकल्प",
"search_filter_filename": "Search by file name",
"search_filter_location": "स्थान",
"search_filter_location_title": "स्थान चुनें",
"search_filter_media_type": "मीडिया प्रकार",
"search_filter_media_type_title": "मीडिया प्रकार चुनें",
"search_filter_people_title": "लोगों का चयन करें",
"search_for_existing_person": "मौजूदा व्यक्ति को खोजें",
"search_no_more_result": "No more results",
"search_no_people": "कोई लोग नहीं",
"search_no_result": "No results found, try a different search term or combination",
"search_page_categories": "Categories",
"search_page_motion_photos": "Motion Photos",
"search_page_no_objects": "No Objects Info Available",
"search_page_no_places": "No Places Info Available",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Things",
"search_page_view_all_button": "View all",
"search_page_your_activity": "Your activity",
"search_page_your_map": "Your Map",
"search_people": "लोगों को खोजें",
"search_places": "स्थान खोजें",
"search_result_page_new_search_hint": "New Search",
"search_state": "स्थिति खोजें..।",
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
"search_timezone": "समयक्षेत्र खोजें..।",
"search_type": "तलाश की विधि",
"search_your_photos": "अपनी फ़ोटो खोजें",
@@ -963,9 +1357,13 @@
"select_new_face": "नया चेहरा चुनें",
"select_photos": "फ़ोटो चुनें",
"select_trash_all": "ट्रैश ऑल का चयन करें",
"select_user_for_sharing_page_err_album": "Failed to create album",
"selected": "चयनित",
"send_message": "मेसेज भेजें",
"send_welcome_email": "स्वागत ईमेल भेजें",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_server_url": "सर्वर URL",
"server_offline": "सर्वर ऑफ़लाइन",
"server_online": "सर्वर ऑनलाइन",
"server_stats": "सर्वर आँकड़े",
@@ -976,16 +1374,85 @@
"set_date_of_birth": "जन्मतिथि निर्धारित करें",
"set_profile_picture": "प्रोफ़ाइल चित्र सेट करें",
"set_slideshow_to_fullscreen": "स्लाइड शो को फ़ुलस्क्रीन पर सेट करें",
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
"setting_image_viewer_original_title": "Load original image",
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
"setting_image_viewer_preview_title": "Load preview image",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "immediately",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "never",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
"setting_notifications_single_progress_title": "Show background backup detail progress",
"setting_notifications_subtitle": "Adjust your notification preferences",
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
"setting_notifications_total_progress_title": "Show background backup total progress",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "समायोजन",
"settings_require_restart": "Please restart Immich to apply this setting",
"settings_saved": "सेटिंग्स को सहेजा गया",
"share": "शेयर करना",
"share_add_photos": "Add photos",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "Preparing...",
"shared": "साझा",
"shared_album_activities_input_disable": "कॉमेंट डिजेबल्ड है",
"shared_album_activity_remove_content": "क्या आप इस गतिविधि को हटाना चाहते हैं?",
"shared_album_activity_remove_title": "गतिविधि हटाएं",
"shared_album_section_people_action_error": "Error leaving/removing from album",
"shared_album_section_people_action_leave": "Remove user from album",
"shared_album_section_people_action_remove_user": "Remove user from album",
"shared_album_section_people_title": "PEOPLE",
"shared_by": "द्वारा साझा",
"shared_by_you": "आपके द्वारा साझा किया गया",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "साझा किए गए लिंक",
"shared_link_clipboard_copied_massage": "Copied to clipboard",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "Error while creating shared link",
"shared_link_edit_description_hint": "शेयर विवरण दर्ज करें",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 hour",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "शेयर पासवर्ड दर्ज करें",
"shared_link_edit_submit_button": "अपडेट लिंक",
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "Expires ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "साझा किए गए लिंक का प्रबंधन करें",
"shared_links": "साझा किए गए लिंक",
"shared_with_me": "मेरे साथ साझा किया गया",
"sharing": "शेयरिंग",
"sharing_enter_password": "कृपया इस पृष्ठ को देखने के लिए पासवर्ड दर्ज करें।",
"sharing_page_album": "Shared albums",
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
"sharing_page_empty_list": "EMPTY LIST",
"sharing_sidebar_description": "साइडबार में शेयरिंग के लिए एक लिंक प्रदर्शित करें",
"sharing_silver_appbar_create_shared_album": "New shared album",
"sharing_silver_appbar_share_partner": "Share with partner",
"shift_to_permanent_delete": "संपत्ति को स्थायी रूप से हटाने के लिए ⇧ दबाएँ",
"show_album_options": "एल्बम विकल्प दिखाएँ",
"show_all_people": "सभी लोगों को दिखाओ",
@@ -1036,10 +1503,26 @@
"sunrise_on_the_beach": "समुद्र तट पर सूर्योदय",
"swap_merge_direction": "मर्ज दिशा स्वैप करें",
"sync": "साथ-साथ करना",
"sync_albums": "एल्बम्स सिंक करें",
"sync_albums_manual_subtitle": "चुने हुए बैकअप एल्बम्स में सभी अपलोड की गई वीडियो और फ़ोटो सिंक करें",
"sync_upload_album_setting_subtitle": "अपनी फ़ोटो और वीडियो बनाएँ और उन्हें इमिच पर चुने हुए एल्बम्स में अपलोड करें",
"template": "खाका",
"theme": "विषय",
"theme_selection": "थीम चयन",
"theme_selection_description": "आपके ब्राउज़र की सिस्टम प्राथमिकता के आधार पर थीम को स्वचालित रूप से प्रकाश या अंधेरे पर सेट करें",
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "प्राथमिक रंग को पृष्ठभूमि सतहों पर लागू करें",
"theme_setting_colorful_interface_title": "रंगीन इंटरफ़ेस",
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
"theme_setting_image_viewer_quality_title": "Image viewer quality",
"theme_setting_primary_color_subtitle": "प्राथमिक क्रियाओं और उच्चारणों के लिए एक रंग चुनें",
"theme_setting_primary_color_title": "प्राथमिक रंग",
"theme_setting_system_primary_color_title": "सिस्टम रंग का उपयोग करें",
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
"theme_setting_theme_subtitle": "Choose the app's theme setting",
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
"they_will_be_merged_together": "इन्हें एक साथ मिला दिया जाएगा",
"time_based_memories": "समय आधारित यादें",
"timezone": "समय क्षेत्र",
@@ -1054,7 +1537,15 @@
"trash": "कचरा",
"trash_all": "सब कचरा",
"trash_delete_asset": "संपत्ति को ट्रैश/डिलीट करें",
"trash_emptied": "कचरा खाली कर दिया",
"trash_no_results_message": "ट्रैश की गई फ़ोटो और वीडियो यहां दिखाई देंगे।",
"trash_page_delete_all": "Delete All",
"trash_page_empty_trash_dialog_content": "क्या आप अपनी कूड़ेदान संपत्तियों को खाली करना चाहते हैं? इन आइटमों को Immich से स्थायी रूप से हटा दिया जाएगा",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "No trashed assets",
"trash_page_restore_all": "सभी को पुनः स्थानांतरित करें",
"trash_page_select_assets_btn": "संपत्तियों को चयन करें",
"trash_page_title": "Trash ({})",
"type": "प्रकार",
"unarchive": "संग्रह से निकालें",
"unfavorite": "नापसंद करें",
@@ -1076,12 +1567,17 @@
"updated_password": "अद्यतन पासवर्ड",
"upload": "डालना",
"upload_concurrency": "समवर्ती अपलोड करें",
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_title": "Upload Asset",
"upload_status_duplicates": "डुप्लिकेट",
"upload_status_errors": "त्रुटियाँ",
"upload_status_uploaded": "अपलोड किए गए",
"upload_success": "अपलोड सफल रहा, नई अपलोड संपत्तियां देखने के लिए पेज को रीफ्रेश करें।",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "यूआरएल",
"usage": "प्रयोग",
"use_current_connection": "use current connection",
"use_custom_date_range": "इसके बजाय कस्टम दिनांक सीमा का उपयोग करें",
"user": "उपयोगकर्ता",
"user_id": "उपयोगकर्ता पहचान",
@@ -1093,10 +1589,16 @@
"users": "उपयोगकर्ताओं",
"utilities": "उपयोगिताओं",
"validate": "मान्य",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "चर",
"version": "संस्करण",
"version_announcement_closing": "आपका मित्र, एलेक्स",
"version_announcement_message": "नमस्कार मित्र, एप्लिकेशन का एक नया संस्करण है, कृपया अपना समय निकालकर इसे देखें <link>रिलीज नोट्स</link> और अपना सुनिश्चित करें <code>docker-compose.yml</code>, और <code>.env</code> किसी भी गलत कॉन्फ़िगरेशन को रोकने के लिए सेटअप अद्यतित है, खासकर यदि आप वॉचटावर या किसी भी तंत्र का उपयोग करते हैं जो आपके एप्लिकेशन को स्वचालित रूप से अपडेट करने का प्रबंधन करता है।",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available 🎉",
"video": "वीडियो",
"video_hover_setting": "होवर पर वीडियो थंबनेल चलाएं",
"video_hover_setting_description": "जब माउस आइटम पर घूम रहा हो तो वीडियो थंबनेल चलाएं।",
@@ -1110,13 +1612,18 @@
"view_next_asset": "अगली संपत्ति देखें",
"view_previous_asset": "पिछली संपत्ति देखें",
"view_stack": "ढेर देखें",
"viewer_remove_from_stack": "स्टैक से हटाएं",
"viewer_stack_use_as_main_asset": "मुख्य संपत्ति के रूप में उपयोग करें",
"viewer_unstack": "स्टैक रद्द करें",
"waiting": "इंतज़ार में",
"warning": "चेतावनी",
"week": "सप्ताह",
"welcome": "स्वागत",
"welcome_to_immich": "इमिच में आपका स्वागत है",
"wifi_name": "WiFi Name",
"year": "वर्ष",
"yes": "हाँ",
"you_dont_have_any_shared_links": "आपके पास कोई साझा लिंक नहीं है",
"your_wifi_name": "Your WiFi name",
"zoom_image": "छवि ज़ूम करें"
}

View File

@@ -4,6 +4,7 @@
"account_settings": "Postavke računa",
"acknowledge": "Potvrdi",
"action": "Akcija",
"action_common_update": "Ažuriranje",
"actions": "Akcije",
"active": "Aktivno",
"activity": "Aktivnost",
@@ -13,6 +14,7 @@
"add_a_location": "Dodaj lokaciju",
"add_a_name": "Dodaj ime",
"add_a_title": "Dodaj naslov",
"add_endpoint": "Dodaj krajnju točnu",
"add_exclusion_pattern": "Dodaj uzorak izuzimanja",
"add_import_path": "Dodaj import folder",
"add_location": "Dodaj lokaciju",
@@ -20,8 +22,10 @@
"add_partner": "Dodaj partnera",
"add_path": "Dodaj putanju",
"add_photos": "Dodaj slike",
"add_to": "Dodaj u...",
"add_to": "Dodaj u",
"add_to_album": "Dodaj u album",
"add_to_album_bottom_sheet_added": "Dodano u {album}",
"add_to_album_bottom_sheet_already_exists": "Već u {album}",
"add_to_shared_album": "Dodaj u dijeljeni album",
"add_url": "Dodaj URL",
"added_to_archive": "Dodano u arhivu",
@@ -41,6 +45,7 @@
"backup_settings": "Postavke sigurnosne kopije",
"backup_settings_description": "Upravljanje postavkama sigurnosne kopije baze podataka",
"check_all": "Provjeri sve",
"cleanup": "Čišćenje",
"cleared_jobs": "Izbrisani poslovi za: {job}",
"config_set_by_file": "Konfiguracija je trenutno postavljena konfiguracijskom datotekom",
"confirm_delete_library": "Jeste li sigurni da želite izbrisati biblioteku {library}?",
@@ -65,8 +70,13 @@
"forcing_refresh_library_files": "Prisilno osvježavanje svih datoteka knjižnice",
"image_format": "Format",
"image_format_description": "WebP proizvodi manje datoteke od JPEG-a, ali se sporije kodira.",
"image_fullsize_description": "Slika pune veličine bez meta podataka, koristi se prilikom zumiranja",
"image_fullsize_enabled": "Omogući generiranje slike pune veličine",
"image_fullsize_enabled_description": "Generiraj sliku pune veličine za formate koji nisu prilagođeni webu. Kada je opcija \"Preferiraj ugrađeni pregled\" omogućena, ugrađeni pregledi koriste se izravno bez konverzije. Ne utječe na formate prilagođene webu kao što je JPEG.",
"image_fullsize_quality_description": "Kvaliteta slike pune veličine od 1 do 100. Veća vrijednost znači bolja kvaliteta, ali stvara veće datoteke.",
"image_fullsize_title": "Postavke slike pune veličine",
"image_prefer_embedded_preview": "Preferiraj ugrađeni pregled",
"image_prefer_embedded_preview_setting_description": "Koristite ugrađene preglede u RAW fotografije kao ulaz za obradu slike kada su dostupni. To može proizvesti preciznije boje za neke slike, ali kvaliteta pregleda ovisi o kameri i slika može imati više artefakata kompresije.",
"image_prefer_embedded_preview_setting_description": "Koristite ugrađene preglede u RAW fotografije kao ulaz za obradu slike kada su dostupni. To može proizvesti preciznije boje za neke slike, ali kvaliteta pregleda ovisi o kameri i slika može imati više artifakta kompresije.",
"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",
@@ -96,7 +106,7 @@
"library_scanning_enable_description": "Omogući periodično skeniranje biblioteke",
"library_settings": "Externa biblioteka",
"library_settings_description": "Upravljajte postavkama vanjske biblioteke",
"library_tasks_description": "Obavljati bibliotekne zadatke",
"library_tasks_description": "Skeniraj eksterne biblioteke za nove i/ili promijenjene resurse",
"library_watching_enable_description": "Pratite vanjske biblioteke za promjena datoteke",
"library_watching_settings": "Gledanje biblioteke (EKSPERIMENTALNO)",
"library_watching_settings_description": "Automatsko praćenje promijenjenih datoteke",
@@ -131,7 +141,7 @@
"machine_learning_smart_search_description": "Pretražujte slike semantički koristeći CLIP ugradnje",
"machine_learning_smart_search_enabled": "Omogući pametno pretraživanje",
"machine_learning_smart_search_enabled_description": "Ako je onemogućeno, slike neće biti kodirane za pametno pretraživanje.",
"machine_learning_url_description": "URL poslužitelja strojnog učenja. Ako ste dodali više od jednog URLa, svaki server će biti kontaktiraj jedanput dok jedan ne odgovori uspješno, u redu od prvog do zadnjeg.",
"machine_learning_url_description": "URL poslužitelja strojnog učenja. Ako ste dodali više od jednog URLa, svaki server će biti kontaktiraj jedanput dok jedan ne odgovori uspješno, u redu od prvog do zadnjeg. Serveri koji ne odgovore će privremeno biti ignorirani dok ponovo ne postanu dostupni.",
"manage_concurrency": "Upravljanje Istovremenošću",
"manage_log_settings": "Upravljanje postavkama zapisivanje",
"map_dark_style": "Tamni stil",
@@ -147,6 +157,8 @@
"map_settings": "Karta",
"map_settings_description": "Upravljanje postavkama karte",
"map_style_description": "URL na style.json temu karte",
"memory_cleanup_job": "Čišćenje memorije",
"memory_generate_job": "Generiranje memorije",
"metadata_extraction_job": "Izdvoj metapodatke",
"metadata_extraction_job_description": "Izdvojite podatke o metapodacima iz svakog sredstva, kao što su GPS, lica i rezolucija",
"metadata_faces_import_setting": "Omogući uvoz lica",
@@ -159,7 +171,6 @@
"no_pattern_added": "Nije dodan uzorak",
"note_apply_storage_label_previous_assets": "Napomena: da biste primijenili Oznaku Pohrane na prethodno prenesena sredstva, pokrenite",
"note_cannot_be_changed_later": "NAPOMENA: Ovo se ne može promijeniti kasnije!",
"note_unlimited_quota": "Napomena: Unesite 0 za neograničenu kvotu",
"notification_email_from_address": "Od adrese",
"notification_email_from_address_description": "E-mail adresa pošiljatelja, na primjer: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Poslužitelja e-pošte (npr. smtp.immich.app)",
@@ -240,7 +251,7 @@
"storage_template_hash_verification_enabled_description": "Omogućuje hash provjeru, nemojte je onemogućiti osim ako niste sigurni u implikacije",
"storage_template_migration": "Migracija predloška za pohranu",
"storage_template_migration_description": "Primijenite trenutni <link>{template}</link> na prethodno prenesena sredstva",
"storage_template_migration_info": "Promjene predloška primjenjivat će se samo na nova sredstva. Za retroaktivnu primjenu predloška na prethodno prenesena sredstva, pokrenite <link>{job}</link>.",
"storage_template_migration_info": "Predložak za pohranu će sve nastavke (ekstenzije) pretvoriti u mala slova. Promjene predloška primjenjivat će se samo na nova sredstva. Za retroaktivnu primjenu predloška na prethodno prenesena sredstva, pokrenite <link>{job}</link>.",
"storage_template_migration_job": "Posao Migracije Predloška Pohrane",
"storage_template_more_details": "Za više pojedinosti o ovoj značajci pogledajte <template-link>Predložak pohrane</template-link> i njegove <implications-link>implikacije</implications-link>",
"storage_template_onboarding_description": "Kada je omogućena, ova će značajka automatski organizirati datoteke na temelju korisnički definiranog predloška. Zbog problema sa stabilnošću značajka je isključena prema zadanim postavkama. Za više informacija pogledajte <link>dokumentaciju</link>.",
@@ -251,6 +262,15 @@
"system_settings": "Postavke Sustava",
"tag_cleanup_job": "Čišćenje oznaka",
"template_email_available_tags": "Možete koristiti sljedeće varijable u vašem predlošku:{tags}",
"template_email_if_empty": "Ukoliko je predložak prazan, koristit će se zadana e-mail adresa.",
"template_email_invite_album": "Predložak za pozivnicu u album",
"template_email_preview": "Pregled",
"template_email_settings": "E-mail Predlošci",
"template_email_settings_description": "Upravljanje prilagođenim predlošcima za obavijesti putem e-maila",
"template_email_update_album": "Ažuriraj Album Predložak",
"template_email_welcome": "Predložak e-maila dobrodošlice",
"template_settings": "Predložak Obavijesti",
"template_settings_description": "Upravljaj prilagođenim predlošcima za obavijesti.",
"theme_custom_css_settings": "Prilagođeni CSS",
"theme_custom_css_settings_description": "Kaskadni listovi stilova (CSS) omogućuju prilagođavanje dizajna Immicha.",
"theme_settings": "Postavke tema",
@@ -280,6 +300,8 @@
"transcoding_constant_rate_factor": "Faktor konstantne stope (-crf)",
"transcoding_constant_rate_factor_description": "Razina kvalitete videa. Uobičajene vrijednosti su 23 za H.264, 28 za HEVC, 31 za VP9 i 35 za AV1. Niže je bolje, ali stvara veće datoteke.",
"transcoding_disabled_description": "Nemojte transkodirati nijedan videozapis, može prekinuti reprodukciju na nekim klijentima",
"transcoding_encoding_options": "Opcije Kodiranja",
"transcoding_encoding_options_description": "Postavi kodeke, rezoluciju, kvalitetu i druge opcije za kodirane videje",
"transcoding_hardware_acceleration": "Hardversko Ubrzanje",
"transcoding_hardware_acceleration_description": "Eksperimentalno; puno brže, ali će imati nižu kvalitetu pri istoj bitrate postavci",
"transcoding_hardware_decoding": "Hardversko dekodiranje",
@@ -292,6 +314,8 @@
"transcoding_max_keyframe_interval": "Maksimalni interval ključnih sličica",
"transcoding_max_keyframe_interval_description": "Postavlja maksimalnu udaljenost slika između ključnih kadrova. Niže vrijednosti pogoršavaju učinkovitost kompresije, ali poboljšavaju vrijeme traženja i mogu poboljšati kvalitetu u scenama s brzim kretanjem. 0 automatski postavlja ovu vrijednost.",
"transcoding_optimal_description": "Videozapisi koji su veći od ciljne rezolucije ili nisu u prihvatljivom formatu",
"transcoding_policy": "Politika Transkodiranja",
"transcoding_policy_description": "Postavi kada će video biti transkodiran",
"transcoding_preferred_hardware_device": "Preferirani hardverski uređaj",
"transcoding_preferred_hardware_device_description": "Odnosi se samo na VAAPI i QSV. Postavlja dri node koji se koristi za hardversko transkodiranje.",
"transcoding_preset_preset": "Preset (-preset)",
@@ -300,7 +324,7 @@
"transcoding_reference_frames_description": "Broj slika za referencu prilikom komprimiranja određene slike. Više vrijednosti poboljšavaju učinkovitost kompresije, ali usporavaju kodiranje. 0 automatski postavlja ovu vrijednost.",
"transcoding_required_description": "Samo videozapisi koji nisu u prihvaćenom formatu",
"transcoding_settings": "Postavke Video Transkodiranja",
"transcoding_settings_description": "Upravljajte informacijama o razlučivosti i kodiranju video datoteka",
"transcoding_settings_description": "Upravljaj koji videozapisi će se transkodirati i kako ih obraditi",
"transcoding_target_resolution": "Ciljana rezolucija",
"transcoding_target_resolution_description": "Veće razlučivosti mogu sačuvati više detalja, ali trebaju dulje za kodiranje, imaju veće veličine datoteka i mogu smanjiti odziv aplikacije.",
"transcoding_temporal_aq": "Vremenski AQ",
@@ -313,7 +337,7 @@
"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",
"transcoding_two_pass_encoding_setting_description": "Transkodiranje u dva prolaza za proizvodnju bolje kodiranih videozapisa. Kada je omogućena maksimalna brzina prijenosa (potrebna za rad s H.264 i HEVC), ovaj način rada koristi raspon brzine prijenosa na temelju maksimalne brzine prijenosa i zanemaruje CRF. Za VP9, CRF se može koristiti ako je maksimalna brzina prijenosa onemogućena.",
"transcoding_video_codec": "Video Kodek",
"transcoding_video_codec": "Video kodek",
"transcoding_video_codec_description": "VP9 ima visoku učinkovitost i web-kompatibilnost, ali treba dulje za transkodiranje. HEVC ima sličnu izvedbu, ali ima slabiju web kompatibilnost. H.264 široko je kompatibilan i brzo se transkodira, ali proizvodi mnogo veće datoteke. AV1 je najučinkovitiji kodek, ali nema podršku na starijim uređajima.",
"trash_enabled_description": "Omogućite značajke Smeća",
"trash_number_of_days": "Broj dana",
@@ -347,6 +371,20 @@
"admin_password": "Admin Lozinka",
"administration": "Administracija",
"advanced": "Napredno",
"advanced_settings_enable_alternate_media_filter_subtitle": "Koristite ovu opciju za filtriranje medija tijekom sinkronizacije na temelju alternativnih kriterija. Pokušajte ovo samo ako imate problema s aplikacijom koja ne prepoznaje sve albume.",
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTALNO] Koristite alternativni filter za sinkronizaciju albuma na uređaju",
"advanced_settings_log_level_title": "Razina zapisivanja: {}",
"advanced_settings_prefer_remote_subtitle": "Neki uređaji sporo učitavaju sličice s resursa na uređaju. Aktivirajte ovu postavku kako biste umjesto toga učitali slike s udaljenih izvora.",
"advanced_settings_prefer_remote_title": "Preferiraj udaljene slike",
"advanced_settings_proxy_headers_subtitle": "Definirajte zaglavlja posrednika koja Immich treba slati sa svakim mrežnim zahtjevom.",
"advanced_settings_proxy_headers_title": "Zaglavlja Posrednika",
"advanced_settings_self_signed_ssl_subtitle": "Preskoči provjeru SSL certifikata za krajnju točku poslužitelja. Potrebno za samo-potpisane certifikate.",
"advanced_settings_self_signed_ssl_title": "Dopusti samo-potpisane SSL certifikate",
"advanced_settings_sync_remote_deletions_subtitle": "Automatski izbriši ili obnovi resurs na ovom uređaju kada se ta radnja izvrši na webu",
"advanced_settings_sync_remote_deletions_title": "Sinkroniziraj udaljena brisanja [EKSPERIMENTALNO]",
"advanced_settings_tile_subtitle": "Postavke za napredne korisnike",
"advanced_settings_troubleshooting_subtitle": "Omogući dodatne značajke za rješavanje problema",
"advanced_settings_troubleshooting_title": "Rješavanje problema",
"age_months": "Dob {months, plural, one {# month} other {# months}}",
"age_year_months": "Dob 1 godina, {months, plural, one {# month} other {# months}}",
"age_years": "{years, plural, other {Age #}}",
@@ -355,6 +393,8 @@
"album_cover_updated": "Naslovnica albuma ažurirana",
"album_delete_confirmation": "Jeste li sigurni da želite izbrisati album {album}?",
"album_delete_confirmation_description": "Ako se ovaj album dijeli, drugi korisnici mu više neće moći pristupiti.",
"album_info_card_backup_album_excluded": "IZUZETO",
"album_info_card_backup_album_included": "UKLJUČENO",
"album_info_updated": "Podaci o albumu ažurirani",
"album_leave": "Napustiti album?",
"album_leave_confirmation": "Jeste li sigurni da želite napustiti {album}?",
@@ -363,10 +403,22 @@
"album_remove_user": "Ukloni korisnika?",
"album_remove_user_confirmation": "Jeste li sigurni da želite ukloniti {user}?",
"album_share_no_users": "Čini se da ste podijelili ovaj album sa svim korisnicima ili nemate nijednog korisnika s kojim biste ga dijelili.",
"album_thumbnail_card_item": "1 stavka",
"album_thumbnail_card_items": "{} stavki",
"album_thumbnail_card_shared": " · Podijeljeno",
"album_thumbnail_shared_by": "Podijeljeno sa {}",
"album_updated": "Album ažuriran",
"album_updated_setting_description": "Primite obavijest e-poštom kada dijeljeni album ima nova sredstva",
"album_user_left": "Napušten {album}",
"album_user_removed": "Uklonjen {user}",
"album_viewer_appbar_delete_confirm": "Jeste li sigurni da želite izbrisati ovaj album s vašeg računa?",
"album_viewer_appbar_share_err_delete": "Neuspješno brisanje albuma",
"album_viewer_appbar_share_err_leave": "Neuspješno napuštanje albuma",
"album_viewer_appbar_share_err_remove": "Postoje problemi s uklanjanjem resursa iz albuma",
"album_viewer_appbar_share_err_title": "Neuspješno mijenjanje naslova albuma",
"album_viewer_appbar_share_leave": "Napusti album",
"album_viewer_appbar_share_to": "Podijeli s",
"album_viewer_page_share_add_users": "Dodaj korisnike",
"album_with_link_access": "Dopusti svima s poveznicom pristup fotografijama i osobama u ovom albumu.",
"albums": "Albumi",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumi}}",
@@ -378,47 +430,139 @@
"allow_edits": "Dozvoli izmjene",
"allow_public_user_to_download": "Dopusti javnom korisniku preuzimanje",
"allow_public_user_to_upload": "Dopusti javnom korisniku učitavanje",
"alt_text_qr_code": "Slika QR koda",
"anti_clockwise": "Suprotno smjeru kazaljke na satu",
"api_key": "API Ključ",
"api_key_description": "Ova će vrijednost biti prikazana samo jednom. Obavezno ju kopirajte prije zatvaranja prozora.",
"api_key_empty": "Naziv vašeg API ključa ne smije biti prazan",
"api_keys": "API Ključevi",
"app_bar_signout_dialog_content": "Jeste li sigurni da se želite odjaviti?",
"app_bar_signout_dialog_ok": "Da",
"app_bar_signout_dialog_title": "Odjavi se",
"app_settings": "Postavke Aplikacije",
"appears_in": "Pojavljuje se u",
"archive": "Arhiva",
"archive_or_unarchive_photo": "Arhivirajte ili dearhivirajte fotografiju",
"archive_page_no_archived_assets": "Nema arhiviranih resursa",
"archive_page_title": "Arhiviraj {{}}",
"archive_size": "Veličina arhive",
"archive_size_description": "Konfigurirajte veličinu arhive za preuzimanja (u GiB)",
"archived": "Ahrivirano",
"archived_count": "{count, plural, other {Archived #}}",
"are_these_the_same_person": "Je li ovo ista osoba?",
"are_you_sure_to_do_this": "Jeste li sigurni da to želite učiniti?",
"asset_action_delete_err_read_only": "Nije moguće izbrisati resurse samo za čitanje, preskačem",
"asset_action_share_err_offline": "Nije moguće dohvatiti izvanmrežne resurse, preskačem",
"asset_added_to_album": "Dodano u album",
"asset_adding_to_album": "Dodavanje u album...",
"asset_adding_to_album": "Dodavanje u album",
"asset_description_updated": "Opis imovine je ažuriran",
"asset_filename_is_offline": "Sredstvo {filename} je izvan mreže",
"asset_has_unassigned_faces": "Materijal ima nedodijeljena lica",
"asset_hashing": "Hashiranje...",
"asset_hashing": "Sažimanje",
"asset_list_group_by_sub_title": "Grupiraj po",
"asset_list_layout_settings_dynamic_layout_title": "Dinamički raspored",
"asset_list_layout_settings_group_automatically": "Automatski",
"asset_list_layout_settings_group_by": "Grupiraj resurse po",
"asset_list_layout_settings_group_by_month_day": "Mjesec + dan",
"asset_list_layout_sub_title": "Raspored",
"asset_list_settings_subtitle": "Postavke izgleda mreže fotografija",
"asset_list_settings_title": "Mreža Fotografija",
"asset_offline": "Sredstvo izvan mreže",
"asset_offline_description": "Ovaj materijal je izvan mreže. Immich ne može pristupiti lokaciji datoteke. Provjerite je li sredstvo dostupno, a zatim ponovno skenirajte biblioteku.",
"asset_restored_successfully": "Resurs uspješno obnovljen",
"asset_skipped": "Preskočeno",
"asset_skipped_in_trash": "U smeću",
"asset_uploaded": "Učitano",
"asset_uploading": "Učitavanje...",
"asset_uploading": "Šaljem…",
"asset_viewer_settings_subtitle": "Upravljajte postavkama preglednika vaše galerije",
"asset_viewer_settings_title": "Preglednik Resursa",
"assets": "Sredstva",
"assets_added_count": "Dodano {count, plural, one {# asset} other {# assets}}",
"assets_added_to_album_count": "Dodano {count, plural, one {# asset} other {# assets}} u album",
"assets_added_to_name_count": "Dodano {count, plural, one {# asset} other {# assets}} u {hasName, select, true {<b>{name}</b>} other {new album}}",
"assets_count": "{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently": "{} resurs(i) uspješno uklonjeni",
"assets_deleted_permanently_from_server": "{} resurs(i) trajno obrisan(i) sa Immich poslužitelja",
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# asset}} premješteno u smeće",
"assets_permanently_deleted_count": "Trajno izbrisano {count, plural, one {# asset} other {# assets}}",
"assets_removed_count": "Uklonjeno {count, plural, one {# asset} other {# assets}}",
"assets_restore_confirmation": "Jeste li sigurni da želite vratiti sve svoje resurse bačene u otpad? Ne možete poništiti ovu radnju!",
"assets_removed_permanently_from_device": "{} resurs(i) trajno uklonjen(i) s vašeg uređaja",
"assets_restore_confirmation": "Jeste li sigurni da želite obnoviti sve svoje resurse bačene u otpad? Ne možete poništiti ovu radnju! Imajte na umu da se bilo koji izvanmrežni resursi ne mogu obnoviti na ovaj način.",
"assets_restored_count": "Vraćeno {count, plural, one {# asset} other {# assets}}",
"assets_restored_successfully": "{} resurs(i) uspješno obnovljen(i)",
"assets_trashed": "{} resurs(i) premješten(i) u smeće",
"assets_trashed_count": "Bačeno u smeće {count, plural, one {# asset} other {# assets}}",
"assets_trashed_from_server": "{} resurs(i) premješten(i) u smeće s Immich poslužitelja",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} već dio albuma",
"authorized_devices": "Ovlašteni Uređaji",
"automatic_endpoint_switching_subtitle": "Povežite se lokalno preko naznačene Wi-Fi mreže kada je dostupna i koristite alternativne veze na drugim lokacijama",
"automatic_endpoint_switching_title": "Automatsko prebacivanje URL-a",
"back": "Nazad",
"back_close_deselect": "Natrag, zatvorite ili poništite odabir",
"background_location_permission": "Dozvola za lokaciju u pozadini",
"background_location_permission_content": "Kako bi prebacivao mreže dok radi u pozadini, Immich mora *uvijek* imati pristup preciznoj lokaciji kako bi aplikacija mogla pročitati naziv Wi-Fi mreže",
"backup_album_selection_page_albums_device": "Albumi na uređaju {{}}",
"backup_album_selection_page_albums_tap": "Dodirnite za uključivanje, dvostruki dodir za isključivanje",
"backup_album_selection_page_assets_scatter": "Resursi mogu biti raspoređeni u više albuma. Stoga, albumi mogu biti uključeni ili isključeni tijekom procesa sigurnosnog kopiranja.",
"backup_album_selection_page_select_albums": "Odabrani albumi",
"backup_album_selection_page_selection_info": "Informacije o odabiru",
"backup_album_selection_page_total_assets": "Ukupan broj jedinstvenih resursa",
"backup_all": "Sve",
"backup_background_service_backup_failed_message": "Neuspješno sigurnosno kopiranje resursa. Pokušavam ponovo…",
"backup_background_service_connection_failed_message": "Neuspješno povezivanje s poslužiteljem. Pokušavam ponovo…",
"backup_background_service_current_upload_notification": "Šaljem {}",
"backup_background_service_default_notification": "Provjera novih resursa…",
"backup_background_service_error_title": "Pogreška pri sigurnosnom kopiranju",
"backup_background_service_in_progress_notification": "Sigurnosno kopiranje vaših resursa…",
"backup_background_service_upload_failure_notification": "Neuspješno slanje {}",
"backup_controller_page_albums": "Sigurnosno kopiranje albuma",
"backup_controller_page_background_app_refresh_disabled_content": "Omogućite osvježavanje aplikacije u pozadini u Postavke > Opće Postavke > Osvježavanje Aplikacija u Pozadini kako biste koristili sigurnosno kopiranje u pozadini.",
"backup_controller_page_background_app_refresh_disabled_title": "Osvježavanje aplikacija u pozadini je onemogućeno",
"backup_controller_page_background_app_refresh_enable_button_text": "Idite u postavke",
"backup_controller_page_background_battery_info_link": "Pokaži mi kako",
"backup_controller_page_background_battery_info_message": "Za najbolje iskustvo sigurnosnog kopiranja u pozadini, molimo onemogućite sve optimizacije baterije koje ograničavaju pozadinsku aktivnost Immicha.\n\nBudući da je ovo specifično za uređaj, molimo potražite potrebne informacije za proizvođača vašeg uređaja.",
"backup_controller_page_background_battery_info_ok": "U redu",
"backup_controller_page_background_battery_info_title": "Optimizacije baterije",
"backup_controller_page_background_charging": "Samo tijekom punjenja",
"backup_controller_page_background_configure_error": "Neuspješno konfiguriranje pozadinske usluge",
"backup_controller_page_background_delay": "Odgođeno sigurnosno kopiranje novih resursa: {}",
"backup_controller_page_background_description": "Uključite pozadinsku uslugu kako biste automatski sigurnosno kopirali nove resurse bez potrebe za otvaranjem aplikacije",
"backup_controller_page_background_is_off": "Automatsko sigurnosno kopiranje u pozadini je isključeno",
"backup_controller_page_background_is_on": "Automatsko sigurnosno kopiranje u pozadini je uključeno",
"backup_controller_page_background_turn_off": "Isključite pozadinsku uslugu",
"backup_controller_page_background_turn_on": "Uključite pozadinsku uslugu",
"backup_controller_page_background_wifi": "Samo na Wi-Fi mreži",
"backup_controller_page_backup": "Sigurnosna kopija",
"backup_controller_page_backup_selected": "Odabrani: ",
"backup_controller_page_backup_sub": "Sigurnosno kopirane fotografije i videozapisi",
"backup_controller_page_created": "Kreirano: {}",
"backup_controller_page_desc_backup": "Uključite sigurnosno kopiranje u prvom planu kako biste automatski prenijeli nove resurse na poslužitelj prilikom otvaranja aplikacije.",
"backup_controller_page_excluded": "Izuzeto: ",
"backup_controller_page_failed": "Neuspješno ({})",
"backup_controller_page_filename": "Naziv datoteke: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Informacije o sigurnosnom kopiranju",
"backup_controller_page_none_selected": "Nema odabranih",
"backup_controller_page_remainder": "Podsjetnik",
"backup_controller_page_remainder_sub": "Preostale fotografije i videozapisi za sigurnosno kopiranje iz odabira",
"backup_controller_page_server_storage": "Pohrana na poslužitelju",
"backup_controller_page_start_backup": "Pokreni Sigurnosno Kopiranje",
"backup_controller_page_status_off": "Automatsko sigurnosno kopiranje u prvom planu je isključeno",
"backup_controller_page_status_on": "Automatsko sigurnosno kopiranje u prvom planu je uključeno",
"backup_controller_page_storage_format": "{} od {} iskorišteno",
"backup_controller_page_to_backup": "Albumi za sigurnosno kopiranje",
"backup_controller_page_total_sub": "Sve jedinstvene fotografije i videozapisi iz odabranih albuma",
"backup_controller_page_turn_off": "Isključite sigurnosno kopiranje u prvom planu",
"backup_controller_page_turn_on": "Uključite sigurnosno kopiranje u prvom planu",
"backup_controller_page_uploading_file_info": "Slanje informacija o datoteci",
"backup_err_only_album": "Nije moguće ukloniti jedini album",
"backup_info_card_assets": "resursi",
"backup_manual_cancelled": "Otkazano",
"backup_manual_in_progress": "Slanje već u tijeku. Pokšuajte nakon nekog vremena",
"backup_manual_success": "Uspijeh",
"backup_manual_title": "Status slanja",
"backup_options_page_title": "Opcije sigurnosnog kopiranja",
"backup_setting_subtitle": "Upravljajte postavkama učitavanja u pozadini i prvom planu",
"backward": "Unazad",
"birthdate_saved": "Datum rođenja uspješno spremljen",
"birthdate_set_description": "Datum rođenja se koristi za izračunavanje godina ove osobe u trenutku fotografije.",
@@ -430,6 +574,16 @@
"bulk_keep_duplicates_confirmation": "Jeste li sigurni da želite zadržati {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će riješiti sve duplicirane grupe bez brisanja ičega.",
"bulk_trash_duplicates_confirmation": "Jeste li sigurni da želite na veliko baciti u smeće {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će zadržati najveće sredstvo svake grupe i baciti sve ostale duplikate u smeće.",
"buy": "Kupi Immich",
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke ({} resursa)",
"cache_settings_clear_cache_button": "Očisti predmemoriju",
"cache_settings_clear_cache_button_title": "Briše predmemoriju aplikacije. Ovo će značajno utjecati na performanse aplikacije dok se predmemorija ponovno ne izgradi.",
"cache_settings_duplicated_assets_clear_button": "OČISTI",
"cache_settings_duplicated_assets_subtitle": "Fotografije i videozapisi koje je aplikacija stavila na crnu listu",
"cache_settings_duplicated_assets_title": "Duplicirani Resursi ({})",
"cache_settings_image_cache_size": "Veličina predmemorije slika ({} resursa)",
"cache_settings_statistics_album": "Sličice biblioteke",
"cache_settings_statistics_assets": "{} resursa ({})",
"cache_settings_statistics_full": "Pune slike",
"camera": "Kamera",
"camera_brand": "Marka kamere",
"camera_model": "Model kamere",
@@ -761,6 +915,8 @@
"hide_unnamed_people": "Sakrij neimenovane osobe",
"host": "Domaćin",
"hour": "Sat",
"ignore_icloud_photos": "Ignoriraj iCloud fotografije",
"ignore_icloud_photos_description": "Fotografije pohranjene na iCloudu neće biti učitane na Immich poslužitelj",
"image": "Slika",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} snimljeno {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} snimljeno s {person1} {date}",
@@ -772,6 +928,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} snimljeno u {city}, {country} s {person1} i {person2} {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} snimljeno u {city}, {country} s {person1}, {person2} i {person3} {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} snimljeno u {city}, {country} s {person1}, {person2} i {additionalCount, number} drugih {date}",
"image_saved_successfully": "Slika je spremljena",
"image_viewer_page_state_provider_download_started": "Preuzimanje započelo",
"image_viewer_page_state_provider_download_success": "Uspješno Preuzimanje",
"image_viewer_page_state_provider_share_error": "Greška pri dijeljenju",
"immich_logo": "Immich Logo",
"immich_web_interface": "Immich Web Sučelje",
"import_from_json": "Uvoz iz JSON-a",
@@ -893,7 +1053,6 @@
"no_shared_albums_message": "Stvorite album za dijeljenje fotografija i videozapisa s osobama u svojoj mreži",
"not_in_any_album": "Ni u jednom albumu",
"note_apply_storage_label_to_previously_uploaded assets": "Napomena: Da biste primijenili Oznaku za skladištenje na prethodno prenesena sredstva, pokrenite",
"note_unlimited_quota": "napomena: Unesite 0 za neograni%C4%8Denu kvotu",
"notes": "Bilješke",
"notification_toggle_setting_description": "Omogući obavijesti putem e-pošte",
"notifications": "Obavijesti",

View File

@@ -4,6 +4,7 @@
"account_settings": "Fiók Beállítások",
"acknowledge": "Megértettem",
"action": "Művelet",
"action_common_update": "Frissít",
"actions": "Műveletek",
"active": "Feldolgozás alatt",
"activity": "Tevékenység",
@@ -13,6 +14,7 @@
"add_a_location": "Helyszín hozzáadása",
"add_a_name": "Név megadása",
"add_a_title": "Címadás",
"add_endpoint": "Végpont megadása",
"add_exclusion_pattern": "Kihagyási minta (pattern) hozzáadása",
"add_import_path": "Importálási útvonal hozzáadása",
"add_location": "Helyszín megadása",
@@ -22,6 +24,8 @@
"add_photos": "Fotók hozzáadása",
"add_to": "Hozzáadás ide…",
"add_to_album": "Felvétel albumba",
"add_to_album_bottom_sheet_added": "Hozzáadva a(z) \"{album}\" albumhoz",
"add_to_album_bottom_sheet_already_exists": "Már benne van a(z) \"{album}\" albumban",
"add_to_shared_album": "Felvétel megosztott albumba",
"add_url": "URL hozzáadása",
"added_to_archive": "Hozzáadva az archívumhoz",
@@ -167,7 +171,6 @@
"no_pattern_added": "Nincs megadva minta (pattern)",
"note_apply_storage_label_previous_assets": "Megjegyzés: Ha a korábban feltöltött elemekhez is szeretne Tárhely Címkéket társítani, akkor futtassa ezt",
"note_cannot_be_changed_later": "FIGYELEM: ezt később nem lehet megváltoztatni!",
"note_unlimited_quota": "Megjegyzés: 0 = korlátlan kvóta",
"notification_email_from_address": "Feladó cím",
"notification_email_from_address_description": "Küldő email címe, például: \"Immich Fotószerver <noreply@example.com>\"",
"notification_email_host_description": "Email szerver kiszolgálója (pl. smtp.immich.app)",
@@ -368,6 +371,16 @@
"admin_password": "Admin Jelszó",
"administration": "Adminisztráció",
"advanced": "Haladó",
"advanced_settings_log_level_title": "Naplózás szintje: {}",
"advanced_settings_prefer_remote_subtitle": "Néhány eszköz fájdalmasan lassan tölti be az eszközön lévő bélyegképeket. Ez a beállítás inkább a távoli képeket tölti be helyettük.",
"advanced_settings_prefer_remote_title": "Távoli képek előnyben részesítése",
"advanced_settings_proxy_headers_subtitle": "Add meg azokat a proxy fejléceket, amiket az app elküldjön minden hálózati kérésnél",
"advanced_settings_proxy_headers_title": "Proxy Fejlécek",
"advanced_settings_self_signed_ssl_subtitle": "Nem ellenőrzi a szerver SSL tanúsítványát. Önaláírt tanúsítvány esetén szükséges beállítás.",
"advanced_settings_self_signed_ssl_title": "Önaláírt SSL tanúsítványok engedélyezése",
"advanced_settings_tile_subtitle": "Haladó felhasználói beállítások",
"advanced_settings_troubleshooting_subtitle": "További funkciók engedélyezése hibaelhárítás céljából",
"advanced_settings_troubleshooting_title": "Hibaelhárítás",
"age_months": "Kor {months, plural, one {# hónap} other {# hónap}}",
"age_year_months": "Kor 1 év, {months, plural, one {# hónap} other {# hónap}}",
"age_years": "{years, plural, other {# év}}",
@@ -376,6 +389,8 @@
"album_cover_updated": "Album borító frissítve",
"album_delete_confirmation": "Biztos, hogy ki szeretnéd törölni a(z) {album} albumot?",
"album_delete_confirmation_description": "Amennyiben ez egy megosztott album, a többi felhasználó sem fog tudni többé hozzáférni.",
"album_info_card_backup_album_excluded": "KIHAGYVA",
"album_info_card_backup_album_included": "BELEÉRTVE",
"album_info_updated": "Album infó frissítve",
"album_leave": "Kilépsz az albumból?",
"album_leave_confirmation": "Biztos, hogy ki szeretnél lépni a(z) {album} albumból?",
@@ -384,10 +399,22 @@
"album_remove_user": "Felhasználó törlése?",
"album_remove_user_confirmation": "Biztos, hogy el szeretnéd távolítani {user} felhasználót?",
"album_share_no_users": "Úgy tűnik, hogy már minden felhasználóval megosztottad ezt az albumot, vagy nincs senki, akivel meg tudnád osztani.",
"album_thumbnail_card_item": "1 elem",
"album_thumbnail_card_items": "{} elem",
"album_thumbnail_card_shared": "· Megosztott",
"album_thumbnail_shared_by": "Megosztotta: {}",
"album_updated": "Album frissült",
"album_updated_setting_description": "Küldjön email értesítőt, amikor egy megosztott albumhoz új elemeket adnak hozzá",
"album_user_left": "Kiléptél a(z) {album} albumból",
"album_user_removed": "{user} eltávolítva",
"album_viewer_appbar_delete_confirm": "Biztos, hogy törölni szeretnéd ezt az albumot?",
"album_viewer_appbar_share_err_delete": "Az album törlése sikertelen",
"album_viewer_appbar_share_err_leave": "Nem sikerült kilépni az albumból",
"album_viewer_appbar_share_err_remove": "Néhány elemet nem sikerült törölni az albumból",
"album_viewer_appbar_share_err_title": "Az album átnevezése sikertelen",
"album_viewer_appbar_share_leave": "Kilépés az albumból",
"album_viewer_appbar_share_to": "Megosztás Ide",
"album_viewer_page_share_add_users": "Felhasználók hozzáadása",
"album_with_link_access": "A link birtokában bárki láthatja a fotókat és a személyeket ebben az albumban.",
"albums": "Albumok",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Album}}",
@@ -405,42 +432,133 @@
"api_key_description": "Ez csak most az egyszer jelenik meg. Az ablak bezárása előtt feltétlenül másold.",
"api_key_empty": "Az API Kulcs név nem kéne, hogy üres legyen",
"api_keys": "API Kulcsok",
"app_bar_signout_dialog_content": "Biztos, hogy ki szeretnél jelentkezni?",
"app_bar_signout_dialog_ok": "Igen",
"app_bar_signout_dialog_title": "Kijelentkezés",
"app_settings": "Alkalmazás Beállítások",
"appears_in": "Itt szerepel",
"archive": "Archívum",
"archive_or_unarchive_photo": "Fotó archiválása vagy archiválásának visszavonása",
"archive_page_no_archived_assets": "Nem található archivált elem",
"archive_page_title": "Archívum ({})",
"archive_size": "Archívum mérete",
"archive_size_description": "Beállítja letöltésnél az archívum méretét (GiB)",
"archived": "Archivált",
"archived_count": "{count, plural, other {Archiválva #}}",
"are_these_the_same_person": "Ugyanaz a személy?",
"are_you_sure_to_do_this": "Biztosan ezt szeretnéd csinálni?",
"asset_action_delete_err_read_only": "Csak-olvasható elem(ek)et nem lehet törölni, így ezeket átugorjuk",
"asset_action_share_err_offline": "Nem lehet betölteni a kapcsolat nélküli elem(ek)et, így ezeket kihagyjuk",
"asset_added_to_album": "Hozzáadva az albumhoz",
"asset_adding_to_album": "Hozzáadás az albumhoz…",
"asset_description_updated": "Az elem leírása frissült",
"asset_filename_is_offline": "A(z) {filename} elem nem elérhető, mert offline",
"asset_has_unassigned_faces": "Az elemnek hozzá nem rendelt arcai vannak",
"asset_hashing": "Hash számítása…",
"asset_list_group_by_sub_title": "Csoportosítás",
"asset_list_layout_settings_dynamic_layout_title": "Dinamikus elrendezés",
"asset_list_layout_settings_group_automatically": "Automatikusan",
"asset_list_layout_settings_group_by": "Elemek csoportosítása",
"asset_list_layout_settings_group_by_month_day": "Hónapok és napok szerint",
"asset_list_layout_sub_title": "Elrendezés",
"asset_list_settings_subtitle": "Fotórács elrendezése",
"asset_list_settings_title": "Fotórács",
"asset_offline": "Elem Offline",
"asset_offline_description": "Ez a külső elem már nem elérhető a lemezen. Kérlek, lépj kapcsolatba az Immich adminisztrátorával.",
"asset_restored_successfully": "Elem sikeresen helyreállítva",
"asset_skipped": "Kihagyva",
"asset_skipped_in_trash": "Lomtárban",
"asset_uploaded": "Feltöltve",
"asset_uploading": "Feltöltés…",
"asset_viewer_settings_subtitle": "A képnézegető beállításainak kezelése",
"asset_viewer_settings_title": "Elem Megjelenítő",
"assets": "Elemek",
"assets_added_count": "{count, plural, other {# elem}} hozzáadva",
"assets_added_to_album_count": "{count, plural, other {# elem}} hozzáadva az albumhoz",
"assets_added_to_name_count": "{count, plural, other {# elem}} hozzáadva {hasName, select, true {a(z) <b>{name}</b>} other {az új}} albumhoz",
"assets_count": "{count, plural, other {# elem}}",
"assets_deleted_permanently": "{} elem véglegesen törölve",
"assets_deleted_permanently_from_server": "{} elem véglegesen törölve az Immich szerverről",
"assets_moved_to_trash_count": "{count, plural, other {# elem}} áthelyezve a lomtárba",
"assets_permanently_deleted_count": "{count, plural, other {# elem}} véglegesen törölve",
"assets_removed_count": "{count, plural, other {# elem}} eltávolítva",
"assets_removed_permanently_from_device": "{} elem véglegesen törölve az eszközödről",
"assets_restore_confirmation": "Biztos, hogy visszaállítod a lomtárban lévő összes elemet? Ez a művelet nem visszavonható! Megjegyzés: az offline elemeket nem lehet így visszaállítani.",
"assets_restored_count": "{count, plural, other {# elem}} visszaállítva",
"assets_restored_successfully": "{} elem sikeresen helyreállítva",
"assets_trashed": "{} elem lomtárba helyezve",
"assets_trashed_count": "{count, plural, other {# elem}} a lomtárba helyezve",
"assets_trashed_from_server": "{} elem lomtárba helyezve az Immich szerveren",
"assets_were_part_of_album_count": "{count, plural, other {# elem}} már eleve szerepelt az albumban",
"authorized_devices": "Engedélyezett Eszközök",
"automatic_endpoint_switching_subtitle": "A megadott WiFi-n keresztül helyi hálózaton keresztül kapcsolódolik, egyébként az alternatív címeket használja",
"automatic_endpoint_switching_title": "Automatikus URL cím váltás",
"back": "Vissza",
"back_close_deselect": "Vissza, bezárás, vagy kijelölés törlése",
"background_location_permission": "Háttérben történő helymeghatározási engedély",
"background_location_permission_content": "Hálózatok automatikus váltásához az Immich-nek *mindenképpen* hozzá kell férnie a pontos helyzethez, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
"backup_album_selection_page_albums_device": "Ezen az eszközön lévő albumok ({})",
"backup_album_selection_page_albums_tap": "Koppints a hozzáadáshoz, duplán koppints az eltávolításhoz",
"backup_album_selection_page_assets_scatter": "Egy elem több albumban is lehet. Ezért a mentéshez albumokat lehet hozzáadni vagy azokat a mentésből kihagyni.",
"backup_album_selection_page_select_albums": "Válassz albumokat",
"backup_album_selection_page_selection_info": "Összegzés",
"backup_album_selection_page_total_assets": "Összes egyedi elem",
"backup_all": "Összes",
"backup_background_service_backup_failed_message": "Az elemek mentése sikertelen. Újrapróbálkozás...",
"backup_background_service_connection_failed_message": "A szerverhez csatlakozás sikertelen. Újrapróbálkozás...",
"backup_background_service_current_upload_notification": "Feltöltés {}",
"backup_background_service_default_notification": "Új elemek ellenőrzése...",
"backup_background_service_error_title": "Hiba a mentés közben",
"backup_background_service_in_progress_notification": "Elemek mentése folyamatban…",
"backup_background_service_upload_failure_notification": "A feltöltés sikertelen {}",
"backup_controller_page_albums": "Albumok Mentése",
"backup_controller_page_background_app_refresh_disabled_content": "Engedélyezd a háttérben történő frissítést a Beállítások > Általános > Háttérben Frissítés menüpontban.",
"backup_controller_page_background_app_refresh_disabled_title": "Háttérben frissítés kikapcsolva",
"backup_controller_page_background_app_refresh_enable_button_text": "Beállítások megnyitása",
"backup_controller_page_background_battery_info_link": "Mutasd meg hogyan",
"backup_controller_page_background_battery_info_message": "A sikeres háttérben történő mentéshez kérjük, tiltsd le az Immich akkumulátor optimalizálását.\n\nMivel ezt a különféle eszközökön máshogy kell, ezért kérjük, az eszközöd gyártójától tudd meg, hogyan kell.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Akkumulátor optimalizálás",
"backup_controller_page_background_charging": "Csak töltés közben",
"backup_controller_page_background_configure_error": "A háttérszolgáltatás beállítása sikertelen",
"backup_controller_page_background_delay": "Új elemek mentésének késleltetése: {}",
"backup_controller_page_background_description": "Kapcsold be a háttérfolyamatot, hogy automatikusan mentsen elemeket az applikáció megnyitása nélkül",
"backup_controller_page_background_is_off": "Automatikus mentés a háttérben ki van kapcsolva",
"backup_controller_page_background_is_on": "Automatikus mentés a háttérben be van kapcsolva",
"backup_controller_page_background_turn_off": "Háttérszolgáltatás kikapcsolása",
"backup_controller_page_background_turn_on": "Háttérszolgáltatás bekapcsolása",
"backup_controller_page_background_wifi": "Csak WiFi-n",
"backup_controller_page_backup": "Mentés",
"backup_controller_page_backup_selected": "Kiválasztva: ",
"backup_controller_page_backup_sub": "Mentett fotók és videók",
"backup_controller_page_created": "Létrehozva: {}",
"backup_controller_page_desc_backup": "Ha bekapcsolod az előtérben mentést, akkor az új elemek automatikusan feltöltődnek a szerverre, amikor megyitod az alkalmazást.",
"backup_controller_page_excluded": "Kivéve: ",
"backup_controller_page_failed": "Sikertelen ({})",
"backup_controller_page_filename": "Fájlnév: {}[{}]",
"backup_controller_page_id": "Azonosító: {}",
"backup_controller_page_info": "Mentési Információk",
"backup_controller_page_none_selected": "Egy sincs kiválasztva",
"backup_controller_page_remainder": "Hátralévő",
"backup_controller_page_remainder_sub": "Hátralévő fotók és videók a kijelöltek közül",
"backup_controller_page_server_storage": "Szerver Tárhely",
"backup_controller_page_start_backup": "Mentés Indítása",
"backup_controller_page_status_off": "Automatikus mentés az előtérben ki van kapcsolva",
"backup_controller_page_status_on": "Automatikus mentés az előtérben be van kapcsolva",
"backup_controller_page_storage_format": "{} / {} felhasználva",
"backup_controller_page_to_backup": "Mentésre kijelölt albumok",
"backup_controller_page_total_sub": "Minden egyedi fotó és videó a kijelölt albumokból",
"backup_controller_page_turn_off": "Előtérben mentés kikapcsolása",
"backup_controller_page_turn_on": "Előtérben mentés bekapcsolása",
"backup_controller_page_uploading_file_info": "Fájl információk feltöltése",
"backup_err_only_album": "Az utolsó albumot nem tudod törölni",
"backup_info_card_assets": "elemek",
"backup_manual_cancelled": "Megszakítva",
"backup_manual_in_progress": "Feltöltés már folyamatban. Próbáld meg később",
"backup_manual_success": "Sikeres",
"backup_manual_title": "Feltöltés állapota",
"backup_options_page_title": "Biztonági mentés beállításai",
"backup_setting_subtitle": "A háttérben és előtérben mentés beállításainak kezelése",
"backward": "Visszafele",
"birthdate_saved": "Születésnap elmentve",
"birthdate_set_description": "A születés napját a rendszer arra használja, hogy kiírja, hogy a fénykép készítésekor a személy hány éves volt.",
@@ -452,24 +570,52 @@
"bulk_keep_duplicates_confirmation": "Biztosan meg szeretnél tartani {count, plural, other {# egyező elemet}}? Ez a művelet az elemek törlése nélkül megszünteti az összes duplikált csoportosítást.",
"bulk_trash_duplicates_confirmation": "Biztosan kitörölsz {count, plural, one {# duplikált fájlt} other {# duplikált fájlt}}? Ez a művelet megtartja minden csoportból a legnagyobb méretű elemet, és kitöröl minden másik duplikáltat.",
"buy": "Immich Megvásárlása",
"cache_settings_album_thumbnails": "Képtár oldalankénti bélyegképei ({} elem)",
"cache_settings_clear_cache_button": "Gyorsítótár kiürítése",
"cache_settings_clear_cache_button_title": "Kiüríti az alkalmazás gyorsítótárát. Ez jelentősen kihat az alkalmazás teljesítményére, amíg a gyorsítótár újra nem épül.",
"cache_settings_duplicated_assets_clear_button": "KIÜRÍT",
"cache_settings_duplicated_assets_subtitle": "Fotók és videók, amiket az alkalmazás fekete listára tett",
"cache_settings_duplicated_assets_title": "Duplikált Elemek ({})",
"cache_settings_image_cache_size": "Kép gyorsítótár mérete ({} elem)",
"cache_settings_statistics_album": "Képtár bélyegképei",
"cache_settings_statistics_assets": "{} elem ({})",
"cache_settings_statistics_full": "Teljes méretű képek",
"cache_settings_statistics_shared": "Megosztott album bélyegképei",
"cache_settings_statistics_thumbnail": "Bélyegképek",
"cache_settings_statistics_title": "Gyorsítótár használata",
"cache_settings_subtitle": "Az Immich mobilalkalmazás gyorsítótár viselkedésének beállítása",
"cache_settings_thumbnail_size": "Bélyegkép gyorsítótár mérete ({} elem)",
"cache_settings_tile_subtitle": "Helyi tárhely viselkedésének beállítása",
"cache_settings_tile_title": "Helyi Tárhely",
"cache_settings_title": "Gyorsítótár Beállítások",
"camera": "Fényképezőgép",
"camera_brand": "Fényképezőgép márka",
"camera_model": "Fényképezőgép modell",
"cancel": "Mégsem",
"cancel_search": "Keresés megszakítása",
"canceled": "Megszakítva",
"cannot_merge_people": "Személyek összevonása nem sikerült",
"cannot_undo_this_action": "Ez a művelet nem visszavonható!",
"cannot_update_the_description": "A leírás megváltoztatása nem sikerült",
"change_date": "Dátum változtatása",
"change_display_order": "Megjelenítési sorrend megváltoztatása",
"change_expiration_time": "Lejárati idő megváltoztatása",
"change_location": "Helyszín változtatása",
"change_name": "Név változtatása",
"change_name_successfully": "A név megváltoztatása sikeres",
"change_password": "Jelszócsere",
"change_password_description": "Most jelentkezel be a rendszerbe első alkalommal, vagy valaki jelszó-változtatást kezdeményezett. Kérjük, add meg az új jelszót.",
"change_password_form_confirm_password": "Jelszó Megerősítése",
"change_password_form_description": "Szia {name}!\n\nMost jelentkezel be először a rendszerbe vagy más okból szükséges a jelszavad meváltoztatása. Kérjük, add meg új jelszavad.",
"change_password_form_new_password": "Új Jelszó",
"change_password_form_password_mismatch": "A beírt jelszavak nem egyeznek",
"change_password_form_reenter_new_password": "Jelszó (Még Egyszer)",
"change_your_password": "Jelszavad megváltoztatása",
"changed_visibility_successfully": "Láthatóság sikeresen megváltoztatva",
"check_all": "Mind Kijelöl",
"check_corrupt_asset_backup": "Sérült elemek keresése a mentésben",
"check_corrupt_asset_backup_button": "Ellenőrzés",
"check_corrupt_asset_backup_description": "Ezt az ellenőtzést csak Wi-Fi hálózaton futtasd és csak akkot, ha már az összes elem feltöltésre került. A folyamat néhány percig is eltarthat.",
"check_logs": "Hibanapló Megnyitása",
"choose_matching_people_to_merge": "Válaszd ki a megegyező személyeket összevonásra",
"city": "Város",
@@ -478,6 +624,14 @@
"clear_all_recent_searches": "Legutóbbi keresések törlése",
"clear_message": "Üzenet törlése",
"clear_value": "Érték törlése",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Jelszó Megadása",
"client_cert_import": "Importálás",
"client_cert_import_success_msg": "Kliens tanúsítvány importálva",
"client_cert_invalid_msg": "Érvénytelen tanúsítvány fájl vagy hibás jelszó",
"client_cert_remove_msg": "Kliens tanúsítvány eltávolítva",
"client_cert_subtitle": "Csak a PKCS12 (.p12, .pfx) formátum támogatott. Tanúsítvány Importálása/Eltávolítása csak a bejelentkezés előtt lehetséges",
"client_cert_title": "SSL Kliens Tanúsítvány",
"clockwise": "Óramutató járásával megegyező irány",
"close": "Bezárás",
"collapse": "Összecsuk",
@@ -488,6 +642,9 @@
"comment_options": "Megjegyzés beállítások",
"comments_and_likes": "Megjegyzések és reakciók",
"comments_are_disabled": "A megjegyzések le vannak tiltva",
"common_create_new_album": "Új album létrehozása",
"common_server_error": "Kérjük, ellenőrizd a hálózati kapcsolatot, gondoskodj róla, hogy a szerver elérhető legyen, valamint az alkalmazás és a szerver kompatibilis verziójú legyen.",
"completed": "Kész",
"confirm": "Jóváhagy",
"confirm_admin_password": "Admin Jelszó Újból",
"confirm_delete_face": "Biztos, hogy törölni szeretnéd a(z) {name} arcát az elemről?",
@@ -497,6 +654,15 @@
"contain": "Belül",
"context": "Kontextus",
"continue": "Folytatás",
"control_bottom_app_bar_album_info_shared": "{} elemek · Megosztva",
"control_bottom_app_bar_create_new_album": "Új album létrehozása",
"control_bottom_app_bar_delete_from_immich": "Törlés az Immich-ből",
"control_bottom_app_bar_delete_from_local": "Törlés az eszközről",
"control_bottom_app_bar_edit_location": "Hely Módosítása",
"control_bottom_app_bar_edit_time": "Dátum és Idő Módosítása",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Megosztás Ide",
"control_bottom_app_bar_trash_from_immich": "Lomtárba Helyez",
"copied_image_to_clipboard": "Kép a vágólapra másolva.",
"copied_to_clipboard": "Vágólapra másolva!",
"copy_error": "Másolási hiba",
@@ -511,24 +677,34 @@
"covers": "Borítók",
"create": "Létrehoz",
"create_album": "Album létrehozása",
"create_album_page_untitled": "Névtelen",
"create_library": "Képtár Létrehozása",
"create_link": "Link létrehozása",
"create_link_to_share": "Megosztási link létrehozása",
"create_link_to_share_description": "A kiválasztott fotókat mindenki láthassa, aki a linket használja",
"create_new": "ÚJ LÉTREHOZÁSA",
"create_new_person": "Új személy létrehozása",
"create_new_person_hint": "A kiválasztott elemeket új személyhez rendelése",
"create_new_user": "Új felhasználó létrehozása",
"create_shared_album_page_share_add_assets": "ELEMEK HOZZÁADÁSA",
"create_shared_album_page_share_select_photos": "Fotók választása",
"create_tag": "Címke létrehozása",
"create_tag_description": "Új címke létrehozása. Beágyazott címkék esetén add meg a címke teljes elérési útvonalát, beleértve a perjeleket is.",
"create_user": "Felhasználó létrehozása",
"created": "Készült",
"crop": "Kivágás",
"curated_object_page_title": "Dolgok",
"current_device": "Ez az eszköz",
"current_server_address": "Jelenlegi szerver cím",
"custom_locale": "Egyéni Területi Beállítás",
"custom_locale_description": "Dátumok és számok formázása a nyelv és terület szerint",
"daily_title_text_date": "MMM dd (E)",
"daily_title_text_date_year": "yyyy MMM dd (E)",
"dark": "Sötét",
"date_after": "Dátumtól",
"date_and_time": "Dátum és Idő",
"date_before": "Dátumig",
"date_format": "y LLL d (E) • HH:mm",
"date_of_birth_saved": "Születésnap sikeresen elmentve",
"date_range": "Dátum intervallum",
"day": "Nap",
@@ -542,19 +718,30 @@
"delete": "Törlés",
"delete_album": "Album törlése",
"delete_api_key_prompt": "Biztosan törölni szeretnéd ezt az API kulcsot?",
"delete_dialog_alert": "Ezek az elemek véglegesen törölve lesznek Immich-ről és az eszközödről is",
"delete_dialog_alert_local": "Ezek az elemek véglegesen törölve lesznek az eszközödről, de továbbra is elérhetőek maradnak az Immich szerveren",
"delete_dialog_alert_local_non_backed_up": "Néhány elem nem lett elmentve az Immich szerverre és most véglegesen törölve lesznek az eszközödről is",
"delete_dialog_alert_remote": "Ezek az elemek véglegesen törlésre kerülnek az Immich szerverről",
"delete_dialog_ok_force": "Törlés Mindenképp",
"delete_dialog_title": "Végleges Törlés",
"delete_duplicates_confirmation": "Biztosan véglegesen törölni szeretnéd ezeket a duplikátumokat?",
"delete_face": "Arc törlése",
"delete_key": "Kulcs törlése",
"delete_library": "Képtár Törlése",
"delete_link": "Link törlése",
"delete_local_dialog_ok_backed_up_only": "Csak a Biztonsági Mentés Törlése",
"delete_local_dialog_ok_force": "Törlés Mindenképp",
"delete_others": "Többi törlése",
"delete_shared_link": "Megosztott link törlése",
"delete_shared_link_dialog_title": "Megosztott Link Törlése",
"delete_tag": "Címke törlése",
"delete_tag_confirmation_prompt": "Biztosan törölni szeretnéd a(z) {tagName} címkét?",
"delete_user": "Felhasználó törlése",
"deleted_shared_link": "Törölt megosztott link",
"deletes_missing_assets": "Törli a fizikailag hiányzó elemeket",
"description": "Leírás",
"description_input_hint_text": "Leírás hozzáadása...",
"description_input_submit_error": "Nem sikerült frissíteni a leírást. További információért kérjük, nézd meg az eseménynaplót",
"details": "Részletek",
"direction": "Irány",
"disabled": "Letiltott",
@@ -571,12 +758,26 @@
"documentation": "Dokumentáció",
"done": "Kész",
"download": "Letöltés",
"download_canceled": "Letöltés megszakítva",
"download_complete": "Letöltés kész",
"download_enqueue": "Letöltés sorba állítva",
"download_error": "Letöltési Hiba",
"download_failed": "Sikertelen letöltés",
"download_filename": "fájl: {}",
"download_finished": "Letöltés kész",
"download_include_embedded_motion_videos": "Beágyazott videók",
"download_include_embedded_motion_videos_description": "Mozgó képekbe beágyazott videók mutatása külön fájlként",
"download_notfound": "Letöltés nem található",
"download_paused": "Letöltés szüneteltetve",
"download_settings": "Letöltés",
"download_settings_description": "Elemek letöltésével kapcsolatos beállítások kezelése",
"download_started": "Letöltés megkezdve",
"download_sucess": "Sikeres letöltés",
"download_sucess_android": "Média letöltve a DCIM/Immich mappába\n",
"download_waiting_to_retry": "Várakozás",
"downloading": "Letöltés",
"downloading_asset_filename": "{filename} elem letöltése",
"downloading_media": "Média letöltése",
"drop_files_to_upload": "A feltöltéshez húzd bárhova a fájlokat",
"duplicates": "Duplikátumok",
"duplicates_description": "Jelöld meg a duplikátumokat (ha léteznek) a csoportokban",
@@ -593,6 +794,7 @@
"edit_key": "Kulcs módosítása",
"edit_link": "Link módosítása",
"edit_location": "Hely módosítása",
"edit_location_dialog_title": "Hely",
"edit_name": "Név módosítása",
"edit_people": "Személyek módosítása",
"edit_tag": "Címke módosítása",
@@ -605,14 +807,19 @@
"editor_crop_tool_h2_aspect_ratios": "Oldalarányok",
"editor_crop_tool_h2_rotation": "Forgatás",
"email": "Email",
"empty_folder": "This folder is empty",
"empty_trash": "Lomtár ürítése",
"empty_trash_confirmation": "Biztosan kiüríted a lomtárat? Ez az Immich lomtárában lévő összes elemet véglegesen törli.\nEz a művelet nem visszavonható!",
"enable": "Engedélyezés",
"enabled": "Engedélyezve",
"end_date": "Vég dátum",
"enqueued": "Sorba állítva",
"enter_wifi_name": "Add meg a WiFi hálózat nevét",
"error": "Hiba",
"error_change_sort_album": "Album sorbarendezésének megváltoztatása sikertelen",
"error_delete_face": "Hiba az arc törlése során",
"error_loading_image": "Hiba a kép betöltése közben",
"error_saving_image": "Hiba: {}",
"error_title": "Hiba - valami félresikerült",
"errors": {
"cannot_navigate_next_asset": "Nem lehet a következő elemhez navigálni",
@@ -741,8 +948,21 @@
"unable_to_upload_file": "Fájlfeltöltés sikertelen"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Leírás Hozzáadása...",
"exif_bottom_sheet_details": "RÉSZLETEK",
"exif_bottom_sheet_location": "HELY",
"exif_bottom_sheet_people": "EMBEREK",
"exif_bottom_sheet_person_add_person": "Elnevez",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Kilépés a Diavetítésből",
"expand_all": "Összes kinyitása",
"experimental_settings_new_asset_list_subtitle": "Fejlesztés alatt",
"experimental_settings_new_asset_list_title": "Kisérleti képrács engedélyezése",
"experimental_settings_subtitle": "Csak saját felelősségre használd!",
"experimental_settings_title": "Kísérleti",
"expire_after": "Lejárati idő",
"expired": "Lejárt",
"expires_date": "Lejár: {date}",
@@ -753,11 +973,16 @@
"extension": "Kiterjesztés",
"external": "Külső Képtár",
"external_libraries": "Külső Képtárak",
"external_network": "Külső hálózat",
"external_network_sheet_info": "Ha nem vagy a megadott WiFi hálózathoz csatlakozva, akkor az alkalmazás az alábbi URL címeken fogja elérni a szervert, fentről lefelé haladva",
"face_unassigned": "Nincs hozzárendelve",
"failed": "Sikertelen",
"failed_to_load_assets": "Nem sikerült betölteni az elemeket",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Kedvenc",
"favorite_or_unfavorite_photo": "Fotó kedvencnek jelölése vagy annak visszavonása",
"favorites": "Kedvencek",
"favorites_page_no_favorites": "Nem található kedvencnek jelölt elem",
"feature_photo_updated": "Címlapkép frissítve",
"features": "Jellemzők",
"features_setting_description": "Az alkalmazás jellemzőinek kezelése",
@@ -765,25 +990,38 @@
"file_name_or_extension": "Fájlnév vagy kiterjesztés",
"filename": "Fájlnév",
"filetype": "Fájltípus",
"filter": "Szűrő",
"filter_people": "Személyek szűrése",
"find_them_fast": "Név alapján kereséssel gyorsan megtalálhatóak",
"fix_incorrect_match": "Hibás találat javítása",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Mappák",
"folders_feature_description": "A fájlrendszerben lévő fényképek és videók mappanézetben való böngészése",
"forward": "Előre",
"general": "Általános",
"get_help": "Segítségkérés",
"get_wifiname_error": "Nem sikerült lekérni a Wi-Fi nevét. Győződj meg róla, hogy megadtad a szükséges engedélyeket és csatlakoztál egy Wi-Fi hálózathoz.",
"getting_started": "Kezdő Lépések",
"go_back": "Visszalépés",
"go_to_folder": "Ugrás a mappához",
"go_to_search": "Ugrás a kereséshez",
"grant_permission": "Engedély megadása",
"group_albums_by": "Albumok csoportosítása...",
"group_country": "Csoportosítás ország szerint",
"group_no": "Nincs csoportosítás",
"group_owner": "Csoportosítás tulajdonos szerint",
"group_places_by": "Helyszínek csoportosítása...",
"group_year": "Csoportosítás év szerint",
"haptic_feedback_switch": "Rezgéses visszajelzés engedélyezése",
"haptic_feedback_title": "Rezgéses Visszajelzés",
"has_quota": "Kvóta",
"header_settings_add_header_tip": "Fejléc Hozzáadása",
"header_settings_field_validator_msg": "Az érték nem lehet üres",
"header_settings_header_name_input": "Fejléc neve",
"header_settings_header_value_input": "Fejléc értéke",
"headers_settings_tile_subtitle": "Add meg azokat a proxy fejléceket, amiket az app elküldjön minden hálózati kérésnél",
"headers_settings_tile_title": "Egyéni proxy fejlécek",
"hi_user": "Szia {name} ({email})",
"hide_all_people": "Minden személy elrejtése",
"hide_gallery": "Galéria elrejtése",
@@ -791,8 +1029,24 @@
"hide_password": "Jelszó elrejtése",
"hide_person": "Személy elrejtése",
"hide_unnamed_people": "Név nélküli személyek elrejtése",
"home_page_add_to_album_conflicts": "{added} elem hozzáadva a(z) \"{album}\" albumhoz. {failed} elem már eleve az albumban volt.",
"home_page_add_to_album_err_local": "Helyi elemeket még nem lehet albumba tenni. Kihagyjuk.",
"home_page_add_to_album_success": "{added} elem hozzáadva a(z) \"{album}\" albumhoz.",
"home_page_album_err_partner": "Még nem lehet a partner elemeit albumokhoz adni, úghogy kihagyjuk.",
"home_page_archive_err_local": "Helyi elemek archiválása még nem támogatott, úgyhogy kihagyjuk",
"home_page_archive_err_partner": "Partner elemeit nem lehet archiválni, úgyhogy kihagyjuk",
"home_page_building_timeline": "Idővonal összeállítása",
"home_page_delete_err_partner": "Partner elemeit nem lehet törölni, úgyhogy kihagyjuk",
"home_page_delete_remote_err_local": "Helyi elemek vannak távoli törlésre kiválasztva, úgyhogy ezeket kihagyjuk",
"home_page_favorite_err_local": "Helyi elemeket még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
"home_page_favorite_err_partner": "Partner elemeit még nem lehet a kedvencek közé tenni, úgyhogy ezeket kihagyjuk",
"home_page_first_time_notice": "Ha most használod először az alkalmazást, akkor ahhoz, hogy megjelenjenek a fotók és a videók az idővonaladon, állítsd be, hogy melyik albumaidról készüljön biztonsági mentés.",
"home_page_share_err_local": "Helyi elemekről nem lehet megosztott linket készíteni, úgyhogy kihagyjuk",
"home_page_upload_err_limit": "Csak 30 elemet tudsz egyszerre feltölteni, úgyhogy kihagyjuk",
"host": "Kiszolgáló",
"hour": "Óra",
"ignore_icloud_photos": "iCloud fotók figyelmen kívül hagyása",
"ignore_icloud_photos_description": "Az iCloud-ban tárolt fotók nem lesznek feltöltve az Immich szerverre",
"image": "Kép",
"image_alt_text_date": "{isVideo, select, true {Videó} other {Kép}} készítési dátuma: {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Videó} other {Kép}} vele: {person1} (készült {date})",
@@ -804,6 +1058,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1} és {person2} (készült: {date})",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és {person3} (készült: {date})",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Videó} other {Kép}} itt: {country}, {city}, velük: {person1}, {person2} és további {additionalCount, number} személy (készült: {date})",
"image_saved_successfully": "Kép elmentve",
"image_viewer_page_state_provider_download_started": "Letöltés Megkezdődött",
"image_viewer_page_state_provider_download_success": "Letöltés Sikeres",
"image_viewer_page_state_provider_share_error": "Megosztás Hiba",
"immich_logo": "Immich Logó",
"immich_web_interface": "Immich Webes Felület",
"import_from_json": "Importálás JSON formátumból",
@@ -822,6 +1080,8 @@
"night_at_midnight": "Minden éjjel éjfélkor",
"night_at_twoam": "Minden éjjel 2 órakor"
},
"invalid_date": "Érvénytelen dátum",
"invalid_date_format": "Érvénytelen dátumformátum",
"invite_people": "Személyek Meghívása",
"invite_to_album": "Meghívás az albumba",
"items_count": "{count, plural, other {# elem}}",
@@ -842,6 +1102,12 @@
"level": "Szint",
"library": "Képtár",
"library_options": "Képtár beállítások",
"library_page_device_albums": "Albumok az Eszközön",
"library_page_new_album": "Új album",
"library_page_sort_asset_count": "Elemek száma",
"library_page_sort_created": "Létrehozás ideje",
"library_page_sort_last_modified": "Utolsó módosítás ideje",
"library_page_sort_title": "Album címe",
"light": "Világos",
"like_deleted": "Reakció törölve",
"link_motion_video": "Motion videó hozzárendelése",
@@ -851,12 +1117,42 @@
"list": "Lista",
"loading": "Betöltés",
"loading_search_results_failed": "Keresési eredmények betöltése sikertelen",
"local_network": "Helyi hálózat",
"local_network_sheet_info": "Az alkalmazés ezen az URL címen fogja elérni a szervert, ha a megadott WiFi hálózathoz van csatlankozva",
"location_permission": "Helymeghatározási engedély",
"location_permission_content": "Hálózatok automatikus váltásához az Immich-nek *mindenképpen* hozzá kell férnie a pontos helyzethez, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
"location_picker_choose_on_map": "Válassz a térképen",
"location_picker_latitude_error": "Érvényes szélességi kört írj be",
"location_picker_latitude_hint": "Ide írd a szélességi kört",
"location_picker_longitude_error": "Érvényes hosszúsági kört írj be",
"location_picker_longitude_hint": "Ide írd a hosszúsági kört",
"log_out": "Kijelentkezés",
"log_out_all_devices": "Kijelentkezés Minden Eszközön",
"logged_out_all_devices": "Minden eszköz kijelentkeztetve",
"logged_out_device": "Eszköz kijelentkeztetve",
"login": "Bejelentkezés",
"login_disabled": "A bejelentkezés letiltva",
"login_form_api_exception": "API hiba. Kérljük, ellenőrid a szerver címét, majd próbáld újra.",
"login_form_back_button_text": "Vissza",
"login_form_email_hint": "email@cimed.hu",
"login_form_endpoint_hint": "http://szerver-címe:port",
"login_form_endpoint_url": "Szerver címe",
"login_form_err_http": "Kérjük, hogy egy http:// vagy https:// címet adj meg",
"login_form_err_invalid_email": "Érvénytelen email cím",
"login_form_err_invalid_url": "Érvénytelen cím",
"login_form_err_leading_whitespace": "Az első karakter szóköz",
"login_form_err_trailing_whitespace": "Az utolsó karakter szóköz",
"login_form_failed_get_oauth_server_config": "Nem sikerült az OAuth bejelentkezés. Ellenőrizd a szerver címét.",
"login_form_failed_get_oauth_server_disable": "OAuth bejelentkezés nem elérhető ezen a szerveren",
"login_form_failed_login": "Hiba a bejelentkezés közben, ellenőrizd a szerver címét, az emailt és a jelszót",
"login_form_handshake_exception": "SSL Kézfogási Hiba törént. Engedélyezd az önaláírt tanúsítvényokat a beállításokban, hogy ha önaláírt tanúsítványt használsz.",
"login_form_password_hint": "jelszó",
"login_form_save_login": "Maradjon bejelentkezve",
"login_form_server_empty": "Add meg a szerver címét.",
"login_form_server_error": "Nem sikerült kapcsolódni a szerverhez.",
"login_has_been_disabled": "Bejelentkezés le van tiltva.",
"login_password_changed_error": "Nem sikerült módosítani a jelszót",
"login_password_changed_success": "Jelszó sikeresen módosítva",
"logout_all_device_confirmation": "Biztos, hogy minden eszközön ki szeretnél jelentkezni?",
"logout_this_device_confirmation": "Biztos, hogy ki szeretnél jelentkezni ezen az eszközön?",
"longitude": "Hosszúság",
@@ -874,13 +1170,40 @@
"manage_your_devices": "Bejelentkezett eszközök kezelése",
"manage_your_oauth_connection": "OAuth kapcsolódás kezelése",
"map": "Térkép",
"map_assets_in_bound": "{} fotó",
"map_assets_in_bounds": "{} fotó",
"map_cannot_get_user_location": "A helymeghatározás nem sikerült",
"map_location_dialog_yes": "Igen",
"map_location_picker_page_use_location": "Kiválasztott hely használata",
"map_location_service_disabled_content": "A helymeghatározás szolgáltatást engedélyezni kell a jelenlegi helyednél lévő elemek megjelenítéséhez. Szeretnéd most engedélyezni?",
"map_location_service_disabled_title": "Helymeghatározás Szolgáltatás letiltva",
"map_marker_for_images": "{country}, {city} helyen készült képek térképjelölője",
"map_marker_with_image": "Térképjelölő képpel",
"map_no_assets_in_bounds": "Nincsenek fotók a környéken",
"map_no_location_permission_content": "A helymeghatározást engedélyezni kell a jelenlegi helyednél lévő elemek megjelenítéséhez. Szeretnéd most engedélyezni?",
"map_no_location_permission_title": "Helymeghatározás letiltva",
"map_settings": "Térkép beállítások",
"map_settings_dark_mode": "Sötét téma",
"map_settings_date_range_option_day": "Elmúlt 24 óra",
"map_settings_date_range_option_days": "Elmúlt {} nap",
"map_settings_date_range_option_year": "Elmúlt év",
"map_settings_date_range_option_years": "Elmúlt {} év",
"map_settings_dialog_title": "Térkép Beállítások",
"map_settings_include_show_archived": "Archívokkal Együtt",
"map_settings_include_show_partners": "Partnerével Együtt",
"map_settings_only_show_favorites": "Csak Kedvencek Mutatása",
"map_settings_theme_settings": "Térkép Témája",
"map_zoom_to_see_photos": "Kicsinyítsd, hogy láss fényképeket",
"matches": "Azonosak",
"media_type": "Médiatípus",
"memories": "Emlékek",
"memories_all_caught_up": "Naprakész vagy",
"memories_check_back_tomorrow": "Nézz vissza holnap újabb emlékekért",
"memories_setting_description": "Állítsd be, hogy mik jelenjenek meg az emlékeid közt",
"memories_start_over": "Újrakezdés",
"memories_swipe_to_close": "Bezáráshoz söpörd ki felfelé",
"memories_year_ago": "Egy éve",
"memories_years_ago": "{} éve",
"memory": "Emlék",
"memory_lane_title": "Emlékek {title}",
"menu": "Menü",
@@ -895,12 +1218,17 @@
"missing": "Hiányzók",
"model": "Modell",
"month": "Hónap",
"monthly_title_text_date_format": "y MMMM",
"more": "Továbbiak",
"moved_to_trash": "Áthelyezve a lomtárba",
"multiselect_grid_edit_date_time_err_read_only": "Csak-olvasható elem(ek) dátuma nem módosítható, ezért kihagyjuk",
"multiselect_grid_edit_gps_err_read_only": "Csak-olvasható elem(ek) helye nem módosítható, ezért kihagyjuk",
"mute_memories": "Emlékek elnémítása",
"my_albums": "Saját albumaim",
"name": "Név",
"name_or_nickname": "Név vagy becenév",
"networking_settings": "Hálózat",
"networking_subtitle": "Szerver végpont beállítások kezelése",
"never": "Soha",
"new_album": "Új Album",
"new_api_key": "Új API Kulcs",
@@ -917,6 +1245,7 @@
"no_albums_yet": "Úgy tűnik, hogy még egy albumod sincs.",
"no_archived_assets_message": "Archiváld a fényképeket és videókat, hogy elrejtsd azokat a Képek nézetből",
"no_assets_message": "KATTINTS AZ ELSŐ FÉNYKÉP FELTÖLTÉSÉHEZ",
"no_assets_to_show": "Nincs megjeleníthető elem",
"no_duplicates_found": "Nem találhatók duplikátumok.",
"no_exif_info_available": "Nincs elérhető Exif információ",
"no_explore_results_message": "Tölts fel több képet, hogy böngészhesd a gyűjteményed.",
@@ -928,9 +1257,13 @@
"no_results_description": "Próbálkozz szinonimákkal vagy általánosabb kulcsszavakkal",
"no_shared_albums_message": "Hozz létre egy új albumot, hogy megoszthasd fényképeid és videóid másokkal",
"not_in_any_album": "Nincs albumban",
"not_selected": "Nincs kiválasztva",
"note_apply_storage_label_to_previously_uploaded assets": "Megjegyzés: a korábban feltöltött elemek Tárhely Címkézéséhez futtasd a(z)",
"note_unlimited_quota": "Megjegyzés: korlátlan kvótához írj 0-t",
"notes": "Megjegyzések",
"notification_permission_dialog_content": "Az értesítések bekapcsolásához a Beállítások menüben válaszd ki az Engedélyezés-t.",
"notification_permission_list_tile_content": "Értesítések engedélyezése.",
"notification_permission_list_tile_enable_button": "Értesítések Bekapcsolása",
"notification_permission_list_tile_title": "Engedély az Értesítésekhez",
"notification_toggle_setting_description": "Email értesítések engedélyezése",
"notifications": "Értesítések",
"notifications_setting_description": "Értesítések kezelése",
@@ -941,6 +1274,7 @@
"offline_paths_description": "Ezek az eredmények annak lehetnek köszönhetők, hogy manuálisan törölték azokat a fájlokat, amik nem részei egy külső képtárnak.",
"ok": "Rendben",
"oldest_first": "Legrégebbi először",
"on_this_device": "Ezen az eszközön",
"onboarding": "Első lépések",
"onboarding_privacy_description": "Az alábbi (nem kötelező) funkciók külsős szolgáltatásokon alapulnak és bármikor kikapcsolhatóak az adminisztrációs beállításokban.",
"onboarding_theme_description": "Válassz egy színtémát. Ezt bármikor megváltoztathatod a beállításokban.",
@@ -964,6 +1298,14 @@
"partner_can_access": "{partner} hozzáférhet",
"partner_can_access_assets": "Minden fényképed és videód, kivéve az Archiváltak és a Töröltek",
"partner_can_access_location": "A helyszín, ahol a fotókat készítették",
"partner_list_user_photos": "{user} fényképei",
"partner_list_view_all": "Összes mutatása",
"partner_page_empty_message": "Még senkivel nem osztottad meg a fényképeidet.",
"partner_page_no_more_users": "Nincs több hozzáadható felhasználó",
"partner_page_partner_add_failed": "Partner hozzáadása sikertelen",
"partner_page_select_partner": "Partner kiválasztása",
"partner_page_shared_to_title": "Megosztva: ",
"partner_page_stop_sharing_content": "{} nem fog többé hozzáférni a fotóidhoz.",
"partner_sharing": "Partner Megosztás",
"partners": "Partnerek",
"password": "Jelszó",
@@ -992,6 +1334,14 @@
"permanently_delete_assets_prompt": "Biztos, hogy véglegesen törölni {count, plural, one {szeretnéd ezt az elemet} other {szeretnél <b>#</b> elemet}}? Ez el fogja távolítani az {count, plural, one {elemet az albumokból, amikben szerepel} other {elemeket az albumokból, amikben szerepelnek}}.",
"permanently_deleted_asset": "Elem véglegesen törölve",
"permanently_deleted_assets_count": "{count, plural, other {# elem}} véglegesen törölve",
"permission_onboarding_back": "Vissza",
"permission_onboarding_continue_anyway": "Folytatás mindenképp",
"permission_onboarding_get_started": "Vágjunk bele",
"permission_onboarding_go_to_settings": "Beállítások megnyitása",
"permission_onboarding_permission_denied": "Hozzáférés megtagadva. Az Immich használatához engedélyezni kell a fotó és videó hozzáférést a Beállításokban.",
"permission_onboarding_permission_granted": "Hozzáférés engedélyezve! Minden készen áll.",
"permission_onboarding_permission_limited": "Korlátozott hozzáférés. Ha szeretnéd, hogy az Immich a teljes galéria gyűjteményedet mentse és kezelje, akkor a Beállításokban engedélyezd a fotó és videó jogosultságokat.",
"permission_onboarding_request": "Engedélyezni kell, hogy az Immich hozzáférjen a képeidhez és videóidhoz",
"person": "Személy",
"person_birthdate": "Született: {date}",
"person_hidden": "{name}{hidden, select, true { (rejtett)} other {}}",
@@ -1009,6 +1359,8 @@
"play_motion_photo": "Mozgókép lejátszása",
"play_or_pause_video": "Videó elindítása vagy megállítása",
"port": "Port",
"preferences_settings_subtitle": "Alkalmazásbeállítások kezelése",
"preferences_settings_title": "Beállítások",
"preset": "Sablon",
"preview": "Előnézet",
"previous": "Előző",
@@ -1016,6 +1368,13 @@
"previous_or_next_photo": "Előző vagy következő fotó",
"primary": "Elsődleges",
"privacy": "Magánszféra",
"profile_drawer_app_logs": "Naplók",
"profile_drawer_client_out_of_date_major": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
"profile_drawer_client_out_of_date_minor": "A mobilalkalmazás elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
"profile_drawer_client_server_up_to_date": "A Kliens és a Szerver is naprakész",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "A szerver elavult. Kérjük, frissítsd a legfrisebb főverzióra.",
"profile_drawer_server_out_of_date_minor": "A szerver elavult. Kérjük, frissítsd a legfrisebb alverzióra.",
"profile_image_of_user": "{user} profilképe",
"profile_picture_set": "Profilkép beállítva.",
"public_album": "Nyilvános album",
@@ -1065,6 +1424,8 @@
"recent": "Friss",
"recent-albums": "Legutóbbi albumok",
"recent_searches": "Legutóbbi keresések",
"recently_added": "Nemrég hozzáadott",
"recently_added_page_title": "Nemrég Hozzáadott",
"refresh": "Frissítés",
"refresh_encoded_videos": "Átkódolt videók frissítése",
"refresh_faces": "Arcok frissítése",
@@ -1121,10 +1482,12 @@
"role_editor": "Szerkesztő",
"role_viewer": "Megjelenítő",
"save": "Mentés",
"save_to_gallery": "Mentés a galériába",
"saved_api_key": "API Kulcs Elmentve",
"saved_profile": "Profil elmentve",
"saved_settings": "Elmentett beállítások",
"say_something": "Szólj hozzá",
"scaffold_body_error_occurred": "Hiba történt",
"scan_all_libraries": "Minden Képtár Átfésülése",
"scan_library": "Átfésülés",
"scan_settings": "Átfésülési Beállítások",
@@ -1140,16 +1503,45 @@
"search_camera_model": "Kameramodell keresése...",
"search_city": "Város keresése...",
"search_country": "Ország keresése...",
"search_filter_apply": "Szűrő alkalmazása",
"search_filter_camera_title": "Válaszd ki a kamera típusát",
"search_filter_date": "Dátum",
"search_filter_date_interval": "{start} - {end}",
"search_filter_date_title": "Válassz dátum intervallumot",
"search_filter_display_option_not_in_album": "Nincs albumban",
"search_filter_display_options": "Megjelenítési Beállítások",
"search_filter_filename": "Keresés fájlnév alapján",
"search_filter_location": "Hely",
"search_filter_location_title": "Válassz helyet",
"search_filter_media_type": "Média Típus",
"search_filter_media_type_title": "Válassz média típust",
"search_filter_people_title": "Válassz embereket",
"search_for": "Keresés",
"search_for_existing_person": "Már meglévő személy keresése",
"search_no_more_result": "Nincs több találat",
"search_no_people": "Nincs személy",
"search_no_people_named": "Nincs \"{name}\" nevű személy",
"search_no_result": "Nincs találat, próbálj más kulcsszavakkal keresni",
"search_options": "Keresési lehetőségek",
"search_page_categories": "Kategóriák",
"search_page_motion_photos": "Mozgóképek",
"search_page_no_objects": "Nincs Információ a Tárgyakról",
"search_page_no_places": "Nincs Információ a Helyekről",
"search_page_screenshots": "Képernyőképek",
"search_page_search_photos_videos": "Keresés a fotóid és videóid közt",
"search_page_selfies": "Szelfik",
"search_page_things": "Dolgok",
"search_page_view_all_button": "Összes mutatása",
"search_page_your_activity": "Tevékenységeid",
"search_page_your_map": "Térképed",
"search_people": "Személyek keresése",
"search_places": "Helyek keresése",
"search_rating": "Keresés értékelés szerint...",
"search_result_page_new_search_hint": "Új Keresés",
"search_settings": "Keresési beállítások",
"search_state": "Megye/Állam keresése...",
"search_suggestion_list_smart_search_hint_1": "Az intelligens keresés alapértelmezetten be van kapcsolva, metaadatokat így kereshetsz: ",
"search_suggestion_list_smart_search_hint_2": "m:keresési-kifejezés",
"search_tags": "Címkék keresése...",
"search_timezone": "Időzóna keresése...",
"search_type": "Típus keresése",
@@ -1170,10 +1562,14 @@
"select_new_face": "Új arc választása",
"select_photos": "Fotók választása",
"select_trash_all": "'Lomtár' kijelölése",
"select_user_for_sharing_page_err_album": "Az album létrehozása sikertelen",
"selected": "Kiválasztott",
"selected_count": "{count, plural, other {# kiválasztva}}",
"send_message": "Üzenet küldése",
"send_welcome_email": "Üdvözlő email küldése",
"server_endpoint": "Szerver Végpont",
"server_info_box_app_version": "Alkalmazás Verzió",
"server_info_box_server_url": "Szerver Címe",
"server_offline": "Szerver Nem Elérhető",
"server_online": "Szerver Elérhető",
"server_stats": "Szerver Statisztikák",
@@ -1185,22 +1581,91 @@
"set_date_of_birth": "Születési dátum beállítása",
"set_profile_picture": "Profilkép beállítása",
"set_slideshow_to_fullscreen": "Diavetítés teljes képernyőre állítása",
"setting_image_viewer_help": "Az Elem Megjelenítő először a kis bélyegképet tölti be, aztán a közepes méretű előnézetet (ha elérhető), végül az eredetit (ha elérhető).",
"setting_image_viewer_original_subtitle": "Engedélyezi az eredeti teljes felbontású kép betöltését (nagy!). Kikapcsolva csökkenti az adathasználatot (a neten és az eszköz gyorsítótárán is).",
"setting_image_viewer_original_title": "Eredeti kép betöltése",
"setting_image_viewer_preview_subtitle": "Engedélyezi a közepes felbontású kép betöltését. Kikapcsolva vagy az eredeti kép töltődik be, vagy csak a bélyegkép.",
"setting_image_viewer_preview_title": "Előnézet betöltése",
"setting_image_viewer_title": "Képek",
"setting_languages_apply": "Alkalmaz",
"setting_languages_subtitle": "Az alkalmazás nyelvének megváltoztatása",
"setting_languages_title": "Nyelvek",
"setting_notifications_notify_failures_grace_period": "Értesítés a háttérben történő mentés hibáiról: {}",
"setting_notifications_notify_hours": "{} óra",
"setting_notifications_notify_immediately": "azonnal",
"setting_notifications_notify_minutes": "{} perc",
"setting_notifications_notify_never": "soha",
"setting_notifications_notify_seconds": "{} másodperc",
"setting_notifications_single_progress_subtitle": "Részletes feltöltési folyamat információ minden elemről",
"setting_notifications_single_progress_title": "Mutassa a háttérben történő mentés részletes folyamatát",
"setting_notifications_subtitle": "Értesítési beállítások módosítása",
"setting_notifications_total_progress_subtitle": "Átfogó feltöltési folyamat (kész/összes elem)",
"setting_notifications_total_progress_title": "Mutassa a háttérben történő mentés teljes folyamatát",
"setting_video_viewer_looping_title": "Ismétlés",
"setting_video_viewer_original_video_subtitle": "A szerverről történő videólejátszás során az eredeti videó lejátszása még akkor is, ha van optimalizált, átkódolt verzió. Akadozó lejátszást eredményezhet. A helyi eszközön eleve elérhető videókat mindenképpen eredeti minőségben játszuk le.",
"setting_video_viewer_original_video_title": "Eredeti videó lejátszása",
"settings": "Beállítások",
"settings_require_restart": "Ennek a beállításnak az érvénybe lépéséhez indítsd újra az Immich-et",
"settings_saved": "Beállítások elmentve",
"share": "Megosztás",
"share_add_photos": "Fotók hozzáadása",
"share_assets_selected": "{} kiválasztva",
"share_dialog_preparing": "Előkészítés...",
"shared": "Megosztva",
"shared_album_activities_input_disable": "Hozzászólások kikapcsolva",
"shared_album_activity_remove_content": "Törölni szeretnéd ezt a tevékenységet?",
"shared_album_activity_remove_title": "Tevékenység Törlése",
"shared_album_section_people_action_error": "Hiba az albummal kapcsolatos kilépés/eltávolítás közben",
"shared_album_section_people_action_leave": "Felhasználó eltávolítása az albumból",
"shared_album_section_people_action_remove_user": "Felhasználó eltávolítása az albumból",
"shared_album_section_people_title": "EMBEREK",
"shared_by": "Megosztotta",
"shared_by_user": "{user} osztotta meg",
"shared_by_you": "Te osztottad meg",
"shared_from_partner": "{partner} fényképei",
"shared_intent_upload_button_progress_text": "{} / {} Feltöltve",
"shared_link_app_bar_title": "Megosztott Linkek",
"shared_link_clipboard_copied_massage": "Vágólapra másolva",
"shared_link_clipboard_text": "Link: {}\nJelszó: {}",
"shared_link_create_error": "Hiba a megosztott link létrehozásakor",
"shared_link_edit_description_hint": "Add meg a megosztás leírását",
"shared_link_edit_expire_after_option_day": "1 nap",
"shared_link_edit_expire_after_option_days": "{} nap",
"shared_link_edit_expire_after_option_hour": "1 óra",
"shared_link_edit_expire_after_option_hours": "{} óra",
"shared_link_edit_expire_after_option_minute": "1 perc",
"shared_link_edit_expire_after_option_minutes": "{} perc",
"shared_link_edit_expire_after_option_months": "{} hónap",
"shared_link_edit_expire_after_option_year": "{} év",
"shared_link_edit_password_hint": "Add meg a megosztáshoz tartozó jelszót",
"shared_link_edit_submit_button": "Link frissítése",
"shared_link_error_server_url_fetch": "A szerver címét nem lehet betölteni",
"shared_link_expires_day": "{} nap múlva lejár",
"shared_link_expires_days": "{} nap múlva lejár",
"shared_link_expires_hour": "{} óra múlva lejár",
"shared_link_expires_hours": "{} óra múlva lejár",
"shared_link_expires_minute": "{} perc múlva lejár",
"shared_link_expires_minutes": "{} perc múlva lejár",
"shared_link_expires_never": "Nem jár le",
"shared_link_expires_second": "{} másodperc múlva lejár",
"shared_link_expires_seconds": "{} másodperc múlva lejár",
"shared_link_individual_shared": "Egyénileg megosztva",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Megosztott linkek kezelése",
"shared_link_options": "Megosztott link beállításai",
"shared_links": "Megosztott linkek",
"shared_links_description": "Fényképek és videók megosztása linkkel",
"shared_photos_and_videos_count": "{assetCount, plural, other {# megosztott kép és videó.}}",
"shared_with_me": "Velem megosztva",
"shared_with_partner": "Megosztva {partner} partnereddel",
"sharing": "Megosztás",
"sharing_enter_password": "Add meg a jelszót az oldal megtekintéséhez.",
"sharing_page_album": "Megosztott albumok",
"sharing_page_description": "Megosztott albumok létrehozásával fényképeket és videókat oszthatsz meg az ismerőseiddel.",
"sharing_page_empty_list": "ÜRES LISTA",
"sharing_sidebar_description": "Megosztás link megjelenítése az oldalsávban",
"sharing_silver_appbar_create_shared_album": "Új megosztott album",
"sharing_silver_appbar_share_partner": "Megosztás partnerrel",
"shift_to_permanent_delete": "nyomd meg a ⇧ nyilat az elem végleges törléséhez",
"show_album_options": "Album beállítások mutatása",
"show_albums": "Albumok mutatása",
@@ -1267,6 +1732,9 @@
"support_third_party_description": "Az Immich telepítésedet egy harmadik fél csomagolta. Mivel elképzelhető, hogy az esetlegesen felmerülő problémákat ez a csomag okozza, ezért kérjük, először velük közöld a problémákat az alábbi linkek segítségével.",
"swap_merge_direction": "Egyesítés irányának megfordítása",
"sync": "Szinkronizálás",
"sync_albums": "Albumok szinkronizálása",
"sync_albums_manual_subtitle": "Összes fotó és videó létrehozása és szinkronizálása a kiválasztott Immich albumokba",
"sync_upload_album_setting_subtitle": "Fotók és videók létrehozása és szinkronizálása a kiválasztott Immich albumba",
"tag": "Címke",
"tag_assets": "Elemek címkézése",
"tag_created": "Létrehozott címke: {tag}",
@@ -1280,6 +1748,19 @@
"theme": "Téma",
"theme_selection": "Témaválasztás",
"theme_selection_description": "A böngésző beállításának megfelelően automatikusan használjon világos vagy sötét témát",
"theme_setting_asset_list_storage_indicator_title": "Tárhely ikon mutatása az elemeken",
"theme_setting_asset_list_tiles_per_row_title": "Elemek száma soronként ({})",
"theme_setting_colorful_interface_subtitle": "Alapértelmezett szín használata a háttérben lévő felületekhez",
"theme_setting_colorful_interface_title": "Színes felhasználói felület",
"theme_setting_image_viewer_quality_subtitle": "Részletes képmegjelenítő minőségének beállítása",
"theme_setting_image_viewer_quality_title": "Képmegjelenítő minősége",
"theme_setting_primary_color_subtitle": "Válassz egy színt az alapértelmezett műveletekhez és kiemelésekhez",
"theme_setting_primary_color_title": "Alapértelmezett szín",
"theme_setting_system_primary_color_title": "Rendszerszínek használata",
"theme_setting_system_theme_switch": "Automatikus (követi a rendszer témáját)",
"theme_setting_theme_subtitle": "Alkalmazás témájának választása",
"theme_setting_three_stage_loading_subtitle": "A háromlépcsős betöltés javíthatja a betöltési teljesítményt, de jelentősen növeli a hálózati forgalmat",
"theme_setting_three_stage_loading_title": "Háromlépcsős betöltés engedélyezése",
"they_will_be_merged_together": "Egyesítve lesznek",
"third_party_resources": "Harmadik Féltől Származó Források",
"time_based_memories": "Emlékek idő alapján",
@@ -1299,7 +1780,15 @@
"trash_all": "Mindet lomtárba",
"trash_count": "{count, number} elem lomtárba helyezése",
"trash_delete_asset": "Elem Törlése / Lomtárba Helyezése",
"trash_emptied": "Lomtár kiürítve",
"trash_no_results_message": "Itt lesznek láthatóak a lomtárba tett képek és videók.",
"trash_page_delete_all": "Mindet Töröl",
"trash_page_empty_trash_dialog_content": "Ki szeretnéd üríteni a lomtárban lévő elemeket? Ezeket véglegesen eltávolítjuk az Immich-ből",
"trash_page_info": "A Lomátrba helyezett elemek {} nap után véglegesen törlődnek",
"trash_page_no_assets": "A Lomtár üres",
"trash_page_restore_all": "Mindet Visszaállít",
"trash_page_select_assets_btn": "Elemek kiválasztása",
"trash_page_title": "Lomtár ({})",
"trashed_items_will_be_permanently_deleted_after": "A lomtárban lévő elemek véglegesen törlésre kerülnek {days, plural, other {# nap}} múlva.",
"type": "Típus",
"unarchive": "Archívumból kivesz",
@@ -1328,6 +1817,8 @@
"updated_password": "Jelszó megváltoztatva",
"upload": "Feltöltés",
"upload_concurrency": "Párhuzamos feltöltés",
"upload_dialog_info": "Szeretnél mentést készíteni a kiválasztott elem(ek)ről a szerverre?",
"upload_dialog_title": "Elem Feltöltése",
"upload_errors": "Feltöltés befejezve {count, plural, other {# hibával}}, frissítsd az oldalt az újonnan feltöltött elemek megtekintéséhez.",
"upload_progress": "Hátra van {remaining, number} - Feldolgozva {processed, number}/{total, number}",
"upload_skipped_duplicates": "{count, plural, other {# duplikátum}} kihagyva",
@@ -1335,8 +1826,11 @@
"upload_status_errors": "Hibák",
"upload_status_uploaded": "Feltöltve",
"upload_success": "Feltöltés sikeres, frissítsd az oldalt az újonnan feltöltött elemek megtekintéséhez.",
"upload_to_immich": "Feltöltés Immich-be ({})",
"uploading": "Feltöltés folyamatban",
"url": "URL",
"usage": "Használat",
"use_current_connection": "Jelenlegi kapcsolat használata",
"use_custom_date_range": "Szabadon megadott időintervallum használata",
"user": "Felhasználó",
"user_id": "Felhasználó azonosítója",
@@ -1351,10 +1845,16 @@
"users": "Felhasználók",
"utilities": "Segédeszközök",
"validate": "Ellenőrzés",
"validate_endpoint_error": "Kérlek, érvényes URL címet adj meg",
"variables": "Változók",
"version": "Verzió",
"version_announcement_closing": "Barátsággal, Alex",
"version_announcement_message": "Szia! Az Immich-nek elérhető egy új verziója. Kérjük, szánj időt a <link>verzióinformáció</link> elolvasására, hogy meggyőződj róla, hogy a beállításaid naprakészek, így elkerülj egy esetleges félrekonfigurálást. Különösen, ha WatchTower-t vagy más automatikus frissítési megoldást használsz.",
"version_announcement_overlay_release_notes": "kiadási megjegyzések áttekintésére",
"version_announcement_overlay_text_1": "Szia barátom, ennek az alkalmazásnak van egy új verziója: ",
"version_announcement_overlay_text_2": "Kérjük, szánj időt a",
"version_announcement_overlay_text_3": ", és győződj meg róla, hogy a docker-compose.yml és az .env beállításaid naprakészek, hogy elkerüld a hibás konfigurációkat, különösen, ha a WatchTower-t vagy bármilyen automatikus frissítési megoldást használsz.",
"version_announcement_overlay_title": "Elérhető Új Szerververzió 🎉",
"version_history": "Verziótörténet",
"version_history_item": "{version} telepítve: {date}",
"video": "Videó",
@@ -1373,15 +1873,20 @@
"view_next_asset": "Következő elem megtekintése",
"view_previous_asset": "Előző elem megtekintése",
"view_stack": "Csoport Megtekintése",
"viewer_remove_from_stack": "Eltávolít a Csoportból",
"viewer_stack_use_as_main_asset": "Fő Elemnek Beállít",
"viewer_unstack": "Csoport Megszűntetése",
"visibility_changed": "{count, plural, other {# személy}} láthatósága megváltozott",
"waiting": "Várakozás",
"warning": "Figyelmeztetés",
"week": "Hét",
"welcome": "Üdvözlünk",
"welcome_to_immich": "Üdvözlünk az Immich-ben",
"wifi_name": "WiFi Neve",
"year": "Év",
"years_ago": "{years, plural, one {# évvel} other {# évvel}} ezelőtt",
"yes": "Igen",
"you_dont_have_any_shared_links": "Nincsenek megosztott linkjeid",
"your_wifi_name": "A WiFi hálózatod neve",
"zoom_image": "Kép Nagyítása"
}

View File

@@ -116,7 +116,6 @@
"no_pattern_added": "",
"note_apply_storage_label_previous_assets": "",
"note_cannot_be_changed_later": "",
"note_unlimited_quota": "",
"notification_email_from_address": "",
"notification_email_from_address_description": "",
"notification_email_host_description": "",
@@ -614,7 +613,6 @@
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"note_unlimited_quota": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "アカウント設定",
"acknowledge": "了解",
"action": "アクション",
"action_common_update": "更新",
"actions": "アクション",
"active": "アクティブ",
"activity": "アクティビティ",
@@ -13,6 +14,7 @@
"add_a_location": "場所を追加",
"add_a_name": "名前を追加",
"add_a_title": "タイトルを追加",
"add_endpoint": "エンドポイントを追加してください",
"add_exclusion_pattern": "除外パターンを追加",
"add_import_path": "インポートパスを追加",
"add_location": "場所を追加",
@@ -22,6 +24,8 @@
"add_photos": "写真を追加",
"add_to": "追加先…",
"add_to_album": "アルバムに追加",
"add_to_album_bottom_sheet_added": "{album}に追加",
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
"add_to_shared_album": "共有アルバムに追加",
"add_url": "URLを追加",
"added_to_archive": "アーカイブに追加済",
@@ -66,6 +70,7 @@
"forcing_refresh_library_files": "すべてのライブラリファイルを強制更新",
"image_format": "フォーマット",
"image_format_description": "WebPはJPEGよりもファイルサイズが小さいですが、エンコードに時間がかかります。",
"image_fullsize_description": "画像を拡大する時に使われるメタデータを取り除いた原寸大画像",
"image_fullsize_enabled": "原寸大画像生成を有効にする",
"image_fullsize_quality_description": "1から100まで原寸大画像の質です。高いほうがいいがファイルが大きくなります。",
"image_fullsize_title": "原寸大画像設定",
@@ -165,7 +170,6 @@
"no_pattern_added": "パターンが追加されていません",
"note_apply_storage_label_previous_assets": "注意: 以前にアップロードされたアセットにストレージラベルを適用するには、以下を実行してください",
"note_cannot_be_changed_later": "注意: 後から変更できません!",
"note_unlimited_quota": "注意: 無制限にする場合は0を入力してください",
"notification_email_from_address": "送信メールアドレス",
"notification_email_from_address_description": "送信メールアドレスを設定します(例: \"Immich Photo Server <noreply@example.com>\" ",
"notification_email_host_description": "送信メールサーバーを設定しますsmtp.immich.app",
@@ -366,6 +370,16 @@
"admin_password": "管理者パスワード",
"administration": "管理",
"advanced": "詳細設定",
"advanced_settings_log_level_title": "ログレベル: {}",
"advanced_settings_prefer_remote_subtitle": "デバイスによっては、デバイス上にあるサムネイルのロードに非常に時間がかかることがあります。このオプションをに有効にする事により、サーバーから直接画像をロードすることが可能です。",
"advanced_settings_prefer_remote_title": "リモートを優先する",
"advanced_settings_proxy_headers_subtitle": "プロキシヘッダを設定する",
"advanced_settings_proxy_headers_title": "プロキシヘッダ",
"advanced_settings_self_signed_ssl_subtitle": "SSLのチェックをスキップする。自己署名証明書が必要です。",
"advanced_settings_self_signed_ssl_title": "自己署名証明書を許可する",
"advanced_settings_tile_subtitle": "追加ユーザー設定",
"advanced_settings_troubleshooting_subtitle": "トラブルシューティング用の詳細設定をオンにする",
"advanced_settings_troubleshooting_title": "トラブルシューティング",
"age_months": "{months,plural, one {#か月} other {#か月}}",
"age_year_months": "1歳{months,plural, one {#か月} other {#か月}}",
"age_years": "{years,plural, one {#歳} other {#歳}}",
@@ -374,6 +388,8 @@
"album_cover_updated": "アルバムカバー更新",
"album_delete_confirmation": "アルバム{album}を本当に削除しますか?",
"album_delete_confirmation_description": "このアルバムが共有されているなら、他のユーザーもアルバムにアクセスできなくなります。",
"album_info_card_backup_album_excluded": "除外中",
"album_info_card_backup_album_included": "選択中",
"album_info_updated": "アルバム情報更新",
"album_leave": "アルバムから去りますか?",
"album_leave_confirmation": "本当に {album} から去りますか?",
@@ -382,10 +398,22 @@
"album_remove_user": "ユーザーを削除しますか?",
"album_remove_user_confirmation": "本当に{user}を削除しますか?",
"album_share_no_users": "このアルバムを全てのユーザーと共有したか、共有するユーザーがいないようです。",
"album_thumbnail_card_item": "1枚",
"album_thumbnail_card_items": "{}枚",
"album_thumbnail_card_shared": "共有済み",
"album_thumbnail_shared_by": "{}が共有中",
"album_updated": "アルバム更新",
"album_updated_setting_description": "共有アルバムに新しいアセットが追加されたとき通知を受け取る",
"album_user_left": "{album} を去りました",
"album_user_removed": "{user} を削除しました",
"album_viewer_appbar_delete_confirm": "本当にこのアルバムを削除しますか?",
"album_viewer_appbar_share_err_delete": "削除失敗",
"album_viewer_appbar_share_err_leave": "退出失敗",
"album_viewer_appbar_share_err_remove": "アルバムから写真を削除する際にエラー発生",
"album_viewer_appbar_share_err_title": "タイトル変更の失敗",
"album_viewer_appbar_share_leave": "アルバムから退出",
"album_viewer_appbar_share_to": "次の方々と共有します",
"album_viewer_page_share_add_users": "ユーザーを追加",
"album_with_link_access": "リンクを知っている人は誰でも、このアルバム中の写真と人物を閲覧できるようになります。",
"albums": "アルバム",
"albums_count": "{count, plural, one {{count, number} 件} other {{count, number} 件}}のアルバム",
@@ -403,42 +431,133 @@
"api_key_description": "この値は一回のみ表示されます。 ウィンドウを閉じる前に必ずコピーしてください。",
"api_key_empty": "APIキー名は空白にできません",
"api_keys": "APIキー",
"app_bar_signout_dialog_content": " サインアウトしますか?",
"app_bar_signout_dialog_ok": "はい",
"app_bar_signout_dialog_title": " サインアウト",
"app_settings": "アプリ設定",
"appears_in": "これらに含まれます",
"archive": "アーカイブ",
"archive_or_unarchive_photo": "写真をアーカイブまたはアーカイブ解除",
"archive_page_no_archived_assets": "アーカイブ済みの写真またはビデオがありません",
"archive_page_title": "アーカイブ({})",
"archive_size": "アーカイブサイズ",
"archive_size_description": "ダウンロードのアーカイブ サイズを設定(GiB 単位)",
"archived": "アーカイブ済み",
"archived_count": "アーカイブされた{count, plural, other {#個の項目}}",
"are_these_the_same_person": "これらは同じ人物ですか?",
"are_you_sure_to_do_this": "本当にこれを行いますか?",
"asset_action_delete_err_read_only": "読み取り専用の項目は削除できません。スキップします",
"asset_action_share_err_offline": "オフラインの項目をゲットできません。スキップします",
"asset_added_to_album": "アルバムに追加",
"asset_adding_to_album": "アルバムに追加しています…",
"asset_description_updated": "アセットの説明が更新されました",
"asset_filename_is_offline": "アセット {filename} はオフラインです",
"asset_has_unassigned_faces": "アセットには未割り当ての顔があります",
"asset_hashing": "ハッシュ計算中…",
"asset_list_group_by_sub_title": "グループ分け",
"asset_list_layout_settings_dynamic_layout_title": "ダイナミックレイアウト",
"asset_list_layout_settings_group_automatically": "自動",
"asset_list_layout_settings_group_by": "写真のグループ分け",
"asset_list_layout_settings_group_by_month_day": "月 + 日",
"asset_list_layout_sub_title": "レイアウト",
"asset_list_settings_subtitle": "グリッドに関する設定",
"asset_list_settings_title": "グリッド",
"asset_offline": "アセットはオフラインです",
"asset_offline_description": "このアセットはオフラインです。 Immichはファイルの場所にアクセスできません。 アセットが利用可能であることを確認しライブラリを再スキャンしてください。",
"asset_restored_successfully": "{}項目を復元しました",
"asset_skipped": "スキップ済",
"asset_skipped_in_trash": "ゴミ箱の中",
"asset_uploaded": "アップロード済",
"asset_uploading": "アップロード中…",
"asset_viewer_settings_subtitle": "ギャラリービューアーに関する設定",
"asset_viewer_settings_title": "アセットビューアー",
"assets": "アセット",
"assets_added_count": "{count, plural, one {#個} other {#個}}のアセットを追加しました",
"assets_added_to_album_count": "{count, plural, one {#個} other {#個}}のアセットをアルバムに追加しました",
"assets_added_to_name_count": "{count, plural, one {#個} other {#個}}のアセットを{hasName, select, true {<b>{name}</b>} other {新しいアルバム}}に追加しました",
"assets_count": "{count, plural, one {#個} other {#個}}のアセット",
"assets_deleted_permanently": "{}項目を完全に削除しました",
"assets_deleted_permanently_from_server": "サーバー上の{}項目を完全に削除しました",
"assets_moved_to_trash_count": "{count, plural, one {#個} other {#個}}のアセットをごみ箱に移動しました",
"assets_permanently_deleted_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
"assets_removed_count": "{count, plural, one {#個} other {#個}}のアセットを削除しました",
"assets_removed_permanently_from_device": "端末から{}項目を完全に削除しました",
"assets_restore_confirmation": "ごみ箱のアセットをすべて復元してもよろしいですか? この操作を元に戻すことはできません! オフラインのアセットはこの方法では復元できません。",
"assets_restored_count": "{count, plural, one {#個} other {#個}}のアセットを復元しました",
"assets_restored_successfully": "{}項目を復元しました",
"assets_trashed": "{}項目をゴミ箱に移動しました",
"assets_trashed_count": "{count, plural, one {#個} other {#個}}のアセットをごみ箱に移動しました",
"assets_trashed_from_server": "サーバー上の{}項目をゴミ箱に移動しました",
"assets_were_part_of_album_count": "{count, plural, one {個} other {個}}のアセットは既にアルバムの一部です",
"authorized_devices": "認可済みデバイス",
"automatic_endpoint_switching_subtitle": "指定されたWi-Fiに接続時のみローカル接続を行い、他のネットワーク下では通常通りの接続を行います",
"automatic_endpoint_switching_title": "自動URL切り替え",
"back": "戻る",
"back_close_deselect": "戻る、閉じる、選択解除",
"background_location_permission": "バックグラウンド位置情報アクセス",
"background_location_permission_content": "正常にWi-Fiの名前(SSID)を獲得するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
"backup_album_selection_page_albums_device": "端末上のアルバム数: {}",
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
"backup_album_selection_page_assets_scatter": "アルバムを選択・除外してバックアップする写真を選ぶ (同じ写真が複数のアルバムに登録されていることがあるため)",
"backup_album_selection_page_select_albums": "アルバムを選択",
"backup_album_selection_page_selection_info": "選択・除外中のアルバム",
"backup_album_selection_page_total_assets": "選択されたアルバムの写真と動画の数",
"backup_all": "すべて",
"backup_background_service_backup_failed_message": "アップロードに失敗しました。リトライ中",
"backup_background_service_connection_failed_message": "サーバーに接続できません。リトライ中",
"backup_background_service_current_upload_notification": "{}をアップロード中",
"backup_background_service_default_notification": "新しい写真を確認中",
"backup_background_service_error_title": "バックアップエラー",
"backup_background_service_in_progress_notification": "バックアップ中",
"backup_background_service_upload_failure_notification": "{}のアップロードに失敗",
"backup_controller_page_albums": "アルバム",
"backup_controller_page_background_app_refresh_disabled_content": "バックグラウンドで写真のバックアップを行いたい場合は、バックグラウンド更新を\n設定 > 一般 > Appのバックグラウンド更新\nからオンにしてください。",
"backup_controller_page_background_app_refresh_disabled_title": "バックグラウンド更新はオフになっています",
"backup_controller_page_background_app_refresh_enable_button_text": "設定を開く",
"backup_controller_page_background_battery_info_link": "詳細",
"backup_controller_page_background_battery_info_message": "バックグラウンド処理を正常に動作させるためには、Immichアプリに適用されているバッテリーの最適化をオフにしてください。\n\nデバイスによって設定方法が異なりますので各々調べてください",
"backup_controller_page_background_battery_info_ok": "了解",
"backup_controller_page_background_battery_info_title": "バッテリーの最適化",
"backup_controller_page_background_charging": "充電中のみ",
"backup_controller_page_background_configure_error": "バックグラウンドサービスの設定に失敗",
"backup_controller_page_background_delay": "新しい写真のバックアップ遅延: {}",
"backup_controller_page_background_description": "アプリを開いていないときもバックアップを行います",
"backup_controller_page_background_is_off": "バックグランドサービスがオフになっています",
"backup_controller_page_background_is_on": "バックグランドサービスがオンになっています",
"backup_controller_page_background_turn_off": "バックグラウンドサービスをオフにする",
"backup_controller_page_background_turn_on": "バックグラウンドサービスをオンにする",
"backup_controller_page_background_wifi": "WiFi接続中のみ",
"backup_controller_page_backup": "バックアップ",
"backup_controller_page_backup_selected": "選択中:",
"backup_controller_page_backup_sub": "バックアップされた写真と動画の数",
"backup_controller_page_created": "{} 作成",
"backup_controller_page_desc_backup": "アプリを開いているときに写真と動画をバックアップします",
"backup_controller_page_excluded": "除外中のアルバム:",
"backup_controller_page_failed": "失敗: ({})",
"backup_controller_page_filename": "ファイル名: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "バックアップ情報",
"backup_controller_page_none_selected": "なし",
"backup_controller_page_remainder": "残り",
"backup_controller_page_remainder_sub": "残りの写真と動画の数",
"backup_controller_page_server_storage": "サーバー容量",
"backup_controller_page_start_backup": "バックアップ開始",
"backup_controller_page_status_off": "バックアップがオフになっています",
"backup_controller_page_status_on": "バックアップがオンになっています",
"backup_controller_page_storage_format": "使用済み({}) - 全体({})",
"backup_controller_page_to_backup": "バックアップされるアルバム",
"backup_controller_page_total_sub": "選択されたアルバムの写真と動画の数",
"backup_controller_page_turn_off": "バックアップをオフにする",
"backup_controller_page_turn_on": "バックアップをオンにする",
"backup_controller_page_uploading_file_info": "アップロード中のファイル",
"backup_err_only_album": "最低1つのアルバムを選択してください",
"backup_info_card_assets": "写真と動画",
"backup_manual_cancelled": "キャンセルされました",
"backup_manual_in_progress": "アップロードが進行中です。後でもう一度試してください",
"backup_manual_success": "成功",
"backup_manual_title": "アップロード状況",
"backup_options_page_title": "バックアップオプション",
"backup_setting_subtitle": "アップロードに関する設定",
"backward": "新しい方へ",
"birthdate_saved": "生年月日が正常に保存されました",
"birthdate_set_description": "生年月日は、写真撮影時のこの人物の年齢を計算するために使用されます。",
@@ -450,24 +569,52 @@
"bulk_keep_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複アセットを保持しますか?これにより何も削除されずに重複グループが解決されます。",
"bulk_trash_duplicates_confirmation": "本当に{count, plural, one {#個} other {#個}}の重複したアセットを一括でごみ箱に移動しますか?これにより各重複中の最大のアセットが保持され、他の全ての重複はごみ箱に移動されます。",
"buy": "Immichを購入",
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({}枚)",
"cache_settings_clear_cache_button": "キャッシュをクリア",
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
"cache_settings_duplicated_assets_clear_button": "クリア",
"cache_settings_duplicated_assets_subtitle": "サーバーにアップロード済みと認識された写真や動画の数",
"cache_settings_duplicated_assets_title": "{}項目の重複",
"cache_settings_image_cache_size": "キャッシュのサイズ ({}枚)",
"cache_settings_statistics_album": "ライブラリのサムネイル",
"cache_settings_statistics_assets": "{}枚 ({}枚中)",
"cache_settings_statistics_full": "フル画像",
"cache_settings_statistics_shared": "共有アルバムのサムネイル",
"cache_settings_statistics_thumbnail": "サムネイル",
"cache_settings_statistics_title": "キャッシュ",
"cache_settings_subtitle": "キャッシュの動作を変更する",
"cache_settings_thumbnail_size": "サムネイルのキャッシュのサイズ ({}枚)",
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
"cache_settings_tile_title": "ローカルストレージ",
"cache_settings_title": "キャッシュの設定",
"camera": "カメラブランド",
"camera_brand": "カメラブランド",
"camera_model": "カメラモデル",
"cancel": "キャンセル",
"cancel_search": "検索をキャンセル",
"canceled": "Canceled",
"cannot_merge_people": "人物を統合できません",
"cannot_undo_this_action": "この操作は元に戻せません!",
"cannot_update_the_description": "説明を更新できません",
"change_date": "日時を変更",
"change_display_order": "Change display order",
"change_expiration_time": "有効期限を変更",
"change_location": "場所を変更",
"change_name": "名前を変更",
"change_name_successfully": "名前を正常に変更しました",
"change_password": "パスワードを変更",
"change_password_description": "これは、初めてのサインインであるか、パスワードの変更要求が行われたかのいずれかです。 新しいパスワードを下に入力してください。",
"change_password_form_confirm_password": "確定",
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください",
"change_password_form_new_password": "新しいパスワード",
"change_password_form_password_mismatch": "パスワードが一致しません",
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
"change_your_password": "パスワードを変更します",
"changed_visibility_successfully": "非表示設定を正常に変更しました",
"check_all": "全て選択",
"check_corrupt_asset_backup": "破損されている項目を探す",
"check_corrupt_asset_backup_button": "チェックを行う",
"check_corrupt_asset_backup_description": "写真や動画などが全てアップロードし終えてからWi-Fiに接続時のみチェックを行なってください。作業が完了するには数分かかる場合があります",
"check_logs": "ログを確認",
"choose_matching_people_to_merge": "統合先の人物を選んでください",
"city": "市町村",
@@ -476,6 +623,14 @@
"clear_all_recent_searches": "全ての最近の検索をクリア",
"clear_message": "メッセージをクリア",
"clear_value": "値をクリア",
"client_cert_dialog_msg_confirm": "了解",
"client_cert_enter_password": "パスワードを入力",
"client_cert_import": "インポート",
"client_cert_import_success_msg": "クライアント証明書が導入されました",
"client_cert_invalid_msg": "パスワードが間違っているか証明書が無効です",
"client_cert_remove_msg": "クライアント証明書が削除されました",
"client_cert_subtitle": "PKCS12 (.p12 .pfx) フォーマットのみ対応されてます。証明書の導入や削除はログイン前のみ行えます",
"client_cert_title": "SSLクライアント証明書",
"clockwise": "時計回り",
"close": "閉じる",
"collapse": "展開",
@@ -486,6 +641,9 @@
"comment_options": "コメント設定",
"comments_and_likes": "コメントといいね",
"comments_are_disabled": "コメントは無効化されています",
"common_create_new_album": "アルバムを作成",
"common_server_error": "ネットワーク接続を確認し、サーバーが接続できる状態にあるか確認してください。アプリとサーバーのバージョンが一致しているかも確認してください。",
"completed": "Completed",
"confirm": "確認",
"confirm_admin_password": "管理者パスワードを確認",
"confirm_delete_face": "本当に『{name}』の顔をアセットから削除しますか?",
@@ -495,6 +653,15 @@
"contain": "収める",
"context": "状況",
"continue": "続ける",
"control_bottom_app_bar_album_info_shared": "{}枚 · 共有済",
"control_bottom_app_bar_create_new_album": "アルバムを作成",
"control_bottom_app_bar_delete_from_immich": "Immichから削除",
"control_bottom_app_bar_delete_from_local": "端末上から削除",
"control_bottom_app_bar_edit_location": "位置情報を編集",
"control_bottom_app_bar_edit_time": "日時を変更",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "次のユーザーに共有: ",
"control_bottom_app_bar_trash_from_immich": "ゴミ箱に入れる",
"copied_image_to_clipboard": "画像をクリップボードにコピーしました。",
"copied_to_clipboard": "クリップボードにコピーしました!",
"copy_error": "コピーのエラー",
@@ -509,24 +676,34 @@
"covers": "カバー",
"create": "作成",
"create_album": "アルバムを作成",
"create_album_page_untitled": "タイトルなし",
"create_library": "ライブラリを作成",
"create_link": "リンクを作る",
"create_link_to_share": "共有リンクを作る",
"create_link_to_share_description": "リンクを知っている人全員が選択した写真を閲覧できるようになります",
"create_new": "新規作成",
"create_new_person": "新しい人物を作成",
"create_new_person_hint": "選択されたアセットを新しい人物に割り当て",
"create_new_user": "新規ユーザーの作成",
"create_shared_album_page_share_add_assets": "写真を追加",
"create_shared_album_page_share_select_photos": "写真を選択",
"create_tag": "タグを作成する",
"create_tag_description": "タグを作成します。入れ子構造のタグは、はじめのスラッシュを含めた、タグの完全なパスを入力してください。",
"create_user": "ユーザーを作成",
"created": "作成",
"crop": "クロップ",
"curated_object_page_title": "被写体",
"current_device": "現在のデバイス",
"current_server_address": "現在のサーバーURL",
"custom_locale": "カスタムロケール",
"custom_locale_description": "言語と地域に基づいて日付と数値をフォーマットします",
"daily_title_text_date": "MM DD, EE",
"daily_title_text_date_year": "yyyy MM DD, EE",
"dark": "ダークモード",
"date_after": "この日以降",
"date_and_time": "日付と時間",
"date_before": "この日以前",
"date_format": "MM DD, EE • hh:mm",
"date_of_birth_saved": "生年月日は正常に保存されました",
"date_range": "日付",
"day": "ライトモード",
@@ -540,19 +717,30 @@
"delete": "削除",
"delete_album": "アルバムを削除",
"delete_api_key_prompt": "本当にこのAPI キーを削除しますか?",
"delete_dialog_alert": "サーバーとデバイスの両方から永久的に削除されます!",
"delete_dialog_alert_local": "選択された項目はデバイスから削除されますが、Immichには残ります",
"delete_dialog_alert_local_non_backed_up": "選択された項目のうち、Immichにバックアップされていない物が含まれています。デバイスからも完全に削除されます。",
"delete_dialog_alert_remote": "選択された項目はImmichから永久に削除されます",
"delete_dialog_ok_force": "削除します",
"delete_dialog_title": "永久的に削除",
"delete_duplicates_confirmation": "本当にこれらの重複を完全に削除しますか?",
"delete_face": "顔の削除",
"delete_key": "キーを削除",
"delete_library": "ライブラリを削除",
"delete_link": "リンクを削除",
"delete_local_dialog_ok_backed_up_only": "バックアップ済みのみを削除",
"delete_local_dialog_ok_force": "削除します",
"delete_others": "ほかを削除",
"delete_shared_link": "共有リンクを消す",
"delete_shared_link_dialog_title": "共有リンクを消す",
"delete_tag": "タグを削除する",
"delete_tag_confirmation_prompt": "本当に{tagName}タグを削除しますか?",
"delete_user": "ユーザーを削除",
"deleted_shared_link": "共有リンクを削除",
"deletes_missing_assets": "ディスクからなくなったアセットを削除する",
"description": "概要欄",
"description_input_hint_text": "説明を追加",
"description_input_submit_error": "説明の編集に失敗しました。詳細はログを確認してください。",
"details": "詳細",
"direction": "方向",
"disabled": "無効",
@@ -569,12 +757,26 @@
"documentation": "ドキュメント",
"done": "完了",
"download": "ダウンロード",
"download_canceled": "ダウンロードがキャンセルされました",
"download_complete": "ダウンロード完了",
"download_enqueue": "ダウンロード待機中",
"download_error": "ダウンロードエラー",
"download_failed": "ダウンロード失敗",
"download_filename": "ファイル名: {}",
"download_finished": "ダウンロード終了",
"download_include_embedded_motion_videos": "埋め込まれた動画",
"download_include_embedded_motion_videos_description": "別ファイルとして、モーションフォトに埋め込まれた動画を含める",
"download_notfound": "ダウンロードが見つかりません",
"download_paused": "ダウンロード停止",
"download_settings": "ダウンロード",
"download_settings_description": "アセットのダウンロードに関連する設定を管理します",
"download_started": "ダウンロード開始",
"download_sucess": "ダウンロード成功",
"download_sucess_android": "DCIM/Immichに保存されました",
"download_waiting_to_retry": "リトライ中",
"downloading": "ダウンロード中",
"downloading_asset_filename": "アセット {filename} をダウンロード中",
"downloading_media": "ダウンロード中",
"drop_files_to_upload": "ファイルをドロップしてアップロード",
"duplicates": "重複",
"duplicates_description": "もしあれば、重複しているグループを示すことで解決します",
@@ -591,6 +793,7 @@
"edit_key": "キーを編集",
"edit_link": "リンクを編集する",
"edit_location": "位置情報を編集",
"edit_location_dialog_title": "位置情報",
"edit_name": "名前を変更",
"edit_people": "人物を編集",
"edit_tag": "タグを編集する",
@@ -603,14 +806,19 @@
"editor_crop_tool_h2_aspect_ratios": "アスペクト比",
"editor_crop_tool_h2_rotation": "回転",
"email": "メールアドレス",
"empty_folder": "This folder is empty",
"empty_trash": "コミ箱を空にする",
"empty_trash_confirmation": "本当にゴミ箱を空にしますか? これにより、ゴミ箱内のすべてのアセットが Immich から永久に削除されます。\nこの操作を元に戻すことはできません!",
"enable": "有効化",
"enabled": "有効",
"end_date": "終了日",
"enqueued": "Enqueued",
"enter_wifi_name": "Wi-Fiの名前(SSID)を入力",
"error": "エラー",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "アセットから顔の削除ができませんでした",
"error_loading_image": "画像の読み込みエラー",
"error_saving_image": "エラー: {}",
"error_title": "エラー - 問題が発生しました",
"errors": {
"cannot_navigate_next_asset": "次のアセットに移動できません",
@@ -739,8 +947,21 @@
"unable_to_upload_file": "ファイルをアップロードできません"
},
"exif": "Exif",
"exif_bottom_sheet_description": "説明を追加",
"exif_bottom_sheet_details": "詳細",
"exif_bottom_sheet_location": "撮影場所",
"exif_bottom_sheet_people": "人物",
"exif_bottom_sheet_person_add_person": "名前を追加",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "スライドショーを終わる",
"expand_all": "全て展開",
"experimental_settings_new_asset_list_subtitle": "製作途中 (WIP)",
"experimental_settings_new_asset_list_title": "試験的なグリッドを有効化",
"experimental_settings_subtitle": "試験的機能につき自己責任で!",
"experimental_settings_title": "試験的機能",
"expire_after": "有効期限",
"expired": "有効期限が切れました",
"expires_date": "{date} に失効",
@@ -751,11 +972,16 @@
"extension": "拡張子",
"external": "外部",
"external_libraries": "外部ライブラリ",
"external_network": "外部のネットワーク",
"external_network_sheet_info": "指定されたWi-Fiに繋がっていない時アプリはサーバーへの接続を指定されたURLで行います。優先順位は上から下です",
"face_unassigned": "未割り当て",
"failed": "Failed",
"failed_to_load_assets": "アセットのロードに失敗しました",
"failed_to_load_folder": "Failed to load folder",
"favorite": "お気に入り",
"favorite_or_unfavorite_photo": "写真をお気に入りまたはお気に入り解除",
"favorites": "お気に入り",
"favorites_page_no_favorites": "お気に入り登録された写真またはビデオがありません",
"feature_photo_updated": "人物画像が更新されました",
"features": "機能",
"features_setting_description": "アプリの機能を管理する",
@@ -763,25 +989,38 @@
"file_name_or_extension": "ファイル名または拡張子",
"filename": "ファイル名",
"filetype": "ファイルタイプ",
"filter": "フィルター",
"filter_people": "人物を絞り込み",
"find_them_fast": "名前で検索して素早く発見",
"fix_incorrect_match": "間違った一致を修正",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "フォルダ",
"folders_feature_description": "ファイルシステム上の写真と動画のフォルダビューを閲覧する",
"forward": "前へ",
"general": "一般",
"get_help": "助けを求める",
"get_wifiname_error": "Wi-Fiの名前(SSID)が入手できませんでした。Wi-Fiに繋がってるのと必要な権限を許可したか確認してください",
"getting_started": "はじめる",
"go_back": "戻る",
"go_to_folder": "フォルダへ",
"go_to_search": "検索へ",
"grant_permission": "許可する",
"group_albums_by": "これでアルバムをグループ化…",
"group_country": "国でグループ化",
"group_no": "グループ化なし",
"group_owner": "所有者でグループ化",
"group_places_by": "グループ分け...",
"group_year": "年でグループ化",
"haptic_feedback_switch": "ハプティックフィードバック",
"haptic_feedback_title": "ハプティックフィードバックを有効にする",
"has_quota": "クォータ有り",
"header_settings_add_header_tip": "ヘッダを追加",
"header_settings_field_validator_msg": "ヘッダを空白にはできません",
"header_settings_header_name_input": "ヘッダの名前",
"header_settings_header_value_input": "ヘッダのバリュー",
"headers_settings_tile_subtitle": "プロキシヘッダを設定する",
"headers_settings_tile_title": "カスタムプロキシヘッダ",
"hi_user": "こんにちは、{name}( {email})さん",
"hide_all_people": "全ての人物を非表示",
"hide_gallery": "ギャラリーを非表示",
@@ -789,8 +1028,24 @@
"hide_password": "パスワードを隠す",
"hide_person": "人物を非表示",
"hide_unnamed_people": "名前がない人物を非表示",
"home_page_add_to_album_conflicts": "{album}に{added}枚写真を追加しました。追加済みの{failed}枚はスキップしました。",
"home_page_add_to_album_err_local": "まだアップロードされてない項目は、アルバムに登録できません",
"home_page_add_to_album_success": "{album}に{added}枚写真を追加しました",
"home_page_album_err_partner": "まだパートナーの写真はアルバムに追加できません。スキップします (アップデートをお待ちください)",
"home_page_archive_err_local": "まだアップロードされてない項目はアーカイブできません",
"home_page_archive_err_partner": "パートナーの写真はアーカイブできません。スキップします",
"home_page_building_timeline": "タイムライン構築中",
"home_page_delete_err_partner": "パートナーの写真は削除できません。スキップします",
"home_page_delete_remote_err_local": "サーバー上のアイテムの削除の選択に端末上のアイテムが含まれているのでスキップします",
"home_page_favorite_err_local": "まだアップロードされてない項目はお気に入り登録できません",
"home_page_favorite_err_partner": "まだパートナーの写真をお気に入り登録できません。スキップします (アップデートをお待ちください)",
"home_page_first_time_notice": "はじめてアプリを使う場合、タイムラインに写真を表示するためにアルバムを選択してください",
"home_page_share_err_local": "ローカルのみの項目をリンクで共有はできません。スキップします",
"home_page_upload_err_limit": "1回でアップロードできる写真の数は30枚です。スキップします",
"host": "ホスト",
"hour": "時間",
"ignore_icloud_photos": "iCloud上の写真をスキップ",
"ignore_icloud_photos_description": "iCloudに保存済みの項目をImmichサーバー上にアップロードしません",
"image": "写真",
"image_alt_text_date": "{isVideo, select, true {動画} other {写真}}は{date} に撮影",
"image_alt_text_date_1_person": "{date}の、{person1}との{isVideo, select, true {動画} other {画像}}",
@@ -802,6 +1057,10 @@
"image_alt_text_date_place_2_people": "{date}の、{country}、{city}での{person1}と{person2}の{isVideo, select, true {動画} other {画像}}",
"image_alt_text_date_place_3_people": "{date}の、{country}、{city}での{person1}と{person2}、そして{person3}の{isVideo, select, true {動画} other {画像}}",
"image_alt_text_date_place_4_or_more_people": "{date}の、{country}、{city}での{person1}と{person2}、そしてその他{additionalCount, number}人の{isVideo, select, true {動画} other {画像}}",
"image_saved_successfully": "画像が保存されました",
"image_viewer_page_state_provider_download_started": "ダウンロードが始まります",
"image_viewer_page_state_provider_download_success": "ダウンロード成功",
"image_viewer_page_state_provider_share_error": "共有エラー",
"immich_logo": "Immich ロゴ",
"immich_web_interface": "Immich Webインターフェース",
"import_from_json": "JSONからインポート",
@@ -820,6 +1079,8 @@
"night_at_midnight": "毎晩真夜中に",
"night_at_twoam": "毎晩午前2時"
},
"invalid_date": "日付が無効です",
"invalid_date_format": "日付のフォーマットが無効です",
"invite_people": "人々を招待",
"invite_to_album": "アルバムに招待",
"items_count": "{count, plural, one {#個} other {#個}}の項目",
@@ -840,6 +1101,12 @@
"level": "レベル",
"library": "ライブラリ",
"library_options": "ライブラリ設定",
"library_page_device_albums": "デバイス上のアルバム",
"library_page_new_album": "新しいアルバム",
"library_page_sort_asset_count": "項目の数",
"library_page_sort_created": "作成日時",
"library_page_sort_last_modified": "最終変更",
"library_page_sort_title": "アルバム名",
"light": "ライトモード",
"like_deleted": "いいねが削除されました",
"link_motion_video": "モーションビデオのリンク",
@@ -849,12 +1116,42 @@
"list": "リスト",
"loading": "読み込み中",
"loading_search_results_failed": "検索結果を読み込めませんでした",
"local_network": "ローカルネットワーク",
"local_network_sheet_info": "アプリは指定されたWi-Fiに繋がっている時サーバーへの接続を下記のURLで行います",
"location_permission": "位置情報権限",
"location_permission_content": "自動URL切り替えを使用するにはWi-Fiの名前(SSID)を取得する必要があり、正常に機能するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
"location_picker_choose_on_map": "マップを選択",
"location_picker_latitude_error": "有効な緯度を入力してください",
"location_picker_latitude_hint": "緯度を入力",
"location_picker_longitude_error": "有効な経度を入力してください",
"location_picker_longitude_hint": "経度を入力",
"log_out": "ログアウト",
"log_out_all_devices": "全てのデバイスからログアウト",
"logged_out_all_devices": "全てのデバイスからログアウトしました",
"logged_out_device": "デバイスからログアウトしました",
"login": "ログイン",
"login_disabled": "ログインは無効化されました",
"login_form_api_exception": "APIエラーが発生しました。URLをチェックしてもう一度お試しください。",
"login_form_back_button_text": "戻る",
"login_form_email_hint": "hoge@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "サーバーのエンドポイントURL",
"login_form_err_http": "http://かhttps://かを指定してください",
"login_form_err_invalid_email": "メールアドレスが無効です",
"login_form_err_invalid_url": "無効なURL",
"login_form_err_leading_whitespace": "最初にスペースが含まれています",
"login_form_err_trailing_whitespace": "最後にスペースが含まれています",
"login_form_failed_get_oauth_server_config": "OAuthログインに失敗しました。サーバーのURLを確認してください。",
"login_form_failed_get_oauth_server_disable": "このサーバーではOAuthが使えません",
"login_form_failed_login": "ログインエラーが発生しました。サーバーのURL・メールアドレス・パスワードを再確認してください。",
"login_form_handshake_exception": "Handshake Exceptionエラーが発生しました。自己署名証明書を設定から有効にしてください。",
"login_form_password_hint": "パスワード",
"login_form_save_login": "ログインを保持",
"login_form_server_empty": "URLを入力",
"login_form_server_error": "サーバーに接続できません",
"login_has_been_disabled": "ログインは無効化されています。",
"login_password_changed_error": "パスワードの変更でエラーが発生しました",
"login_password_changed_success": "パスワードの変更に成功",
"logout_all_device_confirmation": "本当に全てのデバイスからログアウトしますか?",
"logout_this_device_confirmation": "本当にこのデバイスからログアウトしますか?",
"longitude": "経度",
@@ -872,13 +1169,40 @@
"manage_your_devices": "ログインデバイスを管理します",
"manage_your_oauth_connection": "OAuth接続を管理します",
"map": "地図",
"map_assets_in_bound": "{}項目",
"map_assets_in_bounds": "{}項目",
"map_cannot_get_user_location": "位置情報がゲットできません",
"map_location_dialog_yes": "はい",
"map_location_picker_page_use_location": "この位置情報を使う",
"map_location_service_disabled_content": "現在地の項目を表示するには位置情報がオンである必要があります。有効化しますか?",
"map_location_service_disabled_title": "位置情報がオフです",
"map_marker_for_images": "{country} {city}で撮影された写真の地図マーカー",
"map_marker_with_image": "画像の地図マーカー",
"map_no_assets_in_bounds": "このエリアに写真はありません",
"map_no_location_permission_content": "現在地の項目を表示するには位置情報へのアクセスが必要です。許可しますか?",
"map_no_location_permission_title": "位置情報へのアクセスが拒否されました",
"map_settings": "マップの設定",
"map_settings_dark_mode": "ダークモード",
"map_settings_date_range_option_day": "過去24時間",
"map_settings_date_range_option_days": "過去{}日間",
"map_settings_date_range_option_year": "過去1年間",
"map_settings_date_range_option_years": "過去{}年間",
"map_settings_dialog_title": "マップの設定",
"map_settings_include_show_archived": "アーカイブ済みを含める",
"map_settings_include_show_partners": "パートナーを含める",
"map_settings_only_show_favorites": "お気に入りのみを表示",
"map_settings_theme_settings": "地図の見た目",
"map_zoom_to_see_photos": "写真を見るにはズームアウト",
"matches": "マッチ",
"media_type": "メディアタイプ",
"memories": "メモリー",
"memories_all_caught_up": "すべて確認済み",
"memories_check_back_tomorrow": "明日もう一度確認してください",
"memories_setting_description": "メモリーの内容を管理します",
"memories_start_over": "始める",
"memories_swipe_to_close": "上にスワイプして閉じる",
"memories_year_ago": "一年前",
"memories_years_ago": "{}年前",
"memory": "メモリー",
"memory_lane_title": "思い出 {title}",
"menu": "メニュー",
@@ -893,12 +1217,17 @@
"missing": "欠落",
"model": "モデル",
"month": "月",
"monthly_title_text_date_format": "yyyy MM",
"more": "もっと表示",
"moved_to_trash": "ゴミ箱に移動しました",
"multiselect_grid_edit_date_time_err_read_only": "読み取り専用の項目の日付を変更できません",
"multiselect_grid_edit_gps_err_read_only": "読み取り専用の項目の位置情報を変更できません",
"mute_memories": "メモリーのミュート",
"my_albums": "私のアルバム",
"name": "名前",
"name_or_nickname": "名前またはニックネーム",
"networking_settings": "ネットワーク",
"networking_subtitle": "サーバーエンドポイントに関する設定",
"never": "行わない",
"new_album": "新たなアルバム",
"new_api_key": "新しいAPI キー",
@@ -915,6 +1244,7 @@
"no_albums_yet": "まだアルバムがないようです。",
"no_archived_assets_message": "写真や動画をアーカイブして、写真一覧から非表示にします",
"no_assets_message": "クリックして最初の写真をアップロード",
"no_assets_to_show": "表示する項目がありません",
"no_duplicates_found": "重複は見つかりませんでした。",
"no_exif_info_available": "exif情報が利用できません",
"no_explore_results_message": "コレクションを探索するにはさらに写真をアップロードしてください。",
@@ -926,9 +1256,13 @@
"no_results_description": "同義語やより一般的なキーワードを試してください",
"no_shared_albums_message": "アルバムを作成して写真や動画を共有しましょう",
"not_in_any_album": "どのアルバムにも入っていない",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "注意: 以前にアップロードしたアセットにストレージラベルを適用するには以下を実行してください",
"note_unlimited_quota": "注: 容量を無制限にするには0を入力してください",
"notes": "注意",
"notification_permission_dialog_content": "通知を許可するには設定を開いてオンにしてください",
"notification_permission_list_tile_content": "通知の許可 をオンにしてください",
"notification_permission_list_tile_enable_button": "通知をオンにする",
"notification_permission_list_tile_title": "通知の許可",
"notification_toggle_setting_description": "メール通知を有効化",
"notifications": "通知",
"notifications_setting_description": "通知を管理します",
@@ -939,6 +1273,7 @@
"offline_paths_description": "これらの結果は、外部ライブラリの一部ではないファイルを手動で削除したことが原因である可能性があります。",
"ok": "了解",
"oldest_first": "古い順",
"on_this_device": "デバイス上の項目",
"onboarding": "はじめに",
"onboarding_privacy_description": "次の(任意の)機能は外部サービスに依存し、いつでも管理者用設定で無効にできます。",
"onboarding_theme_description": "インスタンスのカラーテーマを選択してください。これは後から設定で変更できます。",
@@ -962,6 +1297,14 @@
"partner_can_access": "{partner} がアクセスできます",
"partner_can_access_assets": "アーカイブ済みのものと削除済みのものを除いた全ての写真と動画",
"partner_can_access_location": "写真が撮影された場所",
"partner_list_user_photos": "{user}さんの写真",
"partner_list_view_all": "すべて見る",
"partner_page_empty_message": "まだどのパートナーとも写真を共有してません",
"partner_page_no_more_users": "追加できるユーザーがもういません",
"partner_page_partner_add_failed": "パートナーの追加に失敗",
"partner_page_select_partner": "パートナーを選択",
"partner_page_shared_to_title": "次のユーザーと共有します: ",
"partner_page_stop_sharing_content": "{}は写真へアクセスできなくなります",
"partner_sharing": "パートナとの共有",
"partners": "パートナー",
"password": "パスワード",
@@ -990,6 +1333,14 @@
"permanently_delete_assets_prompt": "本当に{count, plural, one {このアセット} other {これらの<b>#</b>個のアセット}}を完全に削除しますか? これにより {count, plural, one {このアセット} other {これらのアセット}}はアルバムからも削除されます。",
"permanently_deleted_asset": "アセットを完全に削除しました",
"permanently_deleted_assets_count": "{count, plural, one {#個} other {#個}}のアセットを完全に削除しました",
"permission_onboarding_back": "戻る",
"permission_onboarding_continue_anyway": "無視して続行",
"permission_onboarding_get_started": "はじめる",
"permission_onboarding_go_to_settings": "システム設定",
"permission_onboarding_permission_denied": "写真へのアクセスが許可されていません。このアプリを使うには設定から写真と動画へのアクセスを許可してください",
"permission_onboarding_permission_granted": "写真へのアクセスが許可されました",
"permission_onboarding_permission_limited": "写真へのアクセスが制限されています。Immichが写真のバックアップと管理を行うには、システム設定から写真と動画のアクセス権限を変更してください。",
"permission_onboarding_request": "Immichは写真へのアクセス許可が必要です",
"person": "人物",
"person_birthdate": "{date}生まれ",
"person_hidden": "{name}{hidden, select, true { (非表示)} other {}}",
@@ -1007,6 +1358,8 @@
"play_motion_photo": "モーションビデオを再生",
"play_or_pause_video": "動画を再生または一時停止",
"port": "ポートレート",
"preferences_settings_subtitle": "アプリに関する設定",
"preferences_settings_title": "設定",
"preset": "プリセット",
"preview": "プレビュー",
"previous": "前",
@@ -1014,6 +1367,13 @@
"previous_or_next_photo": "前または次の写真",
"primary": "最優先",
"privacy": "プライバシー",
"profile_drawer_app_logs": "ログ",
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
"profile_drawer_client_out_of_date_minor": "アプリが更新されてません。最新のバージョンに更新してください",
"profile_drawer_client_server_up_to_date": "すべて最新版です",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "サーバーが更新されてません。最新のバージョンに更新してください",
"profile_drawer_server_out_of_date_minor": "サーバーが更新されてません。最新のバージョンに更新してください",
"profile_image_of_user": "{user} のプロフィール画像",
"profile_picture_set": "プロフィール画像が設定されました。",
"public_album": "公開アルバム",
@@ -1063,6 +1423,8 @@
"recent": "最近",
"recent-albums": "最近のアルバム",
"recent_searches": "最近の検索",
"recently_added": "最近追加された項目",
"recently_added_page_title": "最近",
"refresh": "更新",
"refresh_encoded_videos": "エンコードされた動画を更新",
"refresh_faces": "顔認識を更新",
@@ -1119,10 +1481,12 @@
"role_editor": "編集者",
"role_viewer": "閲覧者",
"save": "保存",
"save_to_gallery": "ギャラリーに保存",
"saved_api_key": "APIキーを保存しました",
"saved_profile": "プロフィールを保存しました",
"saved_settings": "設定を保存しました",
"say_something": "何か書き込みましょう",
"scaffold_body_error_occurred": "エラーが発生しました",
"scan_all_libraries": "全てのライブラリをスキャン",
"scan_library": "スキャン",
"scan_settings": "スキャン設定",
@@ -1138,16 +1502,45 @@
"search_camera_model": "カメラのモデルを検索…",
"search_city": "市町村を検索…",
"search_country": "国を検索…",
"search_filter_apply": "フィルターを適用する",
"search_filter_camera_title": "カメラの種類を選択",
"search_filter_date": "撮影日",
"search_filter_date_interval": "{start}から{end}まで",
"search_filter_date_title": "撮影期間を選択",
"search_filter_display_option_not_in_album": "アルバムにありません",
"search_filter_display_options": "表示オプション",
"search_filter_filename": "Search by file name",
"search_filter_location": "場所",
"search_filter_location_title": "場所を選択",
"search_filter_media_type": "メディアの種類",
"search_filter_media_type_title": "メディアの種類を選択",
"search_filter_people_title": "人物を選択",
"search_for": "検索",
"search_for_existing_person": "既存の人物を検索",
"search_no_more_result": "No more results",
"search_no_people": "人物がいません",
"search_no_people_named": "「{name}」という名前の人物がいません",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "検索オプション",
"search_page_categories": "カテゴリ",
"search_page_motion_photos": "モーションフォト",
"search_page_no_objects": "被写体に関するデータがなし",
"search_page_no_places": "場所に関するデータなし",
"search_page_screenshots": "スクリーンショット",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "自撮り",
"search_page_things": "被写体",
"search_page_view_all_button": "すべて表示",
"search_page_your_activity": "アクティビティ",
"search_page_your_map": "あなたのマップ",
"search_people": "人物を検索",
"search_places": "場所を検索",
"search_rating": "レートで検索...",
"search_result_page_new_search_hint": "検索",
"search_settings": "検索設定",
"search_state": "都道府県を検索…",
"search_suggestion_list_smart_search_hint_1": "スマート検索はデフォルトでオンになっています。メタデータで検索を行う場合:",
"search_suggestion_list_smart_search_hint_2": "m:単語",
"search_tags": "タグを検索...",
"search_timezone": "タイムゾーンを検索…",
"search_type": "検索タイプ",
@@ -1168,10 +1561,14 @@
"select_new_face": "新しい顔を選択",
"select_photos": "写真を選択",
"select_trash_all": "全て削除",
"select_user_for_sharing_page_err_album": "アルバム作成に失敗",
"selected": "選択済み",
"selected_count": "{count, plural, other {#個選択済み}}",
"send_message": "メッセージを送信",
"send_welcome_email": "ウェルカムメールを送信",
"server_endpoint": "サーバーエンドポイント",
"server_info_box_app_version": "アプリのバージョン",
"server_info_box_server_url": " サーバーのURL",
"server_offline": "サーバーがオフラインです",
"server_online": "サーバーがオンラインです",
"server_stats": "サーバー統計",
@@ -1183,22 +1580,91 @@
"set_date_of_birth": "生年月日を設定",
"set_profile_picture": "プロフィール画像を設定",
"set_slideshow_to_fullscreen": "スライドショーをフルスクリーンにする",
"setting_image_viewer_help": "写真をタップするとサムネイル・中画質・オリジナルの順に読み込みます",
"setting_image_viewer_original_subtitle": "オリジナルの画像を表示したいときにオンにしてください。(最大画質で表示されるので、データと端末のストレージの消費量が増えます)",
"setting_image_viewer_original_title": "オリジナルを読み込む",
"setting_image_viewer_preview_subtitle": "中画質の写真をロードしたいときにオンにしてください。このステップをスキップして直接最大画質の写真を表示したい場合はオフにしてください。(ロード中はサムネイルが代わりに表示されます)",
"setting_image_viewer_preview_title": "プレビューを読み込む",
"setting_image_viewer_title": "画像",
"setting_languages_apply": "適用する",
"setting_languages_subtitle": "アプリの言語を変更する",
"setting_languages_title": "言語",
"setting_notifications_notify_failures_grace_period": "バックアップ失敗の通知: {}",
"setting_notifications_notify_hours": "{}時間後",
"setting_notifications_notify_immediately": "すぐに行う",
"setting_notifications_notify_minutes": "{}分後",
"setting_notifications_notify_never": "行わない",
"setting_notifications_notify_seconds": "{}秒後",
"setting_notifications_single_progress_subtitle": "アップロード中の写真の詳細",
"setting_notifications_single_progress_title": "バックアップの詳細な進行状況を表示",
"setting_notifications_subtitle": "通知設定を変更する",
"setting_notifications_total_progress_subtitle": "アップロードの進行状況 (完了済み/全体枚数)",
"setting_notifications_total_progress_title": "全体のバックアップの進行状況を表示",
"setting_video_viewer_looping_title": "ループ中",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "設定",
"settings_require_restart": "Immichを再起動して設定を適用してください",
"settings_saved": "設定が保存されました",
"share": "共有",
"share_add_photos": "写真を追加",
"share_assets_selected": "{}選択されました",
"share_dialog_preparing": "準備中",
"shared": "共有済み",
"shared_album_activities_input_disable": "コメントはオフになってます",
"shared_album_activity_remove_content": "このアクティビティを削除しますか",
"shared_album_activity_remove_title": "アクティビティを削除します",
"shared_album_section_people_action_error": "退出に失敗",
"shared_album_section_people_action_leave": "ユーザーをアルバムから退出",
"shared_album_section_people_action_remove_user": "ユーザーをアルバムから退出",
"shared_album_section_people_title": "人物",
"shared_by": "により共有",
"shared_by_user": "{user} により共有",
"shared_by_you": "あなたにより共有",
"shared_from_partner": "{partner} による写真",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "共有リンク",
"shared_link_clipboard_copied_massage": "クリップボードにコピーしました",
"shared_link_clipboard_text": "リンク: {}\nパスワード: {}",
"shared_link_create_error": "共有用のリンク作成時にエラーが発生しました",
"shared_link_edit_description_hint": "概要を追加",
"shared_link_edit_expire_after_option_day": "1日",
"shared_link_edit_expire_after_option_days": "{}日",
"shared_link_edit_expire_after_option_hour": "1時間",
"shared_link_edit_expire_after_option_hours": "{}時間",
"shared_link_edit_expire_after_option_minute": "1分",
"shared_link_edit_expire_after_option_minutes": "{}分",
"shared_link_edit_expire_after_option_months": "{}ヶ月",
"shared_link_edit_expire_after_option_year": "{}年",
"shared_link_edit_password_hint": "共有パスワードを入力する",
"shared_link_edit_submit_button": "リンクをアップデートする",
"shared_link_error_server_url_fetch": "サーバーのURLを取得できません",
"shared_link_expires_day": "{}日で切れます",
"shared_link_expires_days": "{}日で切れます",
"shared_link_expires_hour": "{}時間で切れます",
"shared_link_expires_hours": "{}時間で切れます",
"shared_link_expires_minute": "{}分で切れます",
"shared_link_expires_minutes": "{}分で切れます",
"shared_link_expires_never": "有効期限はありません",
"shared_link_expires_second": "{}秒で切れます",
"shared_link_expires_seconds": "{}秒で切れます",
"shared_link_individual_shared": "個人共有",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "共有済みのリンクを管理",
"shared_link_options": "共有リンクのオプション",
"shared_links": "共有リンク",
"shared_links_description": "写真や動画をリンクで共有",
"shared_photos_and_videos_count": "{assetCount, plural, other {#個の共有された写真と動画}}",
"shared_with_me": "自分と共有中",
"shared_with_partner": "{partner} と共有しました",
"sharing": "共有",
"sharing_enter_password": "このページを閲覧するにはパスワードを入力してください。",
"sharing_page_album": "共有アルバム",
"sharing_page_description": "共有アルバムを作成して同じネットワークにいる人たちに写真を共有",
"sharing_page_empty_list": "共有アルバムなし",
"sharing_sidebar_description": "共有へのリンクをサイドバーに表示",
"sharing_silver_appbar_create_shared_album": "共有アルバムを作成",
"sharing_silver_appbar_share_partner": "パートナーと共有",
"shift_to_permanent_delete": "⇧を押してアセットを完全に削除",
"show_album_options": "アルバム設定を表示",
"show_albums": "アルバムを表示",
@@ -1265,6 +1731,9 @@
"support_third_party_description": "Immichのインストールはサードパーティーによってパッケージ化されています。遭遇した問題はそのパッケージに起因している可能性があるので以下のリンクを使って最初にそのパッケージに問題を提起してください。",
"swap_merge_direction": "統合する方向を入れ替え",
"sync": "同期",
"sync_albums": "アルバムを同期",
"sync_albums_manual_subtitle": "アップロード済みの全ての写真や動画を選択されたバックアップアルバムに同期する",
"sync_upload_album_setting_subtitle": "サーバー上のアルバムの内容を端末上のアルバムと同期します (サーバーにアルバムが無い場合自動で作成されます。また、アップロードされていない写真や動画は同期されません)",
"tag": "タグ付けする",
"tag_assets": "アセットにタグ付けする",
"tag_created": "タグ: {tag} を作成しました",
@@ -1278,6 +1747,19 @@
"theme": "テーマ",
"theme_selection": "テーマ選択",
"theme_selection_description": "ブラウザのシステム設定に基づいてテーマを明色または暗色に自動的に設定します",
"theme_setting_asset_list_storage_indicator_title": "ストレージに関する情報を表示",
"theme_setting_asset_list_tiles_per_row_title": "一列ごとの表示枚数: {}",
"theme_setting_colorful_interface_subtitle": "アクセントカラーを背景にも使用する",
"theme_setting_colorful_interface_title": "カラフルなUI",
"theme_setting_image_viewer_quality_subtitle": "画像ビューの画質の設定",
"theme_setting_image_viewer_quality_title": "画像ビュー",
"theme_setting_primary_color_subtitle": "アクセント用の色を選択",
"theme_setting_primary_color_title": "アクセントカラー",
"theme_setting_system_primary_color_title": "端末で設定されている色を使う",
"theme_setting_system_theme_switch": "自動 (デバイスの設定を反映)",
"theme_setting_theme_subtitle": "テーマ設定",
"theme_setting_three_stage_loading_subtitle": "三段階読み込みを有効にすると、パフォーマンスが改善する可能性がありますが、ネットワーク負荷が著しく増加します。",
"theme_setting_three_stage_loading_title": "三段階読み込みをオンにする",
"they_will_be_merged_together": "これらは一緒に統合されます",
"third_party_resources": "サードパーティーリソース",
"time_based_memories": "時間によるメモリー",
@@ -1297,7 +1779,15 @@
"trash_all": "全て削除",
"trash_count": "{count, number}枚ゴミ箱へ移動",
"trash_delete_asset": "アセットをゴミ箱へ移動/削除",
"trash_emptied": "ゴミ箱を空にしました",
"trash_no_results_message": "ゴミ箱に移動した写真や動画がここに表示されます。",
"trash_page_delete_all": "すべて削除",
"trash_page_empty_trash_dialog_content": "ゴミ箱を空にしますか?選択された項目は完全に削除されます。この操作は取り消せません。",
"trash_page_info": "ゴミ箱に移動したアイテムは{}日後に削除されます",
"trash_page_no_assets": "ゴミ箱は空です",
"trash_page_restore_all": "すべて復元",
"trash_page_select_assets_btn": "項目を選択",
"trash_page_title": "削除({})",
"trashed_items_will_be_permanently_deleted_after": "ゴミ箱に入れられたアイテムは{days, plural, one {#日} other {#日}}後に完全に削除されます。",
"type": "タイプ",
"unarchive": "アーカイブを解除",
@@ -1326,6 +1816,8 @@
"updated_password": "パスワードを更新しました",
"upload": "アップロード",
"upload_concurrency": "アップロードの同時実行数",
"upload_dialog_info": "選択した項目のバックアップをしますか?",
"upload_dialog_title": "アップロード",
"upload_errors": "アップロードは{count, plural, one {#個} other {#個}}のエラーで完了しました、新しくアップロードされたアセットを見るにはページを更新してください。",
"upload_progress": "残り {remaining, number} - {processed, number}/{total, number} 処理済み",
"upload_skipped_duplicates": "{count, plural, one {#個} other {#個}}の重複アセットをスキップしました",
@@ -1333,8 +1825,11 @@
"upload_status_errors": "エラー",
"upload_status_uploaded": "アップロード済",
"upload_success": "アップロード成功、新しくアップロードされたアセットを見るにはページを更新してください。",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "使用容量",
"use_current_connection": "現在の接続情報を使用",
"use_custom_date_range": "代わりにカスタム日付範囲を使用",
"user": "ユーザー",
"user_id": "ユーザーID",
@@ -1349,10 +1844,16 @@
"users": "ユーザー",
"utilities": "ユーティリティ",
"validate": "認証",
"validate_endpoint_error": "有効なURLを入力してください",
"variables": "変数",
"version": "バージョン",
"version_announcement_closing": "あなたの友人、Alex",
"version_announcement_message": "こんにちは! 新しいバージョンのImmichがリリースされました。特にWatchTowerやImmichインスタンスを自動的に更新する仕組みを設けている場合は<link>リリースノート</link>をよく読んで設定が最新のものになっているか確認してください。",
"version_announcement_overlay_release_notes": "更新情報",
"version_announcement_overlay_text_1": "新しい",
"version_announcement_overlay_text_2": "のバージョンが公開中です。",
"version_announcement_overlay_text_3": "を確認してください。docker-composeや.envファイルが最新の状態に更新済みか、特にWatchTowerなどのツールを使ってDockerイメージを自動アップデートされてる方は確認してください。",
"version_announcement_overlay_title": "サーバーの最新版が公開中🎉",
"version_history": "バージョン履歴",
"version_history_item": "{date}に{version}をインストール",
"video": "動画",
@@ -1370,16 +1871,22 @@
"view_name": "分類",
"view_next_asset": "次のアセットを見る",
"view_previous_asset": "前のアセットを見る",
"view_qr_code": "QRコードを見る",
"view_stack": "ビュースタック",
"viewer_remove_from_stack": "スタックから外す",
"viewer_stack_use_as_main_asset": "メインの画像として使用する",
"viewer_unstack": "スタックを解除",
"visibility_changed": "{count, plural, one {#人} other {#人}}の人物の非表示設定が変更されました",
"waiting": "待機中",
"warning": "警告",
"week": "週",
"welcome": "ようこそ",
"welcome_to_immich": "Immichにようこそ",
"wifi_name": "Wi-Fiの名前(SSID)",
"year": "年",
"years_ago": "{years, plural, one {#年} other {#年}}前",
"yes": "はい",
"you_dont_have_any_shared_links": "共有リンクはありません",
"your_wifi_name": "Wi-Fiの名前(SSID)",
"zoom_image": "画像を拡大"
}

View File

@@ -30,11 +30,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": "მონაცემთა ბაზის არეზერვო ასლების პარამეტრების მართვა",
"backup_database": "ბაზის დამპის შექმნა",
"backup_database_enable_description": "ბაზის დამპების ჩართვა",
"backup_keep_last_amount": "წინა დამპების შესანარჩუნებელი რაოდენობა",
"backup_settings": "მონაცემთა ბაზის დამპის მორგებ",
"backup_settings_description": "მონაცემთა ბაზის არამეტრების ამრთვა. შენიშვნა: ამ დავალებების მონიტორინგი არ ხდება და თქვენ არ მოგივათ შეტყობინება, თუ ის ჩავარდება.",
"check_all": "შეამოწმე ყველა",
"cleanup": "გასუფთავება",
"confirm_delete_library": "ნამდვილად გინდა {library} ბიბლიოთეკის წაშლა?",

View File

@@ -1 +1,16 @@
{}
{
"add_photos": "суреттерді қосу",
"add_to": "қосу…",
"add_to_album": "альбомға қосу",
"add_to_album_bottom_sheet_added": "{album}'ға қосылған",
"add_to_album_bottom_sheet_already_exists": "Онсыз да {album} болған",
"add_to_shared_album": "бөліскен альбомға қосу",
"add_url": "URL таңдау",
"added_to_archive": "Архивке жіберілген",
"added_to_favorites": "таңдаулыларға қосылған",
"admin": {
"check_all": "Бәрін тексеріп алу",
"create_job": "Жұмысты бастау"
},
"zoom_image": "суретті үлкейту"
}

View File

@@ -121,7 +121,6 @@
"no_pattern_added": "",
"note_apply_storage_label_previous_assets": "",
"note_cannot_be_changed_later": "",
"note_unlimited_quota": "",
"notification_email_from_address": "",
"notification_email_from_address_description": "",
"notification_email_host_description": "",
@@ -621,7 +620,6 @@
"no_shared_albums_message": "",
"not_in_any_album": "",
"note_apply_storage_label_to_previously_uploaded assets": "",
"note_unlimited_quota": "",
"notes": "",
"notification_toggle_setting_description": "",
"notifications": "",

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Paskyros nustatymai",
"acknowledge": "Patvirtinti",
"action": "Veiksmas",
"action_common_update": "Update",
"actions": "Veiksmai",
"active": "Vykdoma",
"activity": "Veikla",
@@ -13,6 +14,7 @@
"add_a_location": "Pridėti vietovę",
"add_a_name": "Pridėti vardą",
"add_a_title": "Pridėti pavadinimą",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Pridėti išimčių šabloną",
"add_import_path": "Pridėti importavimo kelią",
"add_location": "Pridėti vietovę",
@@ -22,6 +24,8 @@
"add_photos": "Pridėti nuotraukų",
"add_to": "Pridėti į…",
"add_to_album": "Pridėti į albumą",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"add_to_shared_album": "Pridėti į bendrinamą albumą",
"add_url": "Pridėti URL",
"added_to_archive": "Pridėta į archyvą",
@@ -157,7 +161,6 @@
"no_pattern_added": "Šablonas nepridėtas",
"note_apply_storage_label_previous_assets": "Pastaba: norėdami pritaikyti saugyklos etiketę seniau įkeltiems ištekliams, paleiskite",
"note_cannot_be_changed_later": "PASTABA: Vėliau to pakeisti negalima!",
"note_unlimited_quota": "Pastaba: įveskite 0 norint neribotos kvotos",
"notification_email_from_address": "Iš adreso",
"notification_email_from_address_description": "Siuntėjo elektroninis adresas, pavyzdžiui: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Elektroninio pašto serverio savininkas (pvz. smtp.immich.app)",
@@ -315,10 +318,22 @@
"admin_password": "Administratoriaus slaptažodis",
"administration": "Administravimas",
"advanced": "",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
"advanced_settings_prefer_remote_title": "Prefer remote images",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
"advanced_settings_tile_subtitle": "Advanced user's settings",
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
"advanced_settings_troubleshooting_title": "Troubleshooting",
"album_added": "Albumas pridėtas",
"album_added_notification_setting_description": "Gauti el. pašto pranešimą, kai būsite pridėtas prie bendrinamo albumo",
"album_cover_updated": "Albumo viršelis atnaujintas",
"album_delete_confirmation": "Ar tikrai norite ištrinti albumą {album}?",
"album_info_card_backup_album_excluded": "EXCLUDED",
"album_info_card_backup_album_included": "INCLUDED",
"album_info_updated": "Albumo informacija atnaujinta",
"album_leave": "Palikti albumą?",
"album_leave_confirmation": "Ar tikrai norite palikti albumą {album}?",
@@ -327,9 +342,21 @@
"album_remove_user": "Pašalinti naudotoją?",
"album_remove_user_confirmation": "Ar tikrai norite pašalinti naudotoją {user}?",
"album_share_no_users": "Atrodo, kad bendrinate šį albumą su visais naudotojais, arba neturite naudotojų, su kuriais galėtumėte bendrinti.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Shared",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "Albumas atnaujintas",
"album_updated_setting_description": "Gauti pranešimą el. paštu, kai bendrinamas albumas turi naujų elementų",
"album_user_removed": "Pašalintas {user}",
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
"album_viewer_appbar_share_err_delete": "Failed to delete album",
"album_viewer_appbar_share_err_leave": "Failed to leave album",
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
"album_viewer_appbar_share_err_title": "Failed to change album title",
"album_viewer_appbar_share_leave": "Leave album",
"album_viewer_appbar_share_to": "Share To",
"album_viewer_page_share_add_users": "Add users",
"album_with_link_access": "Tegul visi, turintys nuorodą, mato šio albumo nuotraukas ir žmones.",
"albums": "Albumai",
"albums_count": "{count, plural, one {# albumas} few {# albumai} other {# albumų}}",
@@ -344,37 +371,128 @@
"api_key": "API raktas",
"api_key_empty": "Jūsų API rakto pavadinimas netūrėtų būti tuščias",
"api_keys": "API raktai",
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
"app_bar_signout_dialog_ok": "Yes",
"app_bar_signout_dialog_title": "Sign out",
"app_settings": "Programos nustatymai",
"appears_in": "",
"archive": "Archyvas",
"archive_or_unarchive_photo": "Archyvuoti arba išarchyvuoti nuotrauką",
"archive_page_no_archived_assets": "No archived assets found",
"archive_page_title": "Archive ({})",
"archive_size": "Archyvo dydis",
"archive_size_description": "Konfigūruoti archyvo dydį atsisiuntimams (GiB)",
"archived": "Archived",
"archived_count": "{count, plural, other {# suarchyvuota}}",
"are_these_the_same_person": "Ar tai tas pats asmuo?",
"are_you_sure_to_do_this": "Ar tikrai norite tai daryti?",
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
"asset_added_to_album": "Pridėta į albumą",
"asset_adding_to_album": "Pridedama į albumą...",
"asset_description_updated": "Elemento aprašymas buvo atnaujintas",
"asset_filename_is_offline": "Elementas {filename} nepasiekiamas",
"asset_list_group_by_sub_title": "Group by",
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
"asset_list_layout_settings_group_automatically": "Automatic",
"asset_list_layout_settings_group_by": "Group assets by",
"asset_list_layout_settings_group_by_month_day": "Month + day",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Photo grid layout settings",
"asset_list_settings_title": "Photo Grid",
"asset_offline": "Elementas nepasiekiamas",
"asset_offline_description": "Šis išorinis elementas neberandamas diske. Dėl pagalbos susisiekite su savo Immich administratoriumi.",
"asset_restored_successfully": "Asset restored successfully",
"asset_uploaded": "Įkelta",
"asset_uploading": "Įkeliama...",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"assets": "Elementai",
"assets_added_count": "{count, plural, one {Pridėtas # elementas} few {Pridėti # elementai} other {Pridėta # elementų}}",
"assets_added_to_album_count": "Į albumą {count, plural, one {įtrauktas # elementas} few {įtraukti # elementai} other {įtraukta # elementų}}",
"assets_added_to_name_count": "Į {hasName, select, true {<b>{name}</b>} other {naują}} albumą {count, plural, one {įtrauktas # elementas} few {įtraukti # elementai} other {įtraukta # elementų}}",
"assets_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "{count, plural, one {# elementas perkeltas} few {# elementai perkelti} other {# elementų perkelta}} į šiukšliadėžę",
"assets_permanently_deleted_count": "{count, plural, one {# elementas ištrintas} few {# elementai ištrinti} other {# elementų ištrinta}} visam laikui",
"assets_removed_count": "{count, plural, one {Pašalintas # elementas} few {Pašalinti # elementai} other {Pašalinta # elementų}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "Ar tikrai norite atkurti visus šiukšliadėžėje esančius perkeltus elementus? Šio veiksmo atšaukti negalėsite! Pastaba: nepasiekiami elementai tokiu būdu atkurti nebus.",
"assets_restored_count": "{count, plural, one {Atkurtas # elementas} few {Atkurti # elementai} other {Atkurta # elementų}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}} jau prieš tai buvo albume",
"authorized_devices": "Autorizuoti įrenginiai",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Atgal",
"back_close_deselect": "Atgal, uždaryti arba atžymėti",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
"backup_album_selection_page_select_albums": "Select albums",
"backup_album_selection_page_selection_info": "Selection Info",
"backup_album_selection_page_total_assets": "Total unique assets",
"backup_all": "All",
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "Checking for new assets…",
"backup_background_service_error_title": "Backup error",
"backup_background_service_in_progress_notification": "Backing up your assets…",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "Backup Albums",
"backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.",
"backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled",
"backup_controller_page_background_app_refresh_enable_button_text": "Go to settings",
"backup_controller_page_background_battery_info_link": "Show me how",
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Battery optimizations",
"backup_controller_page_background_charging": "Only while charging",
"backup_controller_page_background_configure_error": "Failed to configure the background service",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
"backup_controller_page_background_is_off": "Automatic background backup is off",
"backup_controller_page_background_is_on": "Automatic background backup is on",
"backup_controller_page_background_turn_off": "Turn off background service",
"backup_controller_page_background_turn_on": "Turn on background service",
"backup_controller_page_background_wifi": "Only on WiFi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selected: ",
"backup_controller_page_backup_sub": "Backed up photos and videos",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
"backup_controller_page_excluded": "Excluded: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Backup Information",
"backup_controller_page_none_selected": "None selected",
"backup_controller_page_remainder": "Remainder",
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
"backup_controller_page_server_storage": "Server Storage",
"backup_controller_page_start_backup": "Start Backup",
"backup_controller_page_status_off": "Automatic foreground backup is off",
"backup_controller_page_status_on": "Automatic foreground backup is on",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "Albums to be backed up",
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
"backup_controller_page_turn_off": "Turn off foreground backup",
"backup_controller_page_turn_on": "Turn on foreground backup",
"backup_controller_page_uploading_file_info": "Uploading file info",
"backup_err_only_album": "Cannot remove the only album",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Cancelled",
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "",
"birthdate_saved": "Sėkmingai išsaugota gimimo data",
"blurred_background": "Neryškus fonas",
@@ -383,29 +501,65 @@
"bulk_keep_duplicates_confirmation": "Ar tikrai norite palikti visus {count, plural, one {# besidubliuojantį elementą} few {# besidubliuojančius elementus} other {# besidubliuojančių elementų}}? Tokiu būdu nieko netrinant bus sutvarkytos visos dublikatų grupės.",
"bulk_trash_duplicates_confirmation": "Ar tikrai norite perkelti į šiukšliadėžę visus {count, plural, one {# besidubliuojantį elementą} few {# besidubliuojančius elementus} other {# besidubliuojančių elementų}}? Bus paliktas didžiausias kiekvienos grupės elementas ir į šiukšliadėžę perkelti kiti besidubliuojantys elementai.",
"buy": "Įsigyti Immich",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "Library thumbnails",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "Full images",
"cache_settings_statistics_shared": "Shared album thumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cache usage",
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"camera": "Fotoaparatas",
"camera_brand": "Fotoaparato prekės ženklas",
"camera_model": "Fotoaparato modelis",
"cancel": "Atšaukti",
"cancel_search": "Atšaukti paiešką",
"canceled": "Canceled",
"cannot_merge_people": "Negalima sujungti asmenų",
"cannot_update_the_description": "Negalima atnaujinti aprašymo",
"change_date": "Pakeisti datą",
"change_display_order": "Change display order",
"change_expiration_time": "Pakeisti galiojimo trukmę",
"change_location": "Pakeisti vietovę",
"change_name": "Pakeisti vardą",
"change_name_successfully": "",
"change_password": "Pakeisti slaptažodį",
"change_password_description": "Tai arba pirmas kartas, kai jungiatės prie sistemos, arba buvo pateikta užklausa pakeisti jūsų slaptažodį. Prašome įvesti naują slaptažodį žemiau.",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"change_your_password": "Pakeisti slaptažodį",
"changed_visibility_successfully": "Matomumas pakeistas sėkmingai",
"check_all": "Žymėti viską",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "Tikrinti žurnalus",
"city": "Miestas",
"clear": "Išvalyti",
"clear_all": "Išvalyti viską",
"clear_message": "Išvalyti pranešimą",
"clear_value": "Išvalyti reikšmę",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"close": "Uždaryti",
"collapse": "Suskleisti",
"collapse_all": "Suskleisti viską",
@@ -414,6 +568,9 @@
"comment_options": "Komentarų parinktys",
"comments_and_likes": "Komentarai ir patiktukai",
"comments_are_disabled": "Komentarai yra išjungti",
"common_create_new_album": "Create new album",
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
"completed": "Completed",
"confirm": "Patvirtinti",
"confirm_admin_password": "Patvirtinti administratoriaus slaptažodį",
"confirm_delete_shared_link": "Ar tikrai norite ištrinti šią bendrinimo nuorodą?",
@@ -421,6 +578,15 @@
"contain": "",
"context": "Kontekstas",
"continue": "Tęsti",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "Create new album",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
"control_bottom_app_bar_edit_location": "Edit Location",
"control_bottom_app_bar_edit_time": "Edit Date & Time",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
"copied_image_to_clipboard": "Nuotrauka nukopijuota į iškarpinę.",
"copied_to_clipboard": "Nukopijuota į iškapinę!",
"copy_error": "Kopijavimo klaida",
@@ -435,24 +601,34 @@
"covers": "",
"create": "Sukurti",
"create_album": "Sukurti albumą",
"create_album_page_untitled": "Untitled",
"create_library": "Sukurti biblioteką",
"create_link": "Sukurti nuorodą",
"create_link_to_share": "Sukurti bendrinimo nuorodą",
"create_link_to_share_description": "Leisti bet kam su nuoroda matyti pažymėtą(-as) nuotrauką(-as)",
"create_new": "CREATE NEW",
"create_new_person": "Sukurti naują žmogų",
"create_new_person_hint": "Priskirti pasirinktus elementus naujam žmogui",
"create_new_user": "Sukurti naują varotoją",
"create_shared_album_page_share_add_assets": "ADD ASSETS",
"create_shared_album_page_share_select_photos": "Select Photos",
"create_tag": "Sukurti žymą",
"create_tag_description": "Sukurti naują žymą. Įdėtinėms žymoms įveskite pilną kelią, įskaitant pasviruosius brūkšnius.",
"create_user": "Sukurti naudotoją",
"created": "Sukurta",
"crop": "Crop",
"curated_object_page_title": "Things",
"current_device": "Dabartinis įrenginys",
"current_server_address": "Current server address",
"custom_locale": "",
"custom_locale_description": "Formatuoti datas ir skaičius pagal kalbą ir regioną",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "",
"date_after": "Data po",
"date_and_time": "Data ir laikas",
"date_before": "Data prieš",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Gimimo data sėkmingai išsaugota",
"date_range": "",
"day": "Diena",
@@ -466,16 +642,27 @@
"delete": "Ištrinti",
"delete_album": "Ištrinti albumą",
"delete_api_key_prompt": "Ar tikrai norite ištrinti šį API raktą?",
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
"delete_dialog_ok_force": "Delete Anyway",
"delete_dialog_title": "Delete Permanently",
"delete_duplicates_confirmation": "Ar tikrai norite visam laikui ištrinti šiuos dublikatus?",
"delete_key": "Ištrinti raktą",
"delete_library": "Ištrinti biblioteką",
"delete_link": "Ištrinti nuorodą",
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
"delete_local_dialog_ok_force": "Delete Anyway",
"delete_shared_link": "Ištrinti bendrinimo nuorodą",
"delete_shared_link_dialog_title": "Delete Shared Link",
"delete_tag": "Ištrinti žymą",
"delete_tag_confirmation_prompt": "Ar tikrai norite ištrinti žymą {tagName}?",
"delete_user": "Ištrinti naudotoją",
"deleted_shared_link": "Bendrinimo nuoroda ištrinta",
"description": "Aprašymas",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Error updating description, check the log for more details",
"details": "Detalės",
"direction": "Kryptis",
"disabled": "Išjungta",
@@ -491,8 +678,22 @@
"documentation": "Dokumentacija",
"done": "",
"download": "Atsisiųsti",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Atsisiųsti",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "Siunčiama",
"downloading_media": "Downloading media",
"duplicates": "Dublikatai",
"duplicates_description": "Sutvarkykite kiekvieną elementų grupę nurodydami elementus, kurie yra dublikatai (jei tokių yra)",
"duration": "Trukmė",
@@ -508,6 +709,7 @@
"edit_key": "Redaguoti raktą",
"edit_link": "Redaguoti nuorodą",
"edit_location": "Redaguoti vietovę",
"edit_location_dialog_title": "Location",
"edit_name": "Redaguoti vardą",
"edit_people": "Redaguoti žmones",
"edit_tag": "Redaguoti žymą",
@@ -516,12 +718,17 @@
"edited": "Redaguota",
"editor": "",
"email": "El. paštas",
"empty_folder": "This folder is empty",
"empty_trash": "Ištuštinti šiukšliadėžę",
"enable": "Įgalinti",
"enabled": "Įgalintas",
"end_date": "Pabaigos data",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "Klaida",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "Klaida įkeliant vaizdą",
"error_saving_image": "Error: {}",
"error_title": "Klaida - Kažkas nutiko ne taip",
"errors": {
"cant_apply_changes": "Negalima taikyti pakeitimų",
@@ -614,8 +821,21 @@
"unable_to_upload_file": "Nepavyksta įkelti failo"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Išeiti iš skaidrių peržiūros",
"expand_all": "Išskleisti viską",
"experimental_settings_new_asset_list_subtitle": "Work in progress",
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"expire_after": "",
"expired": "Nebegalioja",
"expires_date": "Nebegalios už {date}",
@@ -625,10 +845,16 @@
"extension": "Plėtinys",
"external": "Išorinis",
"external_libraries": "Išorinės bibliotekos",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Nepriskirta",
"failed": "Failed",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Mėgstamiausias",
"favorite_or_unfavorite_photo": "Įtraukti prie arba pašalinti iš mėgstamiausių",
"favorites": "Mėgstamiausi",
"favorites_page_no_favorites": "No favorite assets found",
"feature_photo_updated": "",
"features": "Funkcijos",
"features_setting_description": "Valdyti aplikacijos funkcijas",
@@ -636,21 +862,34 @@
"file_name_or_extension": "Failo pavadinimas arba plėtinys",
"filename": "",
"filetype": "Failo tipas",
"filter": "Filter",
"filter_people": "Filtruoti žmones",
"fix_incorrect_match": "",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Aplankai",
"folders_feature_description": "Peržiūrėkite failų sistemoje esančias nuotraukas ir vaizdo įrašus aplankų rodinyje",
"forward": "",
"general": "",
"get_help": "Gauti pagalbos",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"grant_permission": "Grant permission",
"group_albums_by": "Grupuoti albumus pagal...",
"group_no": "Negrupuoti",
"group_owner": "Grupuoti pagal savininką",
"group_year": "Grupuoti pagal metus",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"has_quota": "Turi kvotą",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Labas {name} ({email})",
"hide_all_people": "Slėpti visus asmenis",
"hide_gallery": "Slėpti galeriją",
@@ -658,9 +897,29 @@
"hide_password": "Slėpti slaptažodį",
"hide_person": "Slėpti asmenį",
"hide_unnamed_people": "Slėpti neįvardintus asmenis",
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
"home_page_building_timeline": "Building the timeline",
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
"home_page_share_err_local": "Can not share local assets via link, skipping",
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
"host": "",
"hour": "Valanda",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Nuotrauka",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Download Success",
"image_viewer_page_state_provider_share_error": "Share Error",
"immich_logo": "Immich logotipas",
"import_from_json": "Importuoti iš JSON",
"import_path": "Importavimo kelias",
@@ -676,6 +935,8 @@
"night_at_midnight": "Kiekvieną vidurnaktį",
"night_at_twoam": "Kiekvieną naktį 02:00"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Kviesti žmones",
"invite_to_album": "Pakviesti į albumą",
"items_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
@@ -693,6 +954,12 @@
"level": "Lygis",
"library": "Biblioteka",
"library_options": "Bibliotekos pasirinktys",
"library_page_device_albums": "Albums on Device",
"library_page_new_album": "New album",
"library_page_sort_asset_count": "Number of assets",
"library_page_sort_created": "Created date",
"library_page_sort_last_modified": "Last modified",
"library_page_sort_title": "Album title",
"light": "",
"link_options": "Nuorodų parinktys",
"link_to_oauth": "Susieti su OAuth",
@@ -700,11 +967,41 @@
"list": "Sąrašas",
"loading": "Kraunama",
"loading_search_results_failed": "Nepavyko užkrauti paieškos rezultatų",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude_error": "Enter a valid latitude",
"location_picker_latitude_hint": "Enter your latitude here",
"location_picker_longitude_error": "Enter a valid longitude",
"location_picker_longitude_hint": "Enter your longitude here",
"log_out": "Atsijungti",
"log_out_all_devices": "Atsijungti iš visų įrenginių",
"logged_out_all_devices": "Atsijungta iš visų įrenginių",
"login": "Prisijungti",
"login_disabled": "Login has been disabled",
"login_form_api_exception": "API exception. Please check the server URL and try again.",
"login_form_back_button_text": "Back",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Please specify http:// or https://",
"login_form_err_invalid_email": "Invalid Email",
"login_form_err_invalid_url": "Invalid URL",
"login_form_err_leading_whitespace": "Leading whitespace",
"login_form_err_trailing_whitespace": "Trailing whitespace",
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
"login_form_failed_login": "Error logging you in, check server URL, email and password",
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
"login_form_password_hint": "password",
"login_form_save_login": "Stay logged in",
"login_form_server_empty": "Enter a server URL.",
"login_form_server_error": "Could not connect to server.",
"login_has_been_disabled": "Prisijungimas išjungtas.",
"login_password_changed_error": "There was an error updating your password",
"login_password_changed_success": "Password updated successfully",
"logout_all_device_confirmation": "Ar tikrai norite atsijungti iš visų įrenginių?",
"logout_this_device_confirmation": "Ar tikrai norite atsijungti iš šio prietaiso?",
"longitude": "Ilguma",
@@ -720,12 +1017,39 @@
"manage_your_devices": "Valdyti prijungtus įrenginius",
"manage_your_oauth_connection": "Tvarkyti OAuth prisijungimą",
"map": "Žemėlapis",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "Cannot get user's location",
"map_location_dialog_yes": "Yes",
"map_location_picker_page_use_location": "Use this location",
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
"map_location_service_disabled_title": "Location Service disabled",
"map_marker_with_image": "",
"map_no_assets_in_bounds": "No photos in this area",
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
"map_no_location_permission_title": "Location Permission denied",
"map_settings": "Žemėlapio nustatymai",
"map_settings_dark_mode": "Dark mode",
"map_settings_date_range_option_day": "Past 24 hours",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "Past year",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "Map Settings",
"map_settings_include_show_archived": "Include Archived",
"map_settings_include_show_partners": "Include Partners",
"map_settings_only_show_favorites": "Show Favorite Only",
"map_settings_theme_settings": "Map Theme",
"map_zoom_to_see_photos": "Zoom out to see photos",
"matches": "Atitikmenys",
"media_type": "Laikmenos tipas",
"memories": "Atsiminimai",
"memories_all_caught_up": "All caught up",
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
"memories_setting_description": "Valdyti tai, ką matote savo prisiminimuose",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Atmintis",
"menu": "Meniu",
"merge": "Sujungti",
@@ -739,11 +1063,16 @@
"missing": "Trūkstami",
"model": "Modelis",
"month": "Mėnesis",
"monthly_title_text_date_format": "MMMM y",
"more": "Daugiau",
"moved_to_trash": "Perkelta į šiukšliadėžę",
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "Mano albumai",
"name": "Vardas",
"name_or_nickname": "Vardas arba slapyvardis",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "Niekada",
"new_album": "Naujas albumas",
"new_api_key": "Naujas API raktas",
@@ -760,6 +1089,7 @@
"no_albums_yet": "Atrodo, kad dar neturite albumų.",
"no_archived_assets_message": "Suarchyvuokite nuotraukas ir vaizdo įrašus, kad jie nebūtų rodomi nuotraukų rodinyje",
"no_assets_message": "SPUSTELĖKITE NORĖDAMI ĮKELTI PIRMĄJĄ NUOTRAUKĄ",
"no_assets_to_show": "No assets to show",
"no_duplicates_found": "Dublikatų nerasta.",
"no_exif_info_available": "",
"no_explore_results_message": "Įkelkite daugiau nuotraukų ir tyrinėkite savo kolekciją.",
@@ -771,8 +1101,12 @@
"no_results_description": "Pabandykite sinonimą arba bendresnį raktažodį",
"no_shared_albums_message": "",
"not_in_any_album": "Nė viename albume",
"note_unlimited_quota": "Pastaba: Įveskite 0, jei norite neribotos kvotos",
"not_selected": "Not selected",
"notes": "Pastabos",
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
"notification_permission_list_tile_enable_button": "Enable Notifications",
"notification_permission_list_tile_title": "Notification Permission",
"notification_toggle_setting_description": "Įjungti el. pašto pranešimus",
"notifications": "Pranešimai",
"notifications_setting_description": "Tvarkyti pranešimus",
@@ -782,6 +1116,7 @@
"offline_paths": "Nepasiekiami adresai",
"ok": "Ok",
"oldest_first": "Seniausias pirmas",
"on_this_device": "On this device",
"onboarding_welcome_user": "Sveiki atvykę, {user}",
"online": "Prisijungęs",
"only_favorites": "Tik mėgstamiausi",
@@ -799,6 +1134,14 @@
"partner_can_access": "{partner} gali naudotis",
"partner_can_access_assets": "Visos jūsų nuotraukos ir vaizdo įrašai, išskyrus archyvuotus ir ištrintus",
"partner_can_access_location": "Vieta, kurioje darytos nuotraukos",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
"partner_page_no_more_users": "No more users to add",
"partner_page_partner_add_failed": "Failed to add partner",
"partner_page_select_partner": "Select partner",
"partner_page_shared_to_title": "Shared to",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
"partner_sharing": "",
"partners": "Partneriai",
"password": "Slaptažodis",
@@ -826,6 +1169,14 @@
"permanently_delete_assets_count": "Visam laikui ištrinti {count, plural, one {# elementą} few {# elementus} other {# elementų}}",
"permanently_deleted_asset": "",
"permanently_deleted_assets_count": "Visam laikui {count, plural, one {ištrintas # elementas} few {ištrinti # elementai} other {ištrinta # elementų}}",
"permission_onboarding_back": "Back",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
"permission_onboarding_go_to_settings": "Go to settings",
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"photos": "Nuotraukos",
"photos_and_videos": "Nuotraukos ir vaizdo įrašai",
"photos_count": "{count, plural, one {{count, number} nuotrauka} few {{count, number} nuotraukos} other {{count, number} nuotraukų}}",
@@ -838,12 +1189,21 @@
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
"profile_image_of_user": "{user} profilio nuotrauka",
"profile_picture_set": "Profilio nuotrauka nustatyta.",
"public_album": "Viešas albumas",
@@ -886,6 +1246,8 @@
"read_changelog": "",
"recent": "",
"recent_searches": "",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"refresh": "Atnaujinti",
"refresh_encoded_videos": "Perkrauti apdorotus vaizdo įrašus",
"refresh_faces": "Perkrauti veidus",
@@ -927,10 +1289,12 @@
"review_duplicates": "Peržiūrėti dublikatus",
"role": "",
"save": "Išsaugoti",
"save_to_gallery": "Save to gallery",
"saved_api_key": "Išsaugotas API raktas",
"saved_profile": "Išsaugotas profilis",
"saved_settings": "Išsaugoti nustatymai",
"say_something": "Ką nors pasakykite",
"scaffold_body_error_occurred": "Error occurred",
"scan_all_libraries": "Skenuoti visas bibliotekas",
"scan_library": "Skenuoti",
"scan_settings": "Skenavimo nustatymai",
@@ -944,12 +1308,41 @@
"search_camera_model": "",
"search_city": "",
"search_country": "Ieškoti šalies...",
"search_filter_apply": "Apply filter",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for_existing_person": "",
"search_no_more_result": "No more results",
"search_no_people_named": "Nėra žmonių vardu „{name}“",
"search_no_result": "No results found, try a different search term or combination",
"search_page_categories": "Categories",
"search_page_motion_photos": "Motion Photos",
"search_page_no_objects": "No Objects Info Available",
"search_page_no_places": "No Places Info Available",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Things",
"search_page_view_all_button": "View all",
"search_page_your_activity": "Your activity",
"search_page_your_map": "Your Map",
"search_people": "Ieškoti žmonių",
"search_places": "Ieškoti vietų",
"search_result_page_new_search_hint": "New Search",
"search_settings": "Ieškoti nustatymų",
"search_state": "",
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
"search_tags": "Ieškoti žymų...",
"search_timezone": "",
"search_type": "Paieškos tipas",
@@ -967,10 +1360,14 @@
"select_new_face": "",
"select_photos": "",
"select_trash_all": "Visus pažymėti \"Išmesti\"",
"select_user_for_sharing_page_err_album": "Failed to create album",
"selected": "Pasirinkta",
"selected_count": "{count, plural, one {# pasirinktas} few {# pasirinkti} other {# pasirinktų}}",
"send_message": "Siųsti žinutę",
"send_welcome_email": "Siųsti sveikinimo el. laišką",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_server_url": "Server URL",
"server_offline": "Serveris nepasiekiamas",
"server_online": "Serveris pasiekiamas",
"server_stats": "Serverio statistika",
@@ -981,19 +1378,88 @@
"set_date_of_birth": "Nustatyti gimimo datą",
"set_profile_picture": "Nustatyti profilio nuotrauką",
"set_slideshow_to_fullscreen": "Nustatyti skaidrių peržiūrą per visą ekraną",
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
"setting_image_viewer_original_title": "Load original image",
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
"setting_image_viewer_preview_title": "Load preview image",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "immediately",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "never",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
"setting_notifications_single_progress_title": "Show background backup detail progress",
"setting_notifications_subtitle": "Adjust your notification preferences",
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
"setting_notifications_total_progress_title": "Show background backup total progress",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Nustatymai",
"settings_require_restart": "Please restart Immich to apply this setting",
"settings_saved": "",
"share": "Dalintis",
"share_add_photos": "Add photos",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "Preparing...",
"shared": "Bendrinami",
"shared_album_activities_input_disable": "Comment is disabled",
"shared_album_activity_remove_content": "Do you want to delete this activity?",
"shared_album_activity_remove_title": "Delete Activity",
"shared_album_section_people_action_error": "Error leaving/removing from album",
"shared_album_section_people_action_leave": "Remove user from album",
"shared_album_section_people_action_remove_user": "Remove user from album",
"shared_album_section_people_title": "PEOPLE",
"shared_by": "",
"shared_by_you": "",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Shared Links",
"shared_link_clipboard_copied_massage": "Copied to clipboard",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "Error while creating shared link",
"shared_link_edit_description_hint": "Enter the share description",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 hour",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "Enter the share password",
"shared_link_edit_submit_button": "Update link",
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "Expires ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Manage Shared links",
"shared_link_options": "Bendrinimo nuorodos parametrai",
"shared_links": "Bendrinimo nuorodos",
"shared_photos_and_videos_count": "{assetCount, plural, one {# bendrinama nuotrauka ir vaizdo įrašas} few {# bendrinamos nuotraukos ir vaizdo įrašai} other {# bendrinamų nuotraukų ir vaizdo įrašų}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "Pasidalinta su {partner}",
"sharing": "Dalijimasis",
"sharing_enter_password": "Norėdami peržiūrėti šį puslapį, įveskite slaptažodį.",
"sharing_page_album": "Shared albums",
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
"sharing_page_empty_list": "EMPTY LIST",
"sharing_sidebar_description": "Rodyti bendrinimo rodinio nuorodą šoninėje juostoje",
"sharing_silver_appbar_create_shared_album": "New shared album",
"sharing_silver_appbar_share_partner": "Share with partner",
"show_album_options": "Rodyti albumo parinktis",
"show_file_location": "Rodyti rinkmenos vietą",
"show_gallery": "Rodyti galeriją",
@@ -1046,6 +1512,9 @@
"support_and_feedback": "Palaikymas ir atsiliepimai",
"swap_merge_direction": "",
"sync": "Sinchronizuoti",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Žyma",
"tag_created": "Sukurta žyma: {tag}",
"tag_feature_description": "Peržiūrėkite nuotraukas ir vaizdo įrašus sugrupuotus pagal sužymėtas temas",
@@ -1057,6 +1526,19 @@
"theme": "Tema",
"theme_selection": "",
"theme_selection_description": "",
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
"theme_setting_image_viewer_quality_title": "Image viewer quality",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
"theme_setting_theme_subtitle": "Choose the app's theme setting",
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
"time_based_memories": "Atsiminimai pagal laiką",
"timeline": "Laiko skalė",
"timezone": "Laiko juosta",
@@ -1070,7 +1552,15 @@
"trash": "Šiukšliadėžė",
"trash_all": "Perkelti visus į šiukšliadėžę",
"trash_count": "Perkelti {count, number} į šiukšliadėžę",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "Į šiukšliadėžę perkeltos nuotraukos ir vaizdo įrašai bus rodomi čia.",
"trash_page_delete_all": "Delete All",
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "No trashed assets",
"trash_page_restore_all": "Restore All",
"trash_page_select_assets_btn": "Select assets",
"trash_page_title": "Trash ({})",
"trashed_items_will_be_permanently_deleted_after": "Į šiukšliadėžę perkelti elementai bus visam laikui ištrinti po {days, plural, one {# dienos} other {# dienų}}.",
"type": "Tipas",
"unarchive": "Išarchyvuoti",
@@ -1093,14 +1583,19 @@
"updated_password": "Slaptažodis atnaujintas",
"upload": "Įkelti",
"upload_concurrency": "",
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_title": "Upload Asset",
"upload_errors": "Įkėlimas įvyko su {count, plural, one {# klaida} few {# klaidomis} other {# klaidų}}, norėdami pamatyti naujai įkeltus elementus perkraukite puslapį.",
"upload_progress": "Liko {remaining, number} - Apdorota {processed, number}/{total, number}",
"upload_status_duplicates": "Dublikatai",
"upload_status_errors": "Klaidos",
"upload_status_uploaded": "Įkelta",
"upload_success": "Įkėlimas pavyko, norėdami pamatyti naujai įkeltus elementus perkraukite puslapį.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "",
"use_current_connection": "use current connection",
"user": "Naudotojas",
"user_id": "Naudotojo ID",
"user_usage_detail": "",
@@ -1110,9 +1605,15 @@
"users": "Naudotojai",
"utilities": "Įrankiai",
"validate": "Validuoti",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "Kintamieji",
"version": "Versija",
"version_announcement_closing": "Tavo draugas, Alex",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available 🎉",
"version_history": "Versijų istorija",
"version_history_item": "Versija {version} įdiegta {date}",
"video": "Vaizdo įrašas",
@@ -1128,13 +1629,18 @@
"view_next_asset": "",
"view_previous_asset": "",
"view_stack": "Peržiūrėti grupę",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack",
"waiting": "Laukiama",
"warning": "Įspėjimas",
"week": "Savaitė",
"welcome_to_immich": "Sveiki atvykę į Immich",
"wifi_name": "WiFi Name",
"year": "Metai",
"years_ago": "Prieš {years, plural, one {# metus} other {# metų}}",
"yes": "Taip",
"you_dont_have_any_shared_links": "Bendrinimo nuorodų neturite",
"your_wifi_name": "Your WiFi name",
"zoom_image": "Priartinti vaizdą"
}

View File

@@ -4,6 +4,7 @@
"account_settings": "Konta iestatījumi",
"acknowledge": "Pieņemt",
"action": "Darbība",
"action_common_update": "Atjaunināt",
"actions": "Darbības",
"active": "Aktīvs",
"activity": "Aktivitāte",
@@ -13,6 +14,7 @@
"add_a_location": "Pievienot atrašanās vietu",
"add_a_name": "Pievienot vārdu",
"add_a_title": "Pievienot virsrakstu",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Pievienot izslēgšanas šablonu",
"add_import_path": "Pievienot importa ceļu",
"add_location": "Pievienot lokāciju",
@@ -22,6 +24,8 @@
"add_photos": "Pievienot fotoattēlus",
"add_to": "Pievienot…",
"add_to_album": "Pievienot albumam",
"add_to_album_bottom_sheet_added": "Pievienots {album}",
"add_to_album_bottom_sheet_already_exists": "Jau pievienots {album}",
"add_to_shared_album": "Pievienot koplietotam albumam",
"add_url": "Pievienot URL",
"added_to_archive": "Pievienots arhīvam",
@@ -275,18 +279,42 @@
"admin_password": "Administratora parole",
"administration": "Administrēšana",
"advanced": "Papildu",
"advanced_settings_log_level_title": "Žurnalēšanas līmenis: {}",
"advanced_settings_prefer_remote_subtitle": "Dažās ierīcēs sīktēli no ierīcē esošajiem resursiem tiek ielādēti ļoti lēni. Aktivizējiet šo iestatījumu, lai tā vietā ielādētu attālus attēlus.",
"advanced_settings_prefer_remote_title": "Dot priekšroku attāliem attēliem",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Izlaiž servera galapunkta SSL sertifikātu verifikāciju. Nepieciešams pašparakstītajiem sertifikātiem.",
"advanced_settings_self_signed_ssl_title": "Atļaut pašparakstītus SSL sertifikātus",
"advanced_settings_tile_subtitle": "Lietotāja papildu iestatījumi",
"advanced_settings_troubleshooting_subtitle": "Iespējot papildu aktīvus problēmu novēršanai",
"advanced_settings_troubleshooting_title": "Problēmas novēršana",
"album_added": "Albums pievienots",
"album_added_notification_setting_description": "",
"album_cover_updated": "Albuma attēls atjaunināts",
"album_info_card_backup_album_excluded": "NEIEKĻAUTS",
"album_info_card_backup_album_included": "IEKĻAUTS",
"album_info_updated": "Albuma informācija atjaunināta",
"album_leave": "Pamest albumu?",
"album_name": "Albuma nosaukums",
"album_options": "",
"album_remove_user": "Noņemt lietotāju?",
"album_thumbnail_card_item": "1 vienums",
"album_thumbnail_card_items": "{} vienumi",
"album_thumbnail_card_shared": "· Koplietots",
"album_thumbnail_shared_by": "Kopīgoja {}",
"album_updated": "Albums atjaunināts",
"album_updated_setting_description": "",
"album_user_left": "Pameta {album}",
"album_user_removed": "Noņēma {user}",
"album_viewer_appbar_delete_confirm": "Vai tiešām vēlaties dzēst šo albumu no sava konta?",
"album_viewer_appbar_share_err_delete": "Neizdevās izdzēst albumu",
"album_viewer_appbar_share_err_leave": "Neizdevās pamest albumu",
"album_viewer_appbar_share_err_remove": "Ir problēmas ar aktīvu noņemšanu no albuma",
"album_viewer_appbar_share_err_title": "Neizdevās mainīt albuma nosaukumu",
"album_viewer_appbar_share_leave": "Pamest albumu",
"album_viewer_appbar_share_to": "Kopīgot Uz",
"album_viewer_page_share_add_users": "Pievienot lietotājus",
"albums": "Albumi",
"all": "Viss",
"all_albums": "Visi albumi",
@@ -300,18 +328,109 @@
"api_key": "API atslēga",
"api_key_description": "Šī vērtība tiks parādīta tikai vienu reizi. Nokopējiet to pirms loga aizvēršanas.",
"api_keys": "API atslēgas",
"app_bar_signout_dialog_content": "Vai tiešām vēlaties izrakstīties?",
"app_bar_signout_dialog_ok": "Jā",
"app_bar_signout_dialog_title": "Izrakstīties",
"app_settings": "",
"appears_in": "",
"archive": "Arhīvs",
"archive_or_unarchive_photo": "",
"archive_page_no_archived_assets": "Nav atrasts neviens arhivēts aktīvs",
"archive_page_title": "Arhīvs ({})",
"archive_size": "Arhīva izmērs",
"archived": "Archived",
"are_these_the_same_person": "Vai šī ir tā pati persona?",
"asset_action_delete_err_read_only": "Nevar dzēst read only aktīvu(-s), notiek izlaišana",
"asset_action_share_err_offline": "Nevar iegūt bezsaistes aktīvu(-s), notiek izlaišana",
"asset_adding_to_album": "Pievieno albumam...",
"asset_list_group_by_sub_title": "Grupēt pēc",
"asset_list_layout_settings_dynamic_layout_title": "Dinamiskais izkārtojums",
"asset_list_layout_settings_group_automatically": "Automātiski",
"asset_list_layout_settings_group_by": "Grupēt aktīvus pēc",
"asset_list_layout_settings_group_by_month_day": "Mēnesis + diena",
"asset_list_layout_sub_title": "Izvietojums",
"asset_list_settings_subtitle": "Fotorežģa izkārtojuma iestatījumi",
"asset_list_settings_title": "Fotorežģis",
"asset_offline": "",
"asset_restored_successfully": "Asset restored successfully",
"asset_uploading": "Augšupielādē...",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Aktīvu Skatītājs",
"assets": "aktīvi",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"authorized_devices": "Autorizētās ierīces",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Atpakaļ",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albumi ierīcē ({})",
"backup_album_selection_page_albums_tap": "Pieskarieties, lai iekļautu, veiciet dubultskārienu, lai izslēgtu",
"backup_album_selection_page_assets_scatter": "Aktīvi var būt izmētāti pa vairākiem albumiem. Tādējādi dublēšanas procesā albumus var iekļaut vai neiekļaut.",
"backup_album_selection_page_select_albums": "Atlasīt albumus",
"backup_album_selection_page_selection_info": "Atlases informācija",
"backup_album_selection_page_total_assets": "Kopā unikālie aktīvi",
"backup_all": "Viss",
"backup_background_service_backup_failed_message": "Neizdevās dublēt līdzekļus. Notiek atkārtota mēģināšana…",
"backup_background_service_connection_failed_message": "Neizdevās izveidot savienojumu ar serveri. Notiek atkārtota mēģināšana…",
"backup_background_service_current_upload_notification": "Notiek {} augšupielāde",
"backup_background_service_default_notification": "Notiek jaunu aktīvu meklēšana…",
"backup_background_service_error_title": "Dublēšanas kļūda",
"backup_background_service_in_progress_notification": "Notiek aktīvu dublēšana…",
"backup_background_service_upload_failure_notification": "Neizdevās augšupielādēt {}",
"backup_controller_page_albums": "Dublējuma Albumi",
"backup_controller_page_background_app_refresh_disabled_content": "Iespējojiet fona aplikācijas atsvaidzināšanu sadaļā Iestatījumi > Vispārīgi > Fona Aplikācijas Atsvaidzināšana, lai izmantotu fona dublēšanu.",
"backup_controller_page_background_app_refresh_disabled_title": "Fona aplikācijas atsvaidzināšana atspējota",
"backup_controller_page_background_app_refresh_enable_button_text": "Doties uz iestatījumiem",
"backup_controller_page_background_battery_info_link": "Parādīt, kā",
"backup_controller_page_background_battery_info_message": "Lai iegūtu vislabāko fona dublēšanas pieredzi, lūdzu, atspējojiet visas akumulatora optimizācijas, kas ierobežo Immich fona aktivitāti.\n\nTā kā katrai ierīcei iestatījumi ir citādāki, lūdzu, meklējiet nepieciešamo informāciju pie ierīces ražotāja.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Akumulatora optimizācija",
"backup_controller_page_background_charging": "Tikai uzlādes laikā",
"backup_controller_page_background_configure_error": "Neizdevās konfigurēt fona pakalpojumu",
"backup_controller_page_background_delay": "Aizkavēt jaunu līdzekļu dublēšanu: {}",
"backup_controller_page_background_description": "Ieslēdziet fona pakalpojumu, lai automātiski dublētu visus jaunos aktīvus, neatverot programmu",
"backup_controller_page_background_is_off": "Automātiskā fona dublēšana ir izslēgta",
"backup_controller_page_background_is_on": "Automātiskā fona dublēšana ir ieslēgta",
"backup_controller_page_background_turn_off": "Izslēgt fona pakalpojumu",
"backup_controller_page_background_turn_on": "Ieslēgt fona pakalpojumu",
"backup_controller_page_background_wifi": "Tikai WiFi tīklā",
"backup_controller_page_backup": "Dublēšana",
"backup_controller_page_backup_selected": "Atlasīts: ",
"backup_controller_page_backup_sub": "Dublētie Fotoattēli un videoklipi",
"backup_controller_page_created": "Izveidots: {}",
"backup_controller_page_desc_backup": "Ieslēdziet priekšplāna dublēšanu, lai, atverot programmu, serverī automātiski augšupielādētu jaunus aktīvus.",
"backup_controller_page_excluded": "Izņemot: ",
"backup_controller_page_failed": "Neizdevās ({})",
"backup_controller_page_filename": "Faila nosaukums: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Dublējuma Informācija",
"backup_controller_page_none_selected": "Neviens nav atlasīts",
"backup_controller_page_remainder": "Atlikums",
"backup_controller_page_remainder_sub": "Atlikušie fotoattēli un videoklipi, kurus dublēt no atlases",
"backup_controller_page_server_storage": "Servera krātuve",
"backup_controller_page_start_backup": "Sākt Dublēšanu",
"backup_controller_page_status_off": "Automātiskā priekšplāna dublēšana ir izslēgta",
"backup_controller_page_status_on": "Automātiskā priekšplāna dublēšana ir ieslēgta",
"backup_controller_page_storage_format": "{} no {} tiek izmantots",
"backup_controller_page_to_backup": "Dublējamie albumi",
"backup_controller_page_total_sub": "Visi unikālie fotoattēli un videoklipi no izvēlētajiem albumiem",
"backup_controller_page_turn_off": "Izslēgt priekšplāna dublēšanu",
"backup_controller_page_turn_on": "Ieslēgt priekšplāna dublēšanu",
"backup_controller_page_uploading_file_info": "Faila informācijas augšupielāde",
"backup_err_only_album": "Nevar noņemt vienīgo albumu",
"backup_info_card_assets": "aktīvi",
"backup_manual_cancelled": "Atcelts",
"backup_manual_in_progress": "Augšupielāde jau notiek. Mēģiniet pēc kāda laika atkārtoti",
"backup_manual_success": "Veiksmīgi",
"backup_manual_title": "Augšupielādes statuss",
"backup_options_page_title": "Dublēšanas iestatījumi",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "",
"birthdate_saved": "Dzimšanas datums veiksmīgi saglabāts",
"birthdate_set_description": "Dzimšanas datums tiek izmantots, lai aprēķinātu šīs personas vecumu fotogrāfijas uzņemšanas brīdī.",
@@ -319,21 +438,49 @@
"bugs_and_feature_requests": "Kļūdas un funkciju pieprasījumi",
"build": "Būvējums",
"build_image": "Būvējuma attēls",
"cache_settings_album_thumbnails": "Bibliotēkas lapu sīktēli ({} aktīvi)",
"cache_settings_clear_cache_button": "Iztīrīt kešatmiņu",
"cache_settings_clear_cache_button_title": "Iztīra aplikācijas kešatmiņu. Tas būtiski ietekmēs lietotnes veiktspēju, līdz kešatmiņa būs pārbūvēta.",
"cache_settings_duplicated_assets_clear_button": "NOTĪRĪT",
"cache_settings_duplicated_assets_subtitle": "Fotoattēli un videoklipi, kurus lietotne ir iekļāvusi melnajā sarakstā",
"cache_settings_duplicated_assets_title": "Dublicētie Aktīvi ({})",
"cache_settings_image_cache_size": "Attēlu kešatmiņas lielums ({} aktīvi)",
"cache_settings_statistics_album": "Bibliotēkas sīktēli",
"cache_settings_statistics_assets": "{} aktīvi ({})",
"cache_settings_statistics_full": "Pilni attēli",
"cache_settings_statistics_shared": "Koplietojamo albumu sīktēli",
"cache_settings_statistics_thumbnail": "Sīktēli",
"cache_settings_statistics_title": "Kešatmiņas lietojums",
"cache_settings_subtitle": "Kontrolēt Immich mobilās lietotnes kešdarbi",
"cache_settings_thumbnail_size": "Sīktēlu keša lielums ({} aktīvi)",
"cache_settings_tile_subtitle": "Kontrolēt lokālās krātuves uzvedību",
"cache_settings_tile_title": "Lokālā Krātuve",
"cache_settings_title": "Kešdarbes iestatījumi",
"camera": "",
"camera_brand": "",
"camera_model": "",
"cancel": "Atcelt",
"cancel_search": "",
"canceled": "Canceled",
"cannot_merge_people": "Nevar apvienot cilvēkus",
"cannot_update_the_description": "",
"change_date": "Mainīt datumu",
"change_display_order": "Change display order",
"change_expiration_time": "Izmainīt derīguma termiņu",
"change_location": "Mainīt atrašanās vietu",
"change_name": "Mainīt nosaukumu",
"change_name_successfully": "Vārds veiksmīgi nomainīts",
"change_password": "Nomainīt paroli",
"change_password_form_confirm_password": "Apstiprināt Paroli",
"change_password_form_description": "Sveiki {name},\n\nŠī ir pirmā reize, kad pierakstāties sistēmā, vai arī ir iesniegts pieprasījums mainīt paroli. Lūdzu, zemāk ievadiet jauno paroli.",
"change_password_form_new_password": "Jauna Parole",
"change_password_form_password_mismatch": "Paroles nesakrīt",
"change_password_form_reenter_new_password": "Atkārtoti ievadīt jaunu paroli",
"change_your_password": "",
"changed_visibility_successfully": "",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "",
"choose_matching_people_to_merge": "Izvēlies atbilstošus cilvēkus apvienošanai",
"city": "Pilsēta",
@@ -341,6 +488,14 @@
"clear_all": "Notīrīt visu",
"clear_message": "",
"clear_value": "Notīrīt vērtību",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "Pulksteņrādītāja virzienā",
"close": "Aizvērt",
"collapse": "Sakļaut",
@@ -350,12 +505,24 @@
"comment_deleted": "Komentārs dzēsts",
"comment_options": "",
"comments_are_disabled": "",
"common_create_new_album": "Izveidot jaunu albumu",
"common_server_error": "Lūdzu, pārbaudiet tīkla savienojumu, pārliecinieties, vai serveris ir sasniedzams un aplikācijas/servera versijas ir saderīgas.",
"completed": "Completed",
"confirm": "Apstiprināt",
"confirm_admin_password": "",
"confirm_password": "Apstiprināt paroli",
"contain": "",
"context": "Konteksts",
"continue": "Turpināt",
"control_bottom_app_bar_album_info_shared": "{} vienumi · Koplietoti",
"control_bottom_app_bar_create_new_album": "Izveidot jaunu albumu",
"control_bottom_app_bar_delete_from_immich": "Dzēst no Immich",
"control_bottom_app_bar_delete_from_local": "Dzēst no ierīces",
"control_bottom_app_bar_edit_location": "Rediģēt Atrašanās Vietu",
"control_bottom_app_bar_edit_time": "Rediģēt Datumu un Laiku",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Kopīgot Uz",
"control_bottom_app_bar_trash_from_immich": "Pārvietot uz Atkritni",
"copied_image_to_clipboard": "",
"copy_error": "",
"copy_file_path": "",
@@ -369,20 +536,30 @@
"covers": "",
"create": "Izveidot",
"create_album": "Izveidot albumu",
"create_album_page_untitled": "Bez nosaukuma",
"create_library": "",
"create_link": "Izveidot saiti",
"create_link_to_share": "Izveidot kopīgošanas saiti",
"create_new": "CREATE NEW",
"create_new_person": "",
"create_new_user": "Izveidot jaunu lietotāju",
"create_shared_album_page_share_add_assets": "PIEVIENOT AKTĪVUS",
"create_shared_album_page_share_select_photos": "Fotoattēlu Izvēle",
"create_user": "Izveidot lietotāju",
"created": "",
"crop": "Crop",
"curated_object_page_title": "Lietas",
"current_device": "",
"current_server_address": "Current server address",
"custom_locale": "",
"custom_locale_description": "",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, gggg",
"dark": "",
"date_after": "",
"date_and_time": "Datums un Laiks",
"date_before": "",
"date_format": "E, LLL d, g • h:mm a",
"date_of_birth_saved": "Dzimšanas datums veiksmīgi saglabāts",
"date_range": "Datumu diapazons",
"day": "",
@@ -390,13 +567,24 @@
"default_locale_description": "",
"delete": "Dzēst",
"delete_album": "Dzēst albumu",
"delete_dialog_alert": "Šie vienumi tiks neatgriezeniski dzēsti no Immich un jūsu ierīces",
"delete_dialog_alert_local": "Šie vienumi tiks neatgriezeniski dzēsti no jūsu ierīces, bet joprojām būs pieejami Immich serverī.",
"delete_dialog_alert_local_non_backed_up": "Daži no šiem elementiem netiek dublēti Immich un tiks neatgriezeniski dzēsti no jūsu ierīces.",
"delete_dialog_alert_remote": "Šie vienumi tiks neatgriezeniski dzēsti no Immich servera.",
"delete_dialog_ok_force": "Tā pat dzēst",
"delete_dialog_title": "Neatgriezeniski Dzēst",
"delete_key": "",
"delete_library": "",
"delete_link": "",
"delete_local_dialog_ok_backed_up_only": "Dzēst tikai Dublētos",
"delete_local_dialog_ok_force": "Tā pat dzēst",
"delete_shared_link": "Dzēst Kopīgošanas saiti",
"delete_shared_link_dialog_title": "Dzēst Kopīgošanas saiti",
"delete_user": "Dzēst lietotāju",
"deleted_shared_link": "",
"description": "Apraksts",
"description_input_hint_text": "Pievienot aprakstu...",
"description_input_submit_error": "Atjauninot aprakstu, radās kļūda; papildinformāciju skatiet žurnālā",
"details": "INFORMĀCIJA",
"direction": "Virziens",
"disallow_edits": "",
@@ -410,9 +598,23 @@
"documentation": "Dokumentācija",
"done": "Gatavs",
"download": "Lejupielādēt",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Lejupielāde",
"download_settings_description": "Ar failu lejupielādi saistīto iestatījumu pārvaldība",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "",
"downloading_media": "Downloading media",
"duplicates": "Dublikāti",
"duration": "",
"edit_album": "",
@@ -426,6 +628,7 @@
"edit_key": "",
"edit_link": "Rediģēt saiti",
"edit_location": "Rediģēt Atrašanās Vietu",
"edit_location_dialog_title": "Atrašanās vieta",
"edit_name": "Rediģēt vārdu",
"edit_people": "",
"edit_title": "",
@@ -435,12 +638,17 @@
"editor_close_without_save_prompt": "Izmaiņas netiks saglabātas",
"editor_close_without_save_title": "Aizvērt redaktoru?",
"email": "E-pasts",
"empty_folder": "This folder is empty",
"empty_trash": "Iztukšot atkritni",
"enable": "",
"enabled": "",
"end_date": "",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "",
"error_saving_image": "Error: {}",
"errors": {
"cant_get_faces": "Nevar iegūt sejas",
"cant_search_people": "Neizdevās veikt peronu meklēšanu",
@@ -493,40 +701,92 @@
"unable_to_update_settings": "",
"unable_to_update_user": ""
},
"exif_bottom_sheet_description": "Pievienot Aprakstu...",
"exif_bottom_sheet_details": "INFORMĀCIJA",
"exif_bottom_sheet_location": "ATRAŠANĀS VIETA",
"exif_bottom_sheet_people": "CILVĒKI",
"exif_bottom_sheet_person_add_person": "Pievienot vārdu",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Iziet no slīdrādes",
"expand_all": "",
"experimental_settings_new_asset_list_subtitle": "Izstrādes posmā",
"experimental_settings_new_asset_list_title": "Iespējot eksperimentālo fotorežģi",
"experimental_settings_subtitle": "Izmanto uzņemoties risku!",
"experimental_settings_title": "Eksperimentāls",
"expire_after": "Derīguma termiņš beidzas pēc",
"expired": "Derīguma termiņš beidzās",
"explore": "Izpētīt",
"extension": "",
"external_libraries": "",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"failed": "Failed",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Izlase",
"favorite_or_unfavorite_photo": "",
"favorites": "Izlase",
"favorites_page_no_favorites": "Nav atrasti iecienītākie aktīvi",
"feature_photo_updated": "",
"features_setting_description": "Lietotnes funkciju pārvaldība",
"file_name": "",
"file_name_or_extension": "",
"filename": "",
"filetype": "",
"filter": "Filter",
"filter_people": "",
"fix_incorrect_match": "",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Mapes",
"forward": "",
"general": "",
"get_help": "",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"grant_permission": "Grant permission",
"group_albums_by": "",
"haptic_feedback_switch": "Iestatīt haptisku reakciju",
"haptic_feedback_title": "Haptiska Reakcija",
"has_quota": "Ir kvota",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hide_gallery": "",
"hide_named_person": "Paslēpt personu {name}",
"hide_password": "",
"hide_person": "Paslēpt personu",
"home_page_add_to_album_conflicts": "Pievienoja {added} aktīvus albumam {album}. {failed} aktīvi jau ir albumā.",
"home_page_add_to_album_err_local": "Albumiem vēl nevar pievienot lokālos aktīvus, notiek izlaišana",
"home_page_add_to_album_success": "Pievienoja {added} aktīvus albumam {album}.",
"home_page_album_err_partner": "Pagaidām nevar pievienot partnera aktīvus albumam, notiek izlaišana",
"home_page_archive_err_local": "Vēl nevar arhivēt lokālos aktīvus, notiek izlaišana",
"home_page_archive_err_partner": "Nevarēja arhivēt partnera aktīvus, notiek izlaišana",
"home_page_building_timeline": "Tiek izveidota laika skala",
"home_page_delete_err_partner": "Nevarēja dzēst partnera aktīvus, notiek izlaišana",
"home_page_delete_remote_err_local": "Lokālie aktīvi dzēšanai attālinātajā izvēlē, tiek izlaists",
"home_page_favorite_err_local": "Vēl nevar pievienot izlaisei vietējos aktīvus, notiek izlaišana",
"home_page_favorite_err_partner": "Pagaidām nevar ievietot izlasē partnera aktīvus, notiek izlaišana",
"home_page_first_time_notice": "Ja šī ir pirmā reize, kad izmantojat aplikāciju, lūdzu, izvēlieties dublējuma albumu(s), lai laika skala varētu aizpildīt fotoattēlus un videoklipus albumā(os).",
"home_page_share_err_local": "Caur saiti nevarēja kopīgot lokālos aktīvus, notiek izlaišana",
"home_page_upload_err_limit": "Vienlaikus var augšupielādēt ne vairāk kā 30 aktīvus, notiek izlaišana",
"host": "",
"hour": "",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Attēls",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Lejupielāde Uzsākta",
"image_viewer_page_state_provider_download_success": "Lejupielāde Izdevās",
"image_viewer_page_state_provider_share_error": "Kopīgošanas Kļūda",
"immich_logo": "Immich logo",
"import_from_json": "Importēt no JSON",
"import_path": "Importa ceļš",
@@ -543,6 +803,8 @@
"night_at_midnight": "Katru dienu pusnaktī",
"night_at_twoam": "Katru dienu 2.00 naktī"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Ielūgt cilvēkus",
"invite_to_album": "Uzaicināt albumā",
"jobs": "Uzdevumi",
@@ -559,6 +821,12 @@
"level": "Līmenis",
"library": "Bibliotēka",
"library_options": "",
"library_page_device_albums": "Albumi ierīcē",
"library_page_new_album": "Jauns albums",
"library_page_sort_asset_count": "Daudzums ar aktīviem",
"library_page_sort_created": "Jaunākais izveidotais",
"library_page_sort_last_modified": "Pēdējo reizi modificēts",
"library_page_sort_title": "Albuma virsraksts",
"light": "",
"link_options": "",
"link_to_oauth": "",
@@ -566,9 +834,39 @@
"list": "Saraksts",
"loading": "Ielādē",
"loading_search_results_failed": "",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Izvēlēties uz kartes",
"location_picker_latitude_error": "Ievadiet korektu ģeogrāfisko platumu",
"location_picker_latitude_hint": "Ievadiet savu ģeogrāfisko platumu šeit",
"location_picker_longitude_error": "Ievadiet korektu ģeogrāfisko garumu",
"location_picker_longitude_hint": "Ievadiet savu ģeogrāfisko garumu šeit",
"log_out": "Izrakstīties",
"log_out_all_devices": "",
"login_disabled": "Pieslēgšanās ir atslēgta",
"login_form_api_exception": "API izņēmums. Lūdzu, pārbaudiet servera URL un mēģiniet vēlreiz.",
"login_form_back_button_text": "Atpakaļ",
"login_form_email_hint": "jūsuepasts@email.com",
"login_form_endpoint_hint": "http://jūsu-servera-ip:ports",
"login_form_endpoint_url": "Servera Galapunkta URL",
"login_form_err_http": "Lūdzu norādiet http:// vai https://",
"login_form_err_invalid_email": "Nederīgs e-pasts",
"login_form_err_invalid_url": "Nederīgs URL",
"login_form_err_leading_whitespace": "Priekšējā baltstarpa",
"login_form_err_trailing_whitespace": "Beigu baltstarpa",
"login_form_failed_get_oauth_server_config": "Pieslēdzoties, izmantojot OAuth, radās kļūda; pārbaudiet servera URL",
"login_form_failed_get_oauth_server_disable": "OAuth līdzeklis šajā serverī nav pieejams",
"login_form_failed_login": "Radās kļūda, piesakoties, pārbaudiet servera URL, e-pastu un paroli",
"login_form_handshake_exception": "Ar serveri tika konstatēta Handshake Exception kļūda. Ja izmantojat pašparakstītu sertifikātu, tad iestatījumos iespējojiet pašparakstītu sertifikātu atbalstu.",
"login_form_password_hint": "parole",
"login_form_save_login": "Palikt pieteiktam",
"login_form_server_empty": "Ieraksties servera URL.",
"login_form_server_error": "Nevarēja izveidot savienojumu ar serveri.",
"login_has_been_disabled": "",
"login_password_changed_error": "Atjaunojot paroli radās kļūda",
"login_password_changed_success": "Parole veiksmīgi atjaunota",
"longitude": "Ģeogrāfiskais garums",
"look": "Izskats",
"loop_videos": "",
@@ -582,13 +880,40 @@
"manage_your_devices": "Pieslēgto ierīču pārvaldība",
"manage_your_oauth_connection": "OAuth savienojumu pārvaldība",
"map": "Karte",
"map_assets_in_bound": "{} fotoattēls",
"map_assets_in_bounds": "{} fotoattēli",
"map_cannot_get_user_location": "Nevar iegūt lietotāja atrašanās vietu",
"map_location_dialog_yes": "Jā",
"map_location_picker_page_use_location": "Izvēlēties šo atrašanās vietu",
"map_location_service_disabled_content": "Lai tiktu rādīti jūsu pašreizējās atrašanās vietas aktīvi, ir jāaktivizē atrašanās vietas pakalpojums. Vai vēlaties to iespējot tagad?",
"map_location_service_disabled_title": "Atrašanās vietas Pakalpojums atslēgts",
"map_marker_for_images": "Kartes marķieris attēliem, kas uzņemti {city}, {country}",
"map_marker_with_image": "Kartes marķieris ar attēlu",
"map_no_assets_in_bounds": "Šajā lokācijā nav neviena fotoattēla",
"map_no_location_permission_content": "Atrašanās vietas atļauja ir nepieciešama, lai parādītu jūsu pašreizējās atrašanās vietas aktīvus. Vai vēlaties to atļaut tagad?",
"map_no_location_permission_title": "Atrašanās vietas Atļaujas liegtas",
"map_settings": "Kartes Iestatījumi",
"map_settings_dark_mode": "Tumšais režīms",
"map_settings_date_range_option_day": "Pēdējās 24 stundas",
"map_settings_date_range_option_days": "Pēdējās {} dienas",
"map_settings_date_range_option_year": "Pēdējo gadu",
"map_settings_date_range_option_years": "Pēdējos {} gadus",
"map_settings_dialog_title": "Kartes Iestatījumi",
"map_settings_include_show_archived": "Iekļaut Arhivētos",
"map_settings_include_show_partners": "Iekļaut Partnerus",
"map_settings_only_show_favorites": "Rādīt tikai Izlasi",
"map_settings_theme_settings": "Kartes Dizains",
"map_zoom_to_see_photos": "Attāliniet, lai redzētu fotoattēlus",
"matches": "Atbilstības",
"media_type": "Multivides veids",
"memories": "Atmiņas",
"memories_all_caught_up": "Šobrīd, tas arī viss",
"memories_check_back_tomorrow": "Priekš vairāk atmiņām atgriezieties rītdien.",
"memories_setting_description": "",
"memories_start_over": "Sākt no jauna",
"memories_swipe_to_close": "Pavelciet uz augšu, lai aizvērtu",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Atmiņa",
"menu": "Izvēlne",
"merge": "Apvienot",
@@ -601,11 +926,16 @@
"missing": "Trūkstošie",
"model": "Modelis",
"month": "Mēnesis",
"monthly_title_text_date_format": "MMMM g",
"more": "Vairāk",
"moved_to_trash": "Pārvietots uz atkritni",
"multiselect_grid_edit_date_time_err_read_only": "Nevar rediģēt read only aktīva(-u) datumu, notiek izlaišana",
"multiselect_grid_edit_gps_err_read_only": "Nevar rediģēt atrašanās vietu read only aktīva(-u) datumu, notiek izlaišana",
"my_albums": "Mani albumi",
"name": "Vārds",
"name_or_nickname": "Vārds vai iesauka",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "nekad",
"new_album": "Jauns albums",
"new_api_key": "Jauna API atslēga",
@@ -620,6 +950,7 @@
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "NOKLIKŠĶINIET, LAI AUGŠUPIELĀDĒTU SAVU PIRMO FOTOATTĒLU",
"no_assets_to_show": "Nav uzrādāmo aktīvu",
"no_duplicates_found": "Dublikāti netika atrasti.",
"no_exif_info_available": "Nav pieejama exif informācija",
"no_explore_results_message": "",
@@ -631,7 +962,12 @@
"no_results_description": "Izmēģiniet sinonīmu vai vispārīgāku atslēgvārdu",
"no_shared_albums_message": "",
"not_in_any_album": "Nav nevienā albumā",
"not_selected": "Not selected",
"notes": "Piezīmes",
"notification_permission_dialog_content": "Lai iespējotu paziņojumus, atveriet Iestatījumi un atlasiet Atļaut.",
"notification_permission_list_tile_content": "Piešķirt atļauju, lai iespējotu paziņojumus.",
"notification_permission_list_tile_enable_button": "Iespējot Paziņojumus",
"notification_permission_list_tile_title": "Paziņojumu Atļaujas",
"notification_toggle_setting_description": "Ieslēgt e-pasta paziņojumus",
"notifications": "Paziņojumi",
"notifications_setting_description": "Paziņojumu pārvaldība",
@@ -640,6 +976,7 @@
"offline": "Bezsaistē",
"ok": "Labi",
"oldest_first": "",
"on_this_device": "On this device",
"online": "Tiešsaistē",
"only_favorites": "Tikai izlase",
"open_in_map_view": "Atvērt kartes skatā",
@@ -653,6 +990,14 @@
"other_variables": "Citi mainīgie",
"owned": "Īpašumā",
"owner": "Īpašnieks",
"partner_list_user_photos": "{user} fotoattēli",
"partner_list_view_all": "Apskatīt visu",
"partner_page_empty_message": "Jūsu fotogrāfijas pagaidām nav kopīgotas ar nevienu partneri.",
"partner_page_no_more_users": "Nav vairs lietotāju, kurus var pievienot",
"partner_page_partner_add_failed": "Neizdevās pievienot partneri",
"partner_page_select_partner": "Izvēlēties partneri",
"partner_page_shared_to_title": "Kopīgots uz",
"partner_page_stop_sharing_content": "{} vairs nevarēs piekļūt jūsu fotoattēliem.",
"partner_sharing": "",
"partners": "",
"password": "Parole",
@@ -676,6 +1021,14 @@
"permanent_deletion_warning_setting_description": "",
"permanently_delete": "",
"permanently_deleted_asset": "",
"permission_onboarding_back": "Atpakaļ",
"permission_onboarding_continue_anyway": "Tomēr turpināt",
"permission_onboarding_get_started": "Darba sākšana",
"permission_onboarding_go_to_settings": "Doties uz iestatījumiem",
"permission_onboarding_permission_denied": "Atļauja liegta. Lai izmantotu Immich, sadaļā Iestatījumi piešķiriet fotoattēlu un video atļaujas.",
"permission_onboarding_permission_granted": "Atļauja piešķirta! Jūs esat gatavi darbam.",
"permission_onboarding_permission_limited": "Atļauja ierobežota. Lai atļautu Immich dublēšanu un varētu pārvaldīt visu galeriju kolekciju, sadaļā Iestatījumi piešķiriet fotoattēlu un video atļaujas.",
"permission_onboarding_request": "Immich nepieciešama atļauja skatīt jūsu fotoattēlus un videoklipus.",
"photos": "Fotoattēli",
"photos_from_previous_years": "",
"pick_a_location": "",
@@ -686,12 +1039,21 @@
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Iestatījumi",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_drawer_app_logs": "Žurnāli",
"profile_drawer_client_out_of_date_major": "Mobilā Aplikācija ir novecojusi. Lūdzu atjaunojiet to uz jaunāko lielo versiju",
"profile_drawer_client_out_of_date_minor": "Mobilā Aplikācija ir novecojusi. Lūdzu atjaunojiet to uz jaunāko mazo versiju",
"profile_drawer_client_server_up_to_date": "Klients un serveris ir atjaunināti",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Serveris ir novecojis. Lūdzu atjaunojiet to uz jaunāko lielo versiju",
"profile_drawer_server_out_of_date_minor": "Serveris ir novecojis. Lūdzu atjaunojiet to uz jaunāko mazo versiju",
"profile_picture_set": "",
"public_share": "",
"purchase_button_never_show_again": "Nekad vairs nerādīt",
@@ -715,6 +1077,8 @@
"read_changelog": "Lasīt izmaiņu sarakstu",
"recent": "",
"recent_searches": "",
"recently_added": "Recently added",
"recently_added_page_title": "Nesen Pievienotais",
"refresh": "",
"refreshed": "",
"refreshes_every_file": "",
@@ -748,10 +1112,12 @@
"role_editor": "Redaktors",
"role_viewer": "Skatītājs",
"save": "Saglabāt",
"save_to_gallery": "Save to gallery",
"saved_api_key": "API atslēga saglabāta",
"saved_profile": "Profils saglabāts",
"saved_settings": "Iestatījumi saglabāti",
"say_something": "Teikt kaut ko",
"scaffold_body_error_occurred": "Radās kļūda",
"scan_all_libraries": "",
"scan_settings": "",
"search": "Meklēt",
@@ -762,12 +1128,41 @@
"search_camera_model": "",
"search_city": "",
"search_country": "",
"search_filter_apply": "Lietot filtru",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Nav albumā",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for_existing_person": "",
"search_no_more_result": "No more results",
"search_no_people": "Nav cilvēku",
"search_no_people_named": "Nav cilvēku ar vārdu \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_page_categories": "Kategorijas",
"search_page_motion_photos": "Kustību Fotoattēli",
"search_page_no_objects": "Informācija par Objektiem nav pieejama",
"search_page_no_places": "Nav pieejama Informācija par Vietām",
"search_page_screenshots": "Ekrānuzņēmumi",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfiji",
"search_page_things": "Lietas",
"search_page_view_all_button": "Apskatīt visu",
"search_page_your_activity": "Jūsu aktivitāte",
"search_page_your_map": "Jūsu Karte",
"search_people": "Meklēt cilvēkus",
"search_places": "",
"search_result_page_new_search_hint": "Jauns Meklējums",
"search_state": "",
"search_suggestion_list_smart_search_hint_1": "Viedā meklēšana ir iespējota pēc noklusējuma, lai meklētu metadatus, izmantojiet sintaksi",
"search_suggestion_list_smart_search_hint_2": "m:jūsu-meklēšanas-frāze",
"search_timezone": "",
"search_type": "",
"search_your_photos": "Meklēt Jūsu fotoattēlus",
@@ -782,8 +1177,12 @@
"select_library_owner": "",
"select_new_face": "",
"select_photos": "Fotoattēlu Izvēle",
"select_user_for_sharing_page_err_album": "Neizdevās izveidot albumu",
"selected": "",
"send_message": "",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Aplikācijas Versija",
"server_info_box_server_url": "Servera URL",
"server_online": "Serveris tiešsaistē",
"server_stats": "Servera statistika",
"server_version": "Servera versija",
@@ -793,15 +1192,84 @@
"set_date_of_birth": "Iestatīt dzimšanas datumu",
"set_profile_picture": "",
"set_slideshow_to_fullscreen": "",
"setting_image_viewer_help": "Detaļu skatītājs vispirms ielādē mazo sīktēlu, pēc tam ielādē vidēja lieluma priekšskatījumu (ja iespējots), visbeidzot ielādē oriģinālu (ja iespējots).",
"setting_image_viewer_original_subtitle": "Iespējojiet sākotnējā pilnas izšķirtspējas attēla (liels!) ielādi. Atspējot lai samazinātu datu lietojumu (gan tīklā, gan ierīces kešatmiņā).",
"setting_image_viewer_original_title": "Ielādēt oriģinālo attēlu",
"setting_image_viewer_preview_subtitle": "Iespējojiet vidējas izšķirtspējas attēla ielādēšanu. Atspējojiet vai nu tiešu oriģināla ielādi, vai izmantojiet tikai sīktēlu.",
"setting_image_viewer_preview_title": "Ielādēt priekšskatījuma attēlu",
"setting_image_viewer_title": "Attēli",
"setting_languages_apply": "Lietot",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Valodas",
"setting_notifications_notify_failures_grace_period": "Paziņot par fona dublēšanas kļūmēm: {}",
"setting_notifications_notify_hours": "{} stundas",
"setting_notifications_notify_immediately": "nekavējoties",
"setting_notifications_notify_minutes": "{} minūtes",
"setting_notifications_notify_never": "nekad",
"setting_notifications_notify_seconds": "{} sekundes",
"setting_notifications_single_progress_subtitle": "Detalizēta augšupielādes progresa informācija par katru aktīvu",
"setting_notifications_single_progress_title": "Rādīt fona dublējuma detalizēto progresu",
"setting_notifications_subtitle": "Paziņojumu preferenču pielāgošana",
"setting_notifications_total_progress_subtitle": "Kopējais augšupielādes progress (pabeigti/kopējie aktīvi)",
"setting_notifications_total_progress_title": "Rādīt fona dublējuma kopējo progresu",
"setting_video_viewer_looping_title": "Cikliski",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Iestatījumi",
"settings_require_restart": "Lūdzu, restartējiet Immich, lai lietotu šo iestatījumu",
"settings_saved": "",
"share": "Kopīgot",
"share_add_photos": "Pievienot fotoattēlus",
"share_assets_selected": "{} izvēlēti",
"share_dialog_preparing": "Notiek sagatavošana...",
"shared": "Kopīgots",
"shared_album_activities_input_disable": "Komentāri atslēgti",
"shared_album_activity_remove_content": "Vai vēlaties šo aktivitāti dzēst?",
"shared_album_activity_remove_title": "Dzēst Aktivitāti",
"shared_album_section_people_action_error": "Kļūme pametot/noņemot no albuma",
"shared_album_section_people_action_leave": "Noņemt lietotāju no albuma",
"shared_album_section_people_action_remove_user": "Noņemt lietotāju no albuma",
"shared_album_section_people_title": "CILVĒKI",
"shared_by": "",
"shared_by_you": "",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Kopīgotas Saites",
"shared_link_clipboard_copied_massage": "Ievietots starpliktuvē",
"shared_link_clipboard_text": "Saite: {}\nParole: {}",
"shared_link_create_error": "Kļūda izveidojot kopīgošanas saiti",
"shared_link_edit_description_hint": "Ievadiet kopīgojuma aprakstu",
"shared_link_edit_expire_after_option_day": "1 diena",
"shared_link_edit_expire_after_option_days": "{} dienas",
"shared_link_edit_expire_after_option_hour": "1 stunda",
"shared_link_edit_expire_after_option_hours": "{} stundas",
"shared_link_edit_expire_after_option_minute": "1 minūte",
"shared_link_edit_expire_after_option_minutes": "{} minūtes",
"shared_link_edit_expire_after_option_months": "{} mēneši",
"shared_link_edit_expire_after_option_year": "{} gads",
"shared_link_edit_password_hint": "Ierakstīt kopīgojuma paroli",
"shared_link_edit_submit_button": "Atjaunināt saiti",
"shared_link_error_server_url_fetch": "Nevarēja ienest servera URL",
"shared_link_expires_day": "Derīguma termiņš beigsies pēc {} dienas",
"shared_link_expires_days": "Derīguma termiņš beigsies pēc {} dienām",
"shared_link_expires_hour": "Derīguma termiņš beigsies pēc {} stundas",
"shared_link_expires_hours": "Derīguma termiņš beigsies pēc {} stundām",
"shared_link_expires_minute": "Derīguma termiņš beigsies pēc {} minūtes",
"shared_link_expires_minutes": "Derīguma termiņš beidzas pēc {} minūtēm",
"shared_link_expires_never": "Derīguma termiņš beigsies ∞",
"shared_link_expires_second": "Derīguma termiņš beigsies pēc {} sekundes",
"shared_link_expires_seconds": "Derīguma termiņš beidzas pēc {} sekundēm",
"shared_link_individual_shared": "Individuāli kopīgots",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Pārvaldīt Kopīgotās saites",
"shared_links": "Kopīgotās saites",
"shared_with_me": "Shared with me",
"sharing": "Kopīgošana",
"sharing_page_album": "Kopīgotie albumi",
"sharing_page_description": "Izveidojiet koplietojamus albumus, lai kopīgotu fotoattēlus un videoklipus ar Jūsu tīkla lietotājiem.",
"sharing_page_empty_list": "TUKŠS SARAKSTS",
"sharing_sidebar_description": "",
"sharing_silver_appbar_create_shared_album": "Izveidot kopīgotu albumu",
"sharing_silver_appbar_share_partner": "Dalīties ar partneri",
"show_album_options": "Rādīt albuma iespējas",
"show_albums": "Rādīt albumus",
"show_all_people": "Rādīt visus cilvēkus",
@@ -852,10 +1320,26 @@
"support_and_feedback": "Atbalsts un atsauksmes",
"swap_merge_direction": "",
"sync": "Sinhronizēt",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"template": "",
"theme": "Dizains",
"theme_selection": "",
"theme_selection_description": "",
"theme_setting_asset_list_storage_indicator_title": "Rādīt krātuves indikatoru uz aktīvu elementiem",
"theme_setting_asset_list_tiles_per_row_title": "Aktīvu skaits rindā ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "Attēlu skatītāja detaļu kvalitātes pielāgošana",
"theme_setting_image_viewer_quality_title": "Attēlu skatītāja kvalitāte",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automātisks (sekot sistēmas iestatījumiem)",
"theme_setting_theme_subtitle": "Izvēlieties programmas dizaina iestatījumu",
"theme_setting_three_stage_loading_subtitle": "Trīspakāpju ielāde var palielināt ielādēšanas veiktspēju, bet izraisa ievērojami lielāku tīkla noslodzi",
"theme_setting_three_stage_loading_title": "Iespējot trīspakāpju ielādi",
"they_will_be_merged_together": "Tās tiks apvienotas",
"time_based_memories": "",
"timezone": "Laika zona",
@@ -866,7 +1350,15 @@
"total_usage": "Kopējais lietojums",
"trash": "Atkritne",
"trash_all": "Dzēst Visu",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "",
"trash_page_delete_all": "Dzēst Visu",
"trash_page_empty_trash_dialog_content": "Vai vēlaties iztukšot savus izmestos aktīvus? Tie tiks neatgriezeniski izņemti no Immich",
"trash_page_info": "Atkritnes vienumi tiks neatgriezeniski dzēsti pēc {} dienām",
"trash_page_no_assets": "Atkritnē nav aktīvu",
"trash_page_restore_all": "Atjaunot Visu",
"trash_page_select_assets_btn": "Atlasīt aktīvus",
"trash_page_title": "Atkritne ({})",
"type": "",
"unarchive": "Atarhivēt",
"unfavorite": "Noņemt no izlases",
@@ -885,11 +1377,16 @@
"updated_password": "Parole ir atjaunināta",
"upload": "Augšupielādēt",
"upload_concurrency": "",
"upload_dialog_info": "Vai vēlaties veikt izvēlētā(-o) aktīva(-u) dublējumu uz servera?",
"upload_dialog_title": "Augšupielādēt Aktīvu",
"upload_status_duplicates": "Dublikāti",
"upload_status_errors": "Kļūdas",
"upload_status_uploaded": "Augšupielādēts",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "",
"usage": "Lietojums",
"use_current_connection": "use current connection",
"user": "Lietotājs",
"user_id": "Lietotāja ID",
"user_purchase_settings_description": "Pirkuma pārvaldība",
@@ -898,9 +1395,15 @@
"users": "Lietotāji",
"utilities": "Rīki",
"validate": "",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "",
"version": "Versija",
"version_announcement_message": "Sveiki! Ir pieejama jauna Immich versija. Lūdzu, veltiet laiku, lai izlasītu <link>laidiena piezīmes</link> un pārliecinātos, ka jūsu iestatījumi ir atjaunināti, lai novērstu jebkādu nepareizu konfigurāciju, jo īpaši, ja izmantojat WatchTower vai citu mehānismu, kas automātiski atjaunina jūsu Immich instanci.",
"version_announcement_overlay_release_notes": "informācija par laidienu",
"version_announcement_overlay_text_1": "Sveiks draugs, ir jauns izlaidums no",
"version_announcement_overlay_text_2": "lūdzu, veltiet laiku, lai apmeklētu",
"version_announcement_overlay_text_3": " un pārliecinieties, vai docker-compose un .env iestatījumi ir atjaunināti, lai novērstu jebkādas nepareizas konfigurācijas, īpaši, ja izmantojat WatchTower vai mehānismu, kas automātiski veic servera lietojumprogrammas atjaunināšanu.",
"version_announcement_overlay_title": "Pieejama jauna servera versija 🎉",
"version_history": "Versiju vēsture",
"version_history_item": "{version} uzstādīta {date}",
"video": "Videoklips",
@@ -912,11 +1415,16 @@
"view_links": "",
"view_next_asset": "",
"view_previous_asset": "",
"viewer_remove_from_stack": "Noņemt no Steka",
"viewer_stack_use_as_main_asset": "Izmantot kā Galveno Aktīvu",
"viewer_unstack": "At-Stekot",
"waiting": "Gaida",
"week": "Nedēļa",
"welcome_to_immich": "",
"wifi_name": "WiFi Name",
"year": "Gads",
"years_ago": "Pirms {years, plural, one {# gada} other {# gadiem}}",
"yes": "Jā",
"your_wifi_name": "Your WiFi name",
"zoom_image": "Pietuvināt attēlu"
}

View File

@@ -4,6 +4,7 @@
"account_settings": "Бүртгэлийн тохиргоо",
"acknowledge": "Ойлголоо",
"action": "Үйлдэл",
"action_common_update": "Update",
"actions": "Үйлдлүүд",
"active": "Идэвхтэй",
"activity": "Үйлдлийн бүртгэл",
@@ -13,6 +14,7 @@
"add_a_location": "Байршил нэмэх",
"add_a_name": "Нэр өгөх",
"add_a_title": "Гарчиг оруулах",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "",
"add_import_path": "",
"add_location": "Байршил оруулах",
@@ -22,6 +24,8 @@
"add_photos": "Зураг нэмэх",
"add_to": "",
"add_to_album": "Цомогт оруулах",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"add_to_shared_album": "Нээлттэй албумд оруулах",
"added_to_archive": "Архивд оруулах",
"added_to_favorites": "Дуртай зурганд нэмэх",
@@ -229,9 +233,21 @@
"admin_password": "",
"administration": "Админ",
"advanced": "",
"advanced_settings_log_level_title": "Log level: {}",
"advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.",
"advanced_settings_prefer_remote_title": "Prefer remote images",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.",
"advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates",
"advanced_settings_tile_subtitle": "Advanced user's settings",
"advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting",
"advanced_settings_troubleshooting_title": "Troubleshooting",
"album_added": "Цомог нэмэгдлээ",
"album_added_notification_setting_description": "",
"album_cover_updated": "",
"album_info_card_backup_album_excluded": "EXCLUDED",
"album_info_card_backup_album_included": "INCLUDED",
"album_info_updated": "Цомгийн мэлээлэл шинэчлэгдлээ",
"album_leave": "Цомгоос гарах уу?",
"album_leave_confirmation": "Та {album} цомгоос гарахдаа итгэлтэй байна уу?",
@@ -239,8 +255,20 @@
"album_options": "Цомгийн тохиргоо",
"album_remove_user": "Хэрэглэгч хасах уу?",
"album_remove_user_confirmation": "{user} хэрэглэгчийг хасахдаа итгэлтэй байна уу?",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Shared",
"album_thumbnail_shared_by": "Shared by {}",
"album_updated": "",
"album_updated_setting_description": "",
"album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?",
"album_viewer_appbar_share_err_delete": "Failed to delete album",
"album_viewer_appbar_share_err_leave": "Failed to leave album",
"album_viewer_appbar_share_err_remove": "There are problems in removing assets from album",
"album_viewer_appbar_share_err_title": "Failed to change album title",
"album_viewer_appbar_share_leave": "Leave album",
"album_viewer_appbar_share_to": "Share To",
"album_viewer_page_share_add_users": "Add users",
"albums": "Цомгууд",
"all": "Бүгд",
"all_albums": "Бүх цомог",
@@ -252,53 +280,192 @@
"api_key_description": "Энэ утга зөвхөн ганц л удаа харагдана. Цонхоо хаахаас өмнө хуулж аваарай.",
"api_key_empty": "Таны API түлхүүрийн нэр хоосон байж болохгүй",
"api_keys": "API түлхүүрүүд",
"app_bar_signout_dialog_content": "Are you sure you want to sign out?",
"app_bar_signout_dialog_ok": "Yes",
"app_bar_signout_dialog_title": "Sign out",
"app_settings": "Апп-н тохиргоо",
"appears_in": "",
"archive": "Архив",
"archive_or_unarchive_photo": "Зургийг архивт хийх эсвэл гаргах",
"archive_page_no_archived_assets": "No archived assets found",
"archive_page_title": "Archive ({})",
"archive_size": "Архивын хэмжээ",
"archive_size_description": "Татах үеийн архивын хэмжээг тохируулах (GiB-р)",
"archived": "Archived",
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
"asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping",
"asset_added_to_album": "Цомогт нэмсэн",
"asset_adding_to_album": "Цомогт нэмж байна...",
"asset_list_group_by_sub_title": "Group by",
"asset_list_layout_settings_dynamic_layout_title": "Dynamic layout",
"asset_list_layout_settings_group_automatically": "Automatic",
"asset_list_layout_settings_group_by": "Group assets by",
"asset_list_layout_settings_group_by_month_day": "Month + day",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Photo grid layout settings",
"asset_list_settings_title": "Photo Grid",
"asset_offline": "",
"asset_restored_successfully": "Asset restored successfully",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"assets": "",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"authorized_devices": "",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
"backup_album_selection_page_select_albums": "Select albums",
"backup_album_selection_page_selection_info": "Selection Info",
"backup_album_selection_page_total_assets": "Total unique assets",
"backup_all": "All",
"backup_background_service_backup_failed_message": "Failed to backup assets. Retrying…",
"backup_background_service_connection_failed_message": "Failed to connect to the server. Retrying…",
"backup_background_service_current_upload_notification": "Uploading {}",
"backup_background_service_default_notification": "Checking for new assets…",
"backup_background_service_error_title": "Backup error",
"backup_background_service_in_progress_notification": "Backing up your assets…",
"backup_background_service_upload_failure_notification": "Failed to upload {}",
"backup_controller_page_albums": "Backup Albums",
"backup_controller_page_background_app_refresh_disabled_content": "Апп нээгээгүй байх үед нөөцлөлт хийх бол Settings > General > Background App Refresh хандаж идэвхижүүлнэ үү.",
"backup_controller_page_background_app_refresh_disabled_title": "Апп нээгээгүй байх үед нөөцлөлт идэвхигүй.",
"backup_controller_page_background_app_refresh_enable_button_text": "Тохиргоо хэсэгт очих",
"backup_controller_page_background_battery_info_link": "Show me how",
"backup_controller_page_background_battery_info_message": "For the best background backup experience, please disable any battery optimizations restricting background activity for Immich.\n\nSince this is device-specific, please lookup the required information for your device manufacturer.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Battery optimizations",
"backup_controller_page_background_charging": "Only while charging",
"backup_controller_page_background_configure_error": "Failed to configure the background service",
"backup_controller_page_background_delay": "Delay new assets backup: {}",
"backup_controller_page_background_description": "Turn on the background service to automatically backup any new assets without needing to open the app",
"backup_controller_page_background_is_off": "Automatic background backup is off",
"backup_controller_page_background_is_on": "Automatic background backup is on",
"backup_controller_page_background_turn_off": "Turn off background service",
"backup_controller_page_background_turn_on": "Turn on background service",
"backup_controller_page_background_wifi": "Only on WiFi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selected: ",
"backup_controller_page_backup_sub": "Backed up photos and videos",
"backup_controller_page_created": "Created on: {}",
"backup_controller_page_desc_backup": "Turn on foreground backup to automatically upload new assets to the server when opening the app.",
"backup_controller_page_excluded": "Excluded: ",
"backup_controller_page_failed": "Failed ({})",
"backup_controller_page_filename": "File name: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Backup Information",
"backup_controller_page_none_selected": "None selected",
"backup_controller_page_remainder": "Remainder",
"backup_controller_page_remainder_sub": "Remaining photos and videos to back up from selection",
"backup_controller_page_server_storage": "Server Storage",
"backup_controller_page_start_backup": "Start Backup",
"backup_controller_page_status_off": "Automatic foreground backup is off",
"backup_controller_page_status_on": "Automatic foreground backup is on",
"backup_controller_page_storage_format": "{} of {} used",
"backup_controller_page_to_backup": "Albums to be backed up",
"backup_controller_page_total_sub": "All unique photos and videos from selected albums",
"backup_controller_page_turn_off": "Turn off foreground backup",
"backup_controller_page_turn_on": "Turn on foreground backup",
"backup_controller_page_uploading_file_info": "Uploading file info",
"backup_err_only_album": "Cannot remove the only album",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Cancelled",
"backup_manual_in_progress": "Upload already in progress. Try after sometime",
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "",
"blurred_background": "",
"buy": "Immich худалдаж авах",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
"cache_settings_duplicated_assets_clear_button": "CLEAR",
"cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app",
"cache_settings_duplicated_assets_title": "Duplicated Assets ({})",
"cache_settings_image_cache_size": "Image cache size ({} assets)",
"cache_settings_statistics_album": "Library thumbnails",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "Full images",
"cache_settings_statistics_shared": "Shared album thumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cache usage",
"cache_settings_subtitle": "Control the caching behaviour of the Immich mobile application",
"cache_settings_thumbnail_size": "Thumbnail cache size ({} assets)",
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"camera": "Камер",
"camera_brand": "Камерын үйлдвэр",
"camera_model": "Камерын загвар",
"cancel": "Цуцлах",
"cancel_search": "Хайлт цуцлах",
"canceled": "Canceled",
"cannot_merge_people": "",
"cannot_update_the_description": "",
"change_date": "Огноо өөрчлөх",
"change_display_order": "Change display order",
"change_expiration_time": "",
"change_location": "Байршил өөрчлөх",
"change_name": "Нэр өөрчлөх",
"change_name_successfully": "Нэр амжилттай өөрчлөгдлөө",
"change_password": "Нууц үг өөрчлөх",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"change_your_password": "",
"changed_visibility_successfully": "",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "",
"city": "Хот",
"clear": "Цэвэрлэх",
"clear_all": "Бүгдийг цэвэрлэх",
"clear_message": "",
"clear_value": "",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"close": "",
"collapse_all": "",
"color_theme": "",
"comment_options": "",
"comments_are_disabled": "",
"common_create_new_album": "Create new album",
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
"completed": "Completed",
"confirm": "",
"confirm_admin_password": "",
"confirm_password": "",
"contain": "",
"context": "",
"continue": "",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
"control_bottom_app_bar_create_new_album": "Create new album",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
"control_bottom_app_bar_edit_location": "Edit Location",
"control_bottom_app_bar_edit_time": "Edit Date & Time",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Move to Trash",
"copied_image_to_clipboard": "",
"copy_error": "",
"copy_file_path": "",
@@ -312,33 +479,54 @@
"covers": "",
"create": "",
"create_album": "",
"create_album_page_untitled": "Untitled",
"create_library": "",
"create_link": "",
"create_link_to_share": "",
"create_new": "CREATE NEW",
"create_new_person": "",
"create_new_user": "",
"create_shared_album_page_share_add_assets": "ADD ASSETS",
"create_shared_album_page_share_select_photos": "Select Photos",
"create_user": "",
"created": "",
"crop": "Crop",
"curated_object_page_title": "Things",
"current_device": "",
"current_server_address": "Current server address",
"custom_locale": "",
"custom_locale_description": "",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "",
"date_after": "",
"date_and_time": "",
"date_before": "",
"date_format": "E, LLL d, y • h:mm a",
"date_range": "",
"day": "",
"default_locale": "",
"default_locale_description": "",
"delete": "",
"delete_album": "",
"delete_dialog_alert": "These items will be permanently deleted from Immich and from your device",
"delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server",
"delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device",
"delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server",
"delete_dialog_ok_force": "Delete Anyway",
"delete_dialog_title": "Delete Permanently",
"delete_key": "",
"delete_library": "",
"delete_link": "",
"delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only",
"delete_local_dialog_ok_force": "Delete Anyway",
"delete_shared_link": "",
"delete_shared_link_dialog_title": "Delete Shared Link",
"delete_user": "",
"deleted_shared_link": "",
"description": "",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Error updating description, check the log for more details",
"details": "",
"direction": "",
"disallow_edits": "",
@@ -351,7 +539,21 @@
"display_original_photos_setting_description": "",
"done": "",
"download": "",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "",
"downloading_media": "Downloading media",
"duration": "",
"edit_album": "",
"edit_avatar": "",
@@ -364,6 +566,7 @@
"edit_key": "",
"edit_link": "",
"edit_location": "",
"edit_location_dialog_title": "Location",
"edit_name": "",
"edit_people": "",
"edit_title": "",
@@ -371,12 +574,17 @@
"edited": "",
"editor": "",
"email": "",
"empty_folder": "This folder is empty",
"empty_trash": "Хогийн сав хоослох",
"enable": "",
"enabled": "",
"end_date": "",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "",
"error_change_sort_album": "Failed to change album sort order",
"error_loading_image": "",
"error_saving_image": "Error: {}",
"errors": {
"unable_to_add_album_users": "",
"unable_to_add_comment": "",
@@ -425,37 +633,90 @@
"unable_to_update_settings": "",
"unable_to_update_user": ""
},
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
"exif_bottom_sheet_people": "PEOPLE",
"exif_bottom_sheet_person_add_person": "Add name",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "",
"expand_all": "",
"experimental_settings_new_asset_list_subtitle": "Work in progress",
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"expire_after": "",
"expired": "",
"explore": "Эрж олох",
"extension": "",
"external_libraries": "",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"failed": "Failed",
"failed_to_load_assets": "Failed to load assets",
"failed_to_load_folder": "Failed to load folder",
"favorite": "",
"favorite_or_unfavorite_photo": "",
"favorites": "Дуртай",
"favorites_page_no_favorites": "No favorite assets found",
"feature_photo_updated": "",
"file_name": "",
"file_name_or_extension": "",
"filename": "",
"filetype": "",
"filter": "Filter",
"filter_people": "",
"fix_incorrect_match": "",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Folders",
"forward": "",
"general": "",
"get_help": "",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "",
"go_back": "",
"go_to_search": "",
"grant_permission": "Grant permission",
"group_albums_by": "",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"has_quota": "",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hide_gallery": "",
"hide_password": "",
"hide_person": "",
"home_page_add_to_album_conflicts": "Added {added} assets to album {album}. {failed} assets are already in the album.",
"home_page_add_to_album_err_local": "Can not add local assets to albums yet, skipping",
"home_page_add_to_album_success": "Added {added} assets to album {album}.",
"home_page_album_err_partner": "Can not add partner assets to an album yet, skipping",
"home_page_archive_err_local": "Can not archive local assets yet, skipping",
"home_page_archive_err_partner": "Can not archive partner assets, skipping",
"home_page_building_timeline": "Building the timeline",
"home_page_delete_err_partner": "Can not delete partner assets, skipping",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Can not favorite local assets yet, skipping",
"home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping",
"home_page_first_time_notice": "If this is your first time using the app, please make sure to choose a backup album(s) so that the timeline can populate photos and videos in the album(s).",
"home_page_share_err_local": "Can not share local assets via link, skipping",
"home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping",
"host": "",
"hour": "",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Download Success",
"image_viewer_page_state_provider_share_error": "Share Error",
"immich_logo": "",
"import_path": "",
"in_archive": "",
@@ -470,6 +731,8 @@
"night_at_midnight": "",
"night_at_twoam": ""
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Хүмүүс урих",
"invite_to_album": "",
"jobs": "",
@@ -483,6 +746,12 @@
"level": "",
"library": "Зургийн сан",
"library_options": "",
"library_page_device_albums": "Albums on Device",
"library_page_new_album": "New album",
"library_page_sort_asset_count": "Number of assets",
"library_page_sort_created": "Created date",
"library_page_sort_last_modified": "Last modified",
"library_page_sort_title": "Album title",
"light": "",
"link_options": "",
"link_to_oauth": "",
@@ -490,9 +759,39 @@
"list": "",
"loading": "",
"loading_search_results_failed": "",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude_error": "Enter a valid latitude",
"location_picker_latitude_hint": "Enter your latitude here",
"location_picker_longitude_error": "Enter a valid longitude",
"location_picker_longitude_hint": "Enter your longitude here",
"log_out": "",
"log_out_all_devices": "",
"login_disabled": "Login has been disabled",
"login_form_api_exception": "API exception. Please check the server URL and try again.",
"login_form_back_button_text": "Back",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Please specify http:// or https://",
"login_form_err_invalid_email": "Invalid Email",
"login_form_err_invalid_url": "Invalid URL",
"login_form_err_leading_whitespace": "Leading whitespace",
"login_form_err_trailing_whitespace": "Trailing whitespace",
"login_form_failed_get_oauth_server_config": "Error logging using OAuth, check server URL",
"login_form_failed_get_oauth_server_disable": "OAuth feature is not available on this server",
"login_form_failed_login": "Error logging you in, check server URL, email and password",
"login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.",
"login_form_password_hint": "password",
"login_form_save_login": "Stay logged in",
"login_form_server_empty": "Enter a server URL.",
"login_form_server_error": "Could not connect to server.",
"login_has_been_disabled": "",
"login_password_changed_error": "There was an error updating your password",
"login_password_changed_success": "Password updated successfully",
"look": "",
"loop_videos": "",
"loop_videos_description": "",
@@ -505,11 +804,38 @@
"manage_your_devices": "",
"manage_your_oauth_connection": "",
"map": "",
"map_assets_in_bound": "{} photo",
"map_assets_in_bounds": "{} photos",
"map_cannot_get_user_location": "Cannot get user's location",
"map_location_dialog_yes": "Yes",
"map_location_picker_page_use_location": "Use this location",
"map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?",
"map_location_service_disabled_title": "Location Service disabled",
"map_marker_with_image": "",
"map_no_assets_in_bounds": "No photos in this area",
"map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?",
"map_no_location_permission_title": "Location Permission denied",
"map_settings": "",
"map_settings_dark_mode": "Dark mode",
"map_settings_date_range_option_day": "Past 24 hours",
"map_settings_date_range_option_days": "Past {} days",
"map_settings_date_range_option_year": "Past year",
"map_settings_date_range_option_years": "Past {} years",
"map_settings_dialog_title": "Map Settings",
"map_settings_include_show_archived": "Include Archived",
"map_settings_include_show_partners": "Include Partners",
"map_settings_only_show_favorites": "Show Favorite Only",
"map_settings_theme_settings": "Map Theme",
"map_zoom_to_see_photos": "Zoom out to see photos",
"media_type": "",
"memories": "",
"memories_all_caught_up": "All caught up",
"memories_check_back_tomorrow": "Check back tomorrow for more memories",
"memories_setting_description": "",
"memories_start_over": "Start Over",
"memories_swipe_to_close": "Swipe up to close",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"menu": "",
"merge": "",
"merge_people": "",
@@ -519,11 +845,16 @@
"missing": "",
"model": "",
"month": "",
"monthly_title_text_date_format": "MMMM y",
"more": "",
"moved_to_trash": "",
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "",
"name": "",
"name_or_nickname": "",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "",
"new_api_key": "",
"new_password": "",
@@ -536,6 +867,7 @@
"no_albums_message": "",
"no_archived_assets_message": "",
"no_assets_message": "Энд дарж та эхний зургаа хуулж үзэх үү",
"no_assets_to_show": "No assets to show",
"no_exif_info_available": "",
"no_explore_results_message": "Зураг хуулж оруулсаны дараа ашиглах боломжтой болно.",
"no_favorites_message": "",
@@ -545,7 +877,12 @@
"no_results": "",
"no_shared_albums_message": "",
"not_in_any_album": "",
"not_selected": "Not selected",
"notes": "",
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
"notification_permission_list_tile_content": "Мэдэгдэл нээх эрх өгнө үү.\n",
"notification_permission_list_tile_enable_button": "Мэдэгдэл нээх",
"notification_permission_list_tile_title": "Мэдэгдлийн эрх",
"notification_toggle_setting_description": "",
"notifications": "",
"notifications_setting_description": "",
@@ -553,6 +890,7 @@
"offline": "",
"ok": "",
"oldest_first": "",
"on_this_device": "On this device",
"online": "",
"only_favorites": "Зөвхөн дуртай зурагнууд",
"open_the_search_filters": "",
@@ -563,6 +901,14 @@
"other_variables": "",
"owned": "",
"owner": "",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_empty_message": "Your photos are not yet shared with any partner.",
"partner_page_no_more_users": "No more users to add",
"partner_page_partner_add_failed": "Failed to add partner",
"partner_page_select_partner": "Select partner",
"partner_page_shared_to_title": "Shared to",
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
"partner_sharing": "",
"partners": "",
"password": "",
@@ -586,6 +932,14 @@
"permanent_deletion_warning_setting_description": "",
"permanently_delete": "",
"permanently_deleted_asset": "",
"permission_onboarding_back": "Back",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
"permission_onboarding_go_to_settings": "Go to settings",
"permission_onboarding_permission_denied": "Permission denied. To use Immich, grant photo and video permissions in Settings.",
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"photos": "",
"photos_from_previous_years": "",
"pick_a_location": "",
@@ -596,18 +950,29 @@
"play_motion_photo": "",
"play_or_pause_video": "",
"port": "",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"preset": "",
"preview": "",
"previous": "",
"previous_memory": "",
"previous_or_next_photo": "",
"primary": "",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
"profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.",
"profile_drawer_client_server_up_to_date": "Client and Server are up-to-date",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server is out of date. Please update to the latest major version.",
"profile_drawer_server_out_of_date_minor": "Server is out of date. Please update to the latest minor version.",
"profile_picture_set": "",
"public_share": "",
"reaction_options": "",
"read_changelog": "",
"recent": "",
"recent_searches": "",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"refresh": "",
"refreshed": "",
"refreshes_every_file": "",
@@ -631,9 +996,11 @@
"review_duplicates": "",
"role": "",
"save": "",
"save_to_gallery": "Save to gallery",
"saved_profile": "",
"saved_settings": "",
"say_something": "",
"scaffold_body_error_occurred": "Error occurred",
"scan_all_libraries": "",
"scan_settings": "",
"search": "",
@@ -643,10 +1010,39 @@
"search_camera_model": "",
"search_city": "",
"search_country": "",
"search_filter_apply": "Apply filter",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for_existing_person": "",
"search_no_more_result": "No more results",
"search_no_result": "No results found, try a different search term or combination",
"search_page_categories": "Categories",
"search_page_motion_photos": "Motion Photos",
"search_page_no_objects": "No Objects Info Available",
"search_page_no_places": "No Places Info Available",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Things",
"search_page_view_all_button": "View all",
"search_page_your_activity": "Your activity",
"search_page_your_map": "Your Map",
"search_people": "",
"search_places": "Байршил хайх",
"search_result_page_new_search_hint": "New Search",
"search_state": "",
"search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ",
"search_suggestion_list_smart_search_hint_2": "m:your-search-term",
"search_timezone": "",
"search_type": "",
"search_your_photos": "Зурагнуудаасаа хайлт хийх",
@@ -660,8 +1056,12 @@
"select_library_owner": "",
"select_new_face": "",
"select_photos": "",
"select_user_for_sharing_page_err_album": "Failed to create album",
"selected": "",
"send_message": "",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_server_url": "Server URL",
"server_online": "Сервер Онлайн",
"server_stats": "",
"set": "",
@@ -670,15 +1070,84 @@
"set_date_of_birth": "",
"set_profile_picture": "",
"set_slideshow_to_fullscreen": "",
"setting_image_viewer_help": "The detail viewer loads the small thumbnail first, then loads the medium-size preview (if enabled), finally loads the original (if enabled).",
"setting_image_viewer_original_subtitle": "Enable to load the original full-resolution image (large!). Disable to reduce data usage (both network and on device cache).",
"setting_image_viewer_original_title": "Load original image",
"setting_image_viewer_preview_subtitle": "Enable to load a medium-resolution image. Disable to either directly load the original or only use the thumbnail.",
"setting_image_viewer_preview_title": "Load preview image",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Notify background backup failures: {}",
"setting_notifications_notify_hours": "{} hours",
"setting_notifications_notify_immediately": "immediately",
"setting_notifications_notify_minutes": "{} minutes",
"setting_notifications_notify_never": "never",
"setting_notifications_notify_seconds": "{} seconds",
"setting_notifications_single_progress_subtitle": "Detailed upload progress information per asset",
"setting_notifications_single_progress_title": "Show background backup detail progress",
"setting_notifications_subtitle": "Adjust your notification preferences",
"setting_notifications_total_progress_subtitle": "Overall upload progress (done/total assets)",
"setting_notifications_total_progress_title": "Show background backup total progress",
"setting_video_viewer_looping_title": "Looping",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Тохиргоо",
"settings_require_restart": "Please restart Immich to apply this setting",
"settings_saved": "",
"share": "",
"share_add_photos": "Add photos",
"share_assets_selected": "{} selected",
"share_dialog_preparing": "Preparing...",
"shared": "",
"shared_album_activities_input_disable": "Comment is disabled",
"shared_album_activity_remove_content": "Do you want to delete this activity?",
"shared_album_activity_remove_title": "Delete Activity",
"shared_album_section_people_action_error": "Error leaving/removing from album",
"shared_album_section_people_action_leave": "Remove user from album",
"shared_album_section_people_action_remove_user": "Remove user from album",
"shared_album_section_people_title": "PEOPLE",
"shared_by": "",
"shared_by_you": "",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Shared Links",
"shared_link_clipboard_copied_massage": "Copied to clipboard",
"shared_link_clipboard_text": "Link: {}\nPassword: {}",
"shared_link_create_error": "Error while creating shared link",
"shared_link_edit_description_hint": "Enter the share description",
"shared_link_edit_expire_after_option_day": "1 day",
"shared_link_edit_expire_after_option_days": "{} days",
"shared_link_edit_expire_after_option_hour": "1 hour",
"shared_link_edit_expire_after_option_hours": "{} hours",
"shared_link_edit_expire_after_option_minute": "1 minute",
"shared_link_edit_expire_after_option_minutes": "{} minutes",
"shared_link_edit_expire_after_option_months": "{} months",
"shared_link_edit_expire_after_option_year": "{} year",
"shared_link_edit_password_hint": "Enter the share password",
"shared_link_edit_submit_button": "Update link",
"shared_link_error_server_url_fetch": "Cannot fetch the server url",
"shared_link_expires_day": "Expires in {} day",
"shared_link_expires_days": "Expires in {} days",
"shared_link_expires_hour": "Expires in {} hour",
"shared_link_expires_hours": "Expires in {} hours",
"shared_link_expires_minute": "Expires in {} minute",
"shared_link_expires_minutes": "Expires in {} minutes",
"shared_link_expires_never": "Expires ∞",
"shared_link_expires_second": "Expires in {} second",
"shared_link_expires_seconds": "Expires in {} seconds",
"shared_link_individual_shared": "Individual shared",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Manage Shared links",
"shared_links": "",
"shared_with_me": "Shared with me",
"sharing": "Хуваалцах",
"sharing_page_album": "Shared albums",
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
"sharing_page_empty_list": "EMPTY LIST",
"sharing_sidebar_description": "",
"sharing_silver_appbar_create_shared_album": "New shared album",
"sharing_silver_appbar_share_partner": "Share with partner",
"show_album_options": "",
"show_file_location": "",
"show_gallery": "",
@@ -715,10 +1184,26 @@
"sunrise_on_the_beach": "",
"swap_merge_direction": "",
"sync": "",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"template": "",
"theme": "",
"theme_selection": "",
"theme_selection_description": "",
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
"theme_setting_image_viewer_quality_title": "Image viewer quality",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automatic (Follow system setting)",
"theme_setting_theme_subtitle": "Choose the app's theme setting",
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
"time_based_memories": "",
"timezone": "",
"toggle_settings": "",
@@ -726,7 +1211,15 @@
"total_usage": "",
"trash": "Хогийн сав",
"trash_all": "",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "",
"trash_page_delete_all": "Delete All",
"trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich",
"trash_page_info": "Trashed items will be permanently deleted after {} days",
"trash_page_no_assets": "No trashed assets",
"trash_page_restore_all": "Restore All",
"trash_page_select_assets_btn": "Select assets",
"trash_page_title": "Trash ({})",
"type": "",
"unarchive": "",
"unfavorite": "",
@@ -741,8 +1234,13 @@
"updated_password": "",
"upload": "Зураг хуулах",
"upload_concurrency": "",
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_title": "Upload Asset",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "",
"usage": "",
"use_current_connection": "use current connection",
"user": "",
"user_id": "",
"user_usage_detail": "",
@@ -750,8 +1248,14 @@
"users": "",
"utilities": "Багаж хэрэгсэл",
"validate": "",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "",
"version": "",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available 🎉",
"video": "",
"video_hover_setting_description": "",
"videos": "",
@@ -760,14 +1264,19 @@
"view_links": "",
"view_next_asset": "",
"view_previous_asset": "",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack",
"waiting": "Хүлээж байна",
"warning": "Анхааруулга",
"week": "Долоо хоног",
"welcome": "Тавтай морил",
"welcome_to_immich": "Тавтай морилно уу",
"wifi_name": "WiFi Name",
"year": "Он",
"years_ago": "{years, plural, one {# year} other {# years}} өмнө",
"yes": "Тийм",
"you_dont_have_any_shared_links": "Танд хуваалцсан холбоос алга",
"your_wifi_name": "Your WiFi name",
"zoom_image": "Зургийг томруулж харах"
}

View File

@@ -65,6 +65,11 @@
"forcing_refresh_library_files": "Memaksa muat semula semua fail perpustakaan",
"image_format": "Format",
"image_format_description": "WebP menghasilkan fail yang lebih kecil daripada JPEG, tetapi lebih perlahan untuk mengekod.",
"image_fullsize_description": "Imej bersaiz penuh dengan metadata yang dilucutkan, digunakan apabila dizum masuk",
"image_fullsize_enabled": "Dayakan penjanaan imej bersaiz penuh",
"image_fullsize_enabled_description": "Hasilkan imej bersaiz penuh untuk format tidak mesra web. Apabila \"Lebih suka pratonton terbenam\" didayakan, pratonton terbenam digunakan secara langsung tanpa penukaran. Tidak menjejaskan format mesra web seperti JPEG.",
"image_fullsize_quality_description": "Kualiti imej bersaiz penuh dari 1-100. Lebih tinggi adalah lebih baik, tetapi menghasilkan fail yang lebih besar.",
"image_fullsize_title": "Tetapan Imej bersaiz penuh",
"image_prefer_embedded_preview": "Cadangkan pratonton terbenam",
"image_prefer_embedded_preview_setting_description": "Gunakan pratonton terbenam dalam foto RAW sebagai input kepada pemprosesan imej apabila tersedia. Cara ini boleh menghasilkan warna yang lebih tepat untuk sesetengah imej, tetapi kualiti pratonton bergantung pada kamera dan imej mungkin mempunyai lebih banyak artifak mampatan.",
"image_prefer_wide_gamut": "Cadangkan warna gamut yang luas",
@@ -159,7 +164,6 @@
"no_pattern_added": "Tiada corak ditambah",
"note_apply_storage_label_previous_assets": "Nota: Untuk menggunakan Label Storan pada aset yang dimuat naik sebelum ini, jalankan",
"note_cannot_be_changed_later": "NOTA: Ini tidak boleh diubah kemudian!",
"note_unlimited_quota": "Nota: Masukkan 0 untuk kuota tanpa had",
"notification_email_from_address": "Dari alamat",
"notification_email_from_address_description": "Alamat e-mel penghantar, sebagai contoh: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Hos e-mel pelayan (cth. smtp.immich.app)",
@@ -321,7 +325,8 @@
"transcoding_threads": "Benang",
"transcoding_threads_description": "Nilai yang lebih tinggi membawa kepada pengekodan yang lebih pantas, tetapi meninggalkan lebih sedikit ruang untuk pemproses tugas lain semasa aktif. Nilai ini tidak boleh lebih daripada bilangan teras CPU. Memaksimumkan penggunaan jika ditetapkan kepada 0.",
"transcoding_tone_mapping": "Pemetaan nada",
"transcoding_tone_mapping_description": "Percubaan untuk mengekalkan penampilan video HDR apabila ditukar kepada SDR. Setiap algoritma membuat pertukaran yang berbeza untuk warna, perincian dan kecerahan. Hable mengekalkan perincian, Mobius mengekalkan warna, dan Reinhard mengekalkan kecerahan."
"transcoding_tone_mapping_description": "Percubaan untuk mengekalkan penampilan video HDR apabila ditukar kepada SDR. Setiap algoritma membuat pertukaran yang berbeza untuk warna, perincian dan kecerahan. Hable mengekalkan perincian, Mobius mengekalkan warna, dan Reinhard mengekalkan kecerahan.",
"transcoding_transcode_policy": "Dasar transkod"
},
"deduplication_criteria_1": "Saiz imej dalam bait",
"deduplication_criteria_2": "Kiraan data EXIF",

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Accountinstellingen",
"acknowledge": "Begrepen",
"action": "Actie",
"action_common_update": "Bijwerken",
"actions": "Acties",
"active": "Actief",
"activity": "Activiteit",
@@ -13,6 +14,7 @@
"add_a_location": "Locatie toevoegen",
"add_a_name": "Naam toevoegen",
"add_a_title": "Titel toevoegen",
"add_endpoint": "Server toevoegen",
"add_exclusion_pattern": "Uitsluitingspatroon toevoegen",
"add_import_path": "Import-pad toevoegen",
"add_location": "Locatie toevoegen",
@@ -22,6 +24,8 @@
"add_photos": "Foto's toevoegen",
"add_to": "Toevoegen aan…",
"add_to_album": "Aan album toevoegen",
"add_to_album_bottom_sheet_added": "Toegevoegd aan {album}",
"add_to_album_bottom_sheet_already_exists": "Staat al in {album}",
"add_to_shared_album": "Aan gedeeld album toevoegen",
"add_url": "URL toevoegen",
"added_to_archive": "Toegevoegd aan archief",
@@ -167,7 +171,6 @@
"no_pattern_added": "Geen patroon toegevoegd",
"note_apply_storage_label_previous_assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade assets, voer de volgende taak uit",
"note_cannot_be_changed_later": "LET OP: Dit kan later niet meer worden gewijzigd!",
"note_unlimited_quota": "Opmerking: voer 0 in voor onbeperkt",
"notification_email_from_address": "Adres afzender",
"notification_email_from_address_description": "E-mailadres van de afzender, bijvoorbeeld: \"Immich Foto Server <noreply@example.com>\"",
"notification_email_host_description": "Host van de e-mailserver (bijv. smtp.immich.app)",
@@ -368,6 +371,19 @@
"admin_password": "Beheerder wachtwoord",
"administration": "Beheer",
"advanced": "Geavanceerd",
"advanced_settings_enable_alternate_media_filter_subtitle": "Gebruik deze optie om media te filteren tijdens de synchronisatie op basis van alternatieve criteria. Gebruik dit enkel als de app problemen heeft met het detecteren van albums.",
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTEEL] Gebruik een alternatieve album synchronisatie filter",
"advanced_settings_log_level_title": "Log niveau: {}",
"advanced_settings_prefer_remote_subtitle": "Sommige apparaten zijn traag met het laden van afbeeldingen die lokaal zijn opgeslagen op het apparaat. Activeer deze instelling om in plaats daarvan externe afbeeldingen te laden.",
"advanced_settings_prefer_remote_title": "Externe afbeeldingen laden",
"advanced_settings_proxy_headers_subtitle": "Definieer proxy headers die Immich bij elk netwerkverzoek moet verzenden",
"advanced_settings_proxy_headers_title": "Proxy headers",
"advanced_settings_self_signed_ssl_subtitle": "Slaat SSL-certificaatverificatie voor de connectie met de server over. Deze optie is vereist voor zelfondertekende certificaten",
"advanced_settings_self_signed_ssl_title": "Zelfondertekende SSL-certificaten toestaan",
"advanced_settings_sync_remote_deletions_title": "Synchroniseer verwijderingen op afstand [EXPERIMENTEEL]",
"advanced_settings_tile_subtitle": "Geavanceerde gebruikersinstellingen",
"advanced_settings_troubleshooting_subtitle": "Schakel extra functies voor probleemoplossing in ",
"advanced_settings_troubleshooting_title": "Probleemoplossing",
"age_months": "Leeftijd {months, plural, one {# maand} other {# maanden}}",
"age_year_months": "Leeftijd 1 jaar, {months, plural, one {# maand} other {# maanden}}",
"age_years": "{years, plural, other {Leeftijd #}}",
@@ -376,6 +392,8 @@
"album_cover_updated": "Album cover is bijgewerkt",
"album_delete_confirmation": "Weet je zeker dat je het album {album} wilt verwijderen?",
"album_delete_confirmation_description": "Als dit album gedeeld is, hebben andere gebruikers er geen toegang meer toe.",
"album_info_card_backup_album_excluded": "UITGESLOTEN",
"album_info_card_backup_album_included": "INBEGREPEN",
"album_info_updated": "Albumgegevens bijgewerkt",
"album_leave": "Album verlaten?",
"album_leave_confirmation": "Weet je zeker dat je {album} wilt verlaten?",
@@ -384,10 +402,22 @@
"album_remove_user": "Gebruiker verwijderen?",
"album_remove_user_confirmation": "Weet je zeker dat je {user} wilt verwijderen?",
"album_share_no_users": "Het lijkt erop dat je dit album met alle gebruikers hebt gedeeld, of dat je geen gebruikers hebt om mee te delen.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Gedeeld",
"album_thumbnail_shared_by": "Gedeeld door {}",
"album_updated": "Album bijgewerkt",
"album_updated_setting_description": "Ontvang een e-mailmelding wanneer een gedeeld album nieuwe assets heeft",
"album_user_left": "{album} verlaten",
"album_user_removed": "{user} verwijderd",
"album_viewer_appbar_delete_confirm": "Weet je zeker dat je dit album uit je account wilt verwijderen?",
"album_viewer_appbar_share_err_delete": "Verwijderen album mislukt",
"album_viewer_appbar_share_err_leave": "Verlaten album mislukt",
"album_viewer_appbar_share_err_remove": "Er gaat iets mis bij het verwijderen van assets uit het album",
"album_viewer_appbar_share_err_title": "Albumtitel wijzigen mislukt",
"album_viewer_appbar_share_leave": "Verlaat album",
"album_viewer_appbar_share_to": "Delen via",
"album_viewer_page_share_add_users": "Gebruikers toevoegen",
"album_with_link_access": "Iedereen met de link kan de foto's en mensen in dit album bekijken.",
"albums": "Albums",
"albums_count": "{count, plural, one {{count, number} album} other {{count, number} albums}}",
@@ -405,42 +435,133 @@
"api_key_description": "Deze waarde wordt slechts één keer getoond. Zorg ervoor dat je deze kopieert voordat je het venster sluit.",
"api_key_empty": "De naam van uw API key mag niet leeg zijn",
"api_keys": "API keys",
"app_bar_signout_dialog_content": "Weet je zeker dat je wilt uitloggen?",
"app_bar_signout_dialog_ok": "Ja",
"app_bar_signout_dialog_title": "Log uit",
"app_settings": "App instellingen",
"appears_in": "Komt voor in",
"archive": "Archief",
"archive_or_unarchive_photo": "Foto archiveren of uit het archief halen",
"archive_page_no_archived_assets": "Geen gearchiveerde assets gevonden",
"archive_page_title": "Archief ({})",
"archive_size": "Archiefgrootte",
"archive_size_description": "Configureer de archiefgrootte voor downloads (in GiB)",
"archived": "Gearchiveerd",
"archived_count": "{count, plural, other {# gearchiveerd}}",
"are_these_the_same_person": "Zijn dit dezelfde personen?",
"are_you_sure_to_do_this": "Weet je zeker dat je dit wilt doen?",
"asset_action_delete_err_read_only": "Kan alleen-lezen asset(s) niet verwijderen, overslaan",
"asset_action_share_err_offline": "Kan offline asset(s) niet ophalen, overslaan",
"asset_added_to_album": "Toegevoegd aan album",
"asset_adding_to_album": "Toevoegen aan album…",
"asset_description_updated": "Asset beschrijving is bijgewerkt",
"asset_filename_is_offline": "Asset {filename} is offline",
"asset_has_unassigned_faces": "Asset heeft niet-toegewezen gezichten",
"asset_hashing": "Hashen…",
"asset_list_group_by_sub_title": "Groepeer op",
"asset_list_layout_settings_dynamic_layout_title": "Dynamische layout",
"asset_list_layout_settings_group_automatically": "Automatisch",
"asset_list_layout_settings_group_by": "Groepeer assets per",
"asset_list_layout_settings_group_by_month_day": "Maand + dag",
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Fotorasterlayoutinstellingen",
"asset_list_settings_title": "Fotoraster",
"asset_offline": "Asset offline",
"asset_offline_description": "Deze externe asset is niet meer op de schijf te vinden. Neem contact op met de Immich beheerder voor hulp.",
"asset_restored_successfully": "Asset succesvol hersteld",
"asset_skipped": "Overgeslagen",
"asset_skipped_in_trash": "In prullenbak",
"asset_uploaded": "Geüpload",
"asset_uploading": "Uploaden…",
"asset_viewer_settings_subtitle": "Beheer je instellingen voor gallerijweergave",
"asset_viewer_settings_title": "Foto weergave",
"assets": "Assets",
"assets_added_count": "{count, plural, one {# asset} other {# assets}} toegevoegd",
"assets_added_to_album_count": "{count, plural, one {# asset} other {# assets}} aan het album toegevoegd",
"assets_added_to_name_count": "{count, plural, one {# asset} other {# assets}} toegevoegd aan {hasName, select, true {<b>{name}</b>} other {nieuw album}}",
"assets_count": "{count, plural, one {# asset} other {# assets}}",
"assets_deleted_permanently": "{} asset(s) permanent verwijderd",
"assets_deleted_permanently_from_server": "{} asset(s) permanent verwijderd van de Immich server",
"assets_moved_to_trash_count": "{count, plural, one {# asset} other {# assets}} verplaatst naar prullenbak",
"assets_permanently_deleted_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} verwijderd",
"assets_removed_permanently_from_device": "{} asset(s) permanent verwijderd van je apparaat",
"assets_restore_confirmation": "Weet je zeker dat je alle verwijderde assets wilt herstellen? Je kunt deze actie niet ongedaan maken! Offline assets kunnen op deze manier niet worden hersteld.",
"assets_restored_count": "{count, plural, one {# asset} other {# assets}} hersteld",
"assets_restored_successfully": "{} asset(s) succesvol hersteld",
"assets_trashed": "{} asset(s) naar de prullenbak verplaatst",
"assets_trashed_count": "{count, plural, one {# asset} other {# assets}} naar prullenbak verplaatst",
"assets_trashed_from_server": "{} asset(s) naar de prullenbak verplaatst op de Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets waren}} al onderdeel van het album",
"authorized_devices": "Geautoriseerde apparaten",
"automatic_endpoint_switching_subtitle": "Verbind lokaal bij het opgegeven wifi-netwerk en gebruik anders de externe url",
"automatic_endpoint_switching_title": "Automatische serverwissel",
"back": "Terug",
"back_close_deselect": "Terug, sluiten of deselecteren",
"background_location_permission": "Achtergrond locatie toestemming",
"background_location_permission_content": "Om van netwerk te wisselen terwijl de app op de achtergrond draait, heeft Immich *altijd* toegang tot de exacte locatie nodig om de naam van het wifi-netwerk te kunnen lezen",
"backup_album_selection_page_albums_device": "Albums op apparaat ({})",
"backup_album_selection_page_albums_tap": "Tik om in te voegen, dubbel tik om uit te sluiten",
"backup_album_selection_page_assets_scatter": "Assets kunnen over verschillende albums verdeeld zijn, dus albums kunnen inbegrepen of uitgesloten zijn van het backup proces.",
"backup_album_selection_page_select_albums": "Albums selecteren",
"backup_album_selection_page_selection_info": "Selectie info",
"backup_album_selection_page_total_assets": "Totaal unieke assets",
"backup_all": "Alle",
"backup_background_service_backup_failed_message": "Fout bij back-uppen assets. Opnieuw proberen…",
"backup_background_service_connection_failed_message": "Fout bij verbinden server. Opnieuw proberen…",
"backup_background_service_current_upload_notification": "Uploaden {}",
"backup_background_service_default_notification": "Controleren op nieuwe assets…",
"backup_background_service_error_title": "Backupfout",
"backup_background_service_in_progress_notification": "Back-up van assets maken…",
"backup_background_service_upload_failure_notification": "Fout bij upload {}",
"backup_controller_page_albums": "Back-up albums",
"backup_controller_page_background_app_refresh_disabled_content": "Schakel verversen op de achtergrond in via Instellingen > Algemeen > Ververs op achtergrond, om back-ups op de achtergrond te maken.",
"backup_controller_page_background_app_refresh_disabled_title": "Verversen op achtergrond uitgeschakeld",
"backup_controller_page_background_app_refresh_enable_button_text": "Ga naar instellingen",
"backup_controller_page_background_battery_info_link": "Laat zien hoe",
"backup_controller_page_background_battery_info_message": "Voor de beste back-upervaring, schakel je alle batterijoptimalisaties uit omdat deze op-de-achtergrondactiviteiten van Immich beperken.\n\nAangezien dit apparaatspecifiek is, zoek de vereiste informatie op voor de fabrikant van je apparaat.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Batterijoptimalisaties",
"backup_controller_page_background_charging": "Alleen tijdens opladen",
"backup_controller_page_background_configure_error": "Achtergrondserviceconfiguratie mislukt",
"backup_controller_page_background_delay": "Back-upvertraging nieuwe assets: {}",
"backup_controller_page_background_description": "Schakel de achtergrondservice in om automatisch een back-up te maken van nieuwe assets zonder de app te hoeven openen",
"backup_controller_page_background_is_off": "Automatische achtergrond back-up staat uit",
"backup_controller_page_background_is_on": "Automatische achtergrond back-up staat aan",
"backup_controller_page_background_turn_off": "Achtergrondservice uitzetten",
"backup_controller_page_background_turn_on": "Achtergrondservice aanzetten",
"backup_controller_page_background_wifi": "Alleen op WiFi",
"backup_controller_page_backup": "Back-up",
"backup_controller_page_backup_selected": "Geselecteerd: ",
"backup_controller_page_backup_sub": "Geback-upte foto's en video's",
"backup_controller_page_created": "Gemaakt op: {}",
"backup_controller_page_desc_backup": "Schakel back-up op de voorgrond in om automatisch nieuwe assets naar de server te uploaden bij het openen van de app.",
"backup_controller_page_excluded": "Uitgezonderd: ",
"backup_controller_page_failed": "Mislukt ({})",
"backup_controller_page_filename": "Bestandsnaam: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Back-up informatie",
"backup_controller_page_none_selected": "Geen geselecteerd",
"backup_controller_page_remainder": "Resterend",
"backup_controller_page_remainder_sub": "Resterende foto's en video's om een back-up van te maken uit selectie",
"backup_controller_page_server_storage": "Serveropslag",
"backup_controller_page_start_backup": "Back-up uitvoeren",
"backup_controller_page_status_off": "Automatische back-up op de voorgrond staat uit",
"backup_controller_page_status_on": "Automatische back-up op de voorgrond staat aan",
"backup_controller_page_storage_format": "{} van {} gebruikt",
"backup_controller_page_to_backup": "Albums om een back-up van te maken",
"backup_controller_page_total_sub": "Alle unieke foto's en video's uit geselecteerde albums",
"backup_controller_page_turn_off": "Back-up op de voorgrond uitzetten",
"backup_controller_page_turn_on": "Back-up op de voorgrond aanzetten",
"backup_controller_page_uploading_file_info": "Bestandsgegevens uploaden",
"backup_err_only_album": "Kan het enige album niet verwijderen",
"backup_info_card_assets": "assets",
"backup_manual_cancelled": "Geannuleerd",
"backup_manual_in_progress": "Het uploaden is al bezig. Probeer het na een tijdje",
"backup_manual_success": "Succes",
"backup_manual_title": "Uploadstatus",
"backup_options_page_title": "Back-up instellingen",
"backup_setting_subtitle": "Beheer achtergrond en voorgrond uploadinstellingen",
"backward": "Achteruit",
"birthdate_saved": "Geboortedatum succesvol opgeslagen",
"birthdate_set_description": "De geboortedatum wordt gebruikt om de leeftijd van deze persoon op het moment van de foto te berekenen.",
@@ -452,24 +573,52 @@
"bulk_keep_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} wilt behouden? Dit zal alle groepen met duplicaten oplossen zonder iets te verwijderen.",
"bulk_trash_duplicates_confirmation": "Weet je zeker dat je {count, plural, one {# duplicate asset} other {# duplicate assets}} in bulk naar de prullenbak wilt verplaatsen? Dit zal de grootste asset van elke groep behouden en alle andere duplicaten naar de prullenbak verplaatsen.",
"buy": "Immich kopen",
"cache_settings_album_thumbnails": "Thumbnails bibliotheekpagina ({} assets)",
"cache_settings_clear_cache_button": "Cache wissen",
"cache_settings_clear_cache_button_title": "Wist de cache van de app. Dit zal de presentaties van de app aanzienlijk beïnvloeden totdat de cache opnieuw is opgebouwd.",
"cache_settings_duplicated_assets_clear_button": "MAAK VRIJ",
"cache_settings_duplicated_assets_subtitle": "Foto's en video's op de zwarte lijst van de app",
"cache_settings_duplicated_assets_title": "Gedupliceerde assets ({})",
"cache_settings_image_cache_size": "Grootte afbeeldingscache ({} assets)",
"cache_settings_statistics_album": "Bibliotheekthumbnails",
"cache_settings_statistics_assets": "{} assets ({})",
"cache_settings_statistics_full": "Volledige afbeeldingen",
"cache_settings_statistics_shared": "Gedeeld-albumthumbnails",
"cache_settings_statistics_thumbnail": "Thumbnails",
"cache_settings_statistics_title": "Cachegebruik",
"cache_settings_subtitle": "Beheer het cachegedrag van de Immich app",
"cache_settings_thumbnail_size": "Thumbnail-cachegrootte ({} assets)",
"cache_settings_tile_subtitle": "Beheer het gedrag van lokale opslag",
"cache_settings_tile_title": "Lokale opslag",
"cache_settings_title": "Cache-instellingen",
"camera": "Camera",
"camera_brand": "Cameramerk",
"camera_model": "Cameramodel",
"cancel": "Annuleren",
"cancel_search": "Zoeken annuleren",
"canceled": "Geannuleerd",
"cannot_merge_people": "Kan mensen niet samenvoegen",
"cannot_undo_this_action": "Je kunt deze actie niet ongedaan maken!",
"cannot_update_the_description": "Kan de beschrijving niet bijwerken",
"change_date": "Wijzig datum",
"change_display_order": "Weergavevolgorde wijzigen",
"change_expiration_time": "Verlooptijd wijzigen",
"change_location": "Locatie wijzigen",
"change_name": "Naam wijzigen",
"change_name_successfully": "Naam succesvol gewijzigd",
"change_password": "Wijzig wachtwoord",
"change_password_description": "Dit is de eerste keer dat je inlogt op het systeem of er is een verzoek gedaan om je wachtwoord te wijzigen. Voer hieronder het nieuwe wachtwoord in.",
"change_password_form_confirm_password": "Bevestig wachtwoord",
"change_password_form_description": "Hallo {name},\n\nDit is ofwel de eerste keer dat je inlogt, of er is een verzoek gedaan om je wachtwoord te wijzigen. Vul hieronder een nieuw wachtwoord in.",
"change_password_form_new_password": "Nieuw wachtwoord",
"change_password_form_password_mismatch": "Wachtwoorden komen niet overeen",
"change_password_form_reenter_new_password": "Vul het wachtwoord opnieuw in",
"change_your_password": "Wijzig je wachtwoord",
"changed_visibility_successfully": "Zichtbaarheid succesvol gewijzigd",
"check_all": "Controleer alle",
"check_corrupt_asset_backup": "Controleer op corrupte back-ups van assets",
"check_corrupt_asset_backup_button": "Controle uitvoeren",
"check_corrupt_asset_backup_description": "Voer deze controle alleen uit via wifi en nadat alle assets zijn geback-upt. De procedure kan een paar minuten duren.",
"check_logs": "Controleer logboek",
"choose_matching_people_to_merge": "Kies overeenkomende mensen om samen te voegen",
"city": "Stad",
@@ -478,6 +627,14 @@
"clear_all_recent_searches": "Wis alle recente zoekopdrachten",
"clear_message": "Bericht wissen",
"clear_value": "Waarde wissen",
"client_cert_dialog_msg_confirm": "Ok",
"client_cert_enter_password": "Voer wachtwoord in",
"client_cert_import": "Importeren",
"client_cert_import_success_msg": "Clientcertificaat is geïmporteerd",
"client_cert_invalid_msg": "Ongeldig certificaatbestand of verkeerd wachtwoord",
"client_cert_remove_msg": "Clientcertificaat is verwijderd",
"client_cert_subtitle": "Ondersteunt alleen PKCS12 (.p12, .pfx) formaat. Certificaat importeren/verwijderen is alleen beschikbaar vóór het inloggen",
"client_cert_title": "SSL clientcertificaat",
"clockwise": "Rechtsom",
"close": "Sluiten",
"collapse": "Inklappen",
@@ -488,6 +645,9 @@
"comment_options": "Opties voor opmerkingen",
"comments_and_likes": "Opmerkingen & likes",
"comments_are_disabled": "Opmerkingen zijn uitgeschakeld",
"common_create_new_album": "Nieuw album maken",
"common_server_error": "Controleer je netwerkverbinding, zorg ervoor dat de server bereikbaar is en de app/server versies compatibel zijn.",
"completed": "Voltooid",
"confirm": "Bevestigen",
"confirm_admin_password": "Bevestig beheerder wachtwoord",
"confirm_delete_face": "Weet je zeker dat je {name} gezicht wilt verwijderen uit de asset?",
@@ -497,6 +657,15 @@
"contain": "Bevat",
"context": "Context",
"continue": "Doorgaan",
"control_bottom_app_bar_album_info_shared": "{} items · Gedeeld",
"control_bottom_app_bar_create_new_album": "Nieuw album maken",
"control_bottom_app_bar_delete_from_immich": "Verwijderen van Immich",
"control_bottom_app_bar_delete_from_local": "Verwijderen van apparaat",
"control_bottom_app_bar_edit_location": "Locatie bewerken",
"control_bottom_app_bar_edit_time": "Datum & tijd bewerken",
"control_bottom_app_bar_share_link": "Link delen",
"control_bottom_app_bar_share_to": "Delen met",
"control_bottom_app_bar_trash_from_immich": "Naar prullenbak",
"copied_image_to_clipboard": "Afbeelding gekopieerd naar klembord.",
"copied_to_clipboard": "Gekopieerd naar klembord!",
"copy_error": "Fout bij kopiëren",
@@ -511,24 +680,34 @@
"covers": "Covers",
"create": "Aanmaken",
"create_album": "Album aanmaken",
"create_album_page_untitled": "Naamloos",
"create_library": "Maak bibliotheek",
"create_link": "Link maken",
"create_link_to_share": "Gedeelde link maken",
"create_link_to_share_description": "Laat iedereen met de link de geselecteerde foto(s) zien",
"create_new": "MAAK NIEUW",
"create_new_person": "Nieuwe persoon aanmaken",
"create_new_person_hint": "Geselecteerde assets toewijzen aan een nieuwe persoon",
"create_new_user": "Nieuwe gebruiker aanmaken",
"create_shared_album_page_share_add_assets": "ASSETS TOEVOEGEN",
"create_shared_album_page_share_select_photos": "Selecteer foto's",
"create_tag": "Tag aanmaken",
"create_tag_description": "Maak een nieuwe tag. Voor geneste tags, voer het volledige pad van de tag in, inclusief schuine strepen.",
"create_user": "Gebruiker aanmaken",
"created": "Aangemaakt",
"crop": "Bijsnijden",
"curated_object_page_title": "Dingen",
"current_device": "Huidig apparaat",
"current_server_address": "Huidige serveradres",
"custom_locale": "Aangepaste landinstelling",
"custom_locale_description": "Formatteer datums en getallen op basis van de taal en de regio",
"daily_title_text_date": "E dd MMM",
"daily_title_text_date_year": "E dd MMM yyyy",
"dark": "Donker",
"date_after": "Datum na",
"date_and_time": "Datum en tijd",
"date_before": "Datum voor",
"date_format": "E d LLL y • H:mm",
"date_of_birth_saved": "Geboortedatum succesvol opgeslagen",
"date_range": "Datumbereik",
"day": "Dag",
@@ -542,19 +721,30 @@
"delete": "Verwijderen",
"delete_album": "Album verwijderen",
"delete_api_key_prompt": "Weet je zeker dat je deze API key wilt verwijderen?",
"delete_dialog_alert": "Deze items zullen permanent verwijderd worden van Immich en je apparaat",
"delete_dialog_alert_local": "Deze items worden permanent verwijderd van je apparaat, maar blijven beschikbaar op de Immich server",
"delete_dialog_alert_local_non_backed_up": "Van sommige items is geen back-up gemaakt in Immich en zullen permanent van je apparaat worden verwijderd",
"delete_dialog_alert_remote": "Deze items worden permanent verwijderd van de Immich server",
"delete_dialog_ok_force": "Toch verwijderen",
"delete_dialog_title": "Permanent verwijderen",
"delete_duplicates_confirmation": "Weet je zeker dat je deze duplicaten permanent wilt verwijderen?",
"delete_face": "Gezicht verwijderen",
"delete_key": "Verwijder key",
"delete_library": "Verwijder bibliotheek",
"delete_link": "Verwijder link",
"delete_local_dialog_ok_backed_up_only": "Verwijder alleen met back-up",
"delete_local_dialog_ok_force": "Toch verwijderen",
"delete_others": "Andere verwijderen",
"delete_shared_link": "Verwijder gedeelde link",
"delete_shared_link_dialog_title": "Verwijder gedeelde link",
"delete_tag": "Tag verwijderen",
"delete_tag_confirmation_prompt": "Weet je zeker dat je de tag {tagName} wilt verwijderen?",
"delete_user": "Verwijder gebruiker",
"deleted_shared_link": "Gedeelde link verwijderd",
"deletes_missing_assets": "Verwijdert assets die ontbreken op de schijf",
"description": "Beschrijving",
"description_input_hint_text": "Beschrijving toevoegen...",
"description_input_submit_error": "Beschrijving bijwerken mislukt, controleer het logboek voor meer details",
"details": "Details",
"direction": "Richting",
"disabled": "Uitgeschakeld",
@@ -571,12 +761,26 @@
"documentation": "Documentatie",
"done": "Klaar",
"download": "Downloaden",
"download_canceled": "Download geannuleerd",
"download_complete": "Download voltooid",
"download_enqueue": "Download in wachtrij",
"download_error": "Fout bij downloaden",
"download_failed": "Download mislukt",
"download_filename": "bestand: {}",
"download_finished": "Download voltooid",
"download_include_embedded_motion_videos": "Ingesloten video's",
"download_include_embedded_motion_videos_description": "Voeg video's toe die ingesloten zijn in bewegende foto's als een apart bestand",
"download_notfound": "Download niet gevonden",
"download_paused": "Download gepauseerd",
"download_settings": "Downloaden",
"download_settings_description": "Beheer instellingen voor het downloaden van assets",
"download_started": "Download gestart",
"download_sucess": "Succesvol gedownload",
"download_sucess_android": "Het bestand is gedownload naar DCIM/Immich",
"download_waiting_to_retry": "Wachten om opnieuw te proberen",
"downloading": "Downloaden",
"downloading_asset_filename": "Asset {filename} downloaden",
"downloading_media": "Media aan het downloaden",
"drop_files_to_upload": "Zet bestanden ergens neer om ze te uploaden",
"duplicates": "Duplicaten",
"duplicates_description": "Kies voor iedere groep welke, indien aanwezig, duplicaten zijn",
@@ -593,6 +797,7 @@
"edit_key": "Key bewerken",
"edit_link": "Link bewerken",
"edit_location": "Locatie bewerken",
"edit_location_dialog_title": "Locatie",
"edit_name": "Naam bewerken",
"edit_people": "Mensen bewerken",
"edit_tag": "Tag bewerken",
@@ -605,14 +810,19 @@
"editor_crop_tool_h2_aspect_ratios": "Beeldverhoudingen",
"editor_crop_tool_h2_rotation": "Rotatie",
"email": "E-mailadres",
"empty_folder": "Deze map is leeg",
"empty_trash": "Prullenbak leegmaken",
"empty_trash_confirmation": "Weet je zeker dat je de prullenbak wilt legen? Hiermee worden alle assets in de prullenbak permanent uit Immich verwijderd.\nJe kunt deze actie niet ongedaan maken!",
"enable": "Inschakelen",
"enabled": "Ingeschakeld",
"end_date": "Einddatum",
"enqueued": "In de wachtrij",
"enter_wifi_name": "Voer de WiFi naam in",
"error": "Fout",
"error_change_sort_album": "Sorteervolgorde van album wijzigen mislukt",
"error_delete_face": "Fout bij verwijderen gezicht uit asset",
"error_loading_image": "Fout bij laden afbeelding",
"error_saving_image": "Fout: {}",
"error_title": "Fout - Er is iets misgegaan",
"errors": {
"cannot_navigate_next_asset": "Kan niet naar de volgende asset navigeren",
@@ -741,8 +951,21 @@
"unable_to_upload_file": "Kan bestand niet uploaden"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Beschrijving toevoegen...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATIE",
"exif_bottom_sheet_people": "MENSEN",
"exif_bottom_sheet_person_add_person": "Naam toevoegen",
"exif_bottom_sheet_person_age": "Leeftijd {}",
"exif_bottom_sheet_person_age_months": "Leeftijd {} maanden",
"exif_bottom_sheet_person_age_year_months": "Leeftijd 1 jaar, {} maanden",
"exif_bottom_sheet_person_age_years": "Leeftijd {}",
"exit_slideshow": "Diavoorstelling sluiten",
"expand_all": "Alles uitvouwen",
"experimental_settings_new_asset_list_subtitle": "Werk in uitvoering",
"experimental_settings_new_asset_list_title": "Experimenteel fotoraster inschakelen",
"experimental_settings_subtitle": "Gebruik op eigen risico!",
"experimental_settings_title": "Experimenteel",
"expire_after": "Verloopt na",
"expired": "Verlopen",
"expires_date": "Verloopt {date}",
@@ -753,11 +976,16 @@
"extension": "Extensie",
"external": "Extern",
"external_libraries": "Externe bibliotheken",
"external_network": "Extern netwerk",
"external_network_sheet_info": "Als je niet verbonden bent met het opgegeven wifi-netwerk, maakt de app verbinding met de server via de eerst bereikbare URL in de onderstaande lijst, van boven naar beneden",
"face_unassigned": "Niet toegewezen",
"failed": "Mislukt",
"failed_to_load_assets": "Kan assets niet laden",
"failed_to_load_folder": "Laden van map mislukt",
"favorite": "Favoriet",
"favorite_or_unfavorite_photo": "Foto markeren als of verwijderen uit favorieten",
"favorites": "Favorieten",
"favorites_page_no_favorites": "Geen favoriete assets gevonden",
"feature_photo_updated": "Uitgelichte afbeelding bijgewerkt",
"features": "Functies",
"features_setting_description": "Beheer de app functies",
@@ -765,25 +993,38 @@
"file_name_or_extension": "Bestandsnaam of extensie",
"filename": "Bestandsnaam",
"filetype": "Bestandstype",
"filter": "Filter",
"filter_people": "Filter op mensen",
"find_them_fast": "Vind ze snel op naam door te zoeken",
"fix_incorrect_match": "Onjuiste overeenkomst corrigeren",
"folder": "Map",
"folder_not_found": "Map niet gevonden",
"folders": "Mappen",
"folders_feature_description": "Bladeren door de mapweergave van de foto's en video's op het bestandssysteem",
"forward": "Vooruit",
"general": "Algemeen",
"get_help": "Krijg hulp",
"get_wifiname_error": "Kon de Wi-Fi naam niet ophalen. Zorg ervoor dat je de benodigde machtigingen hebt verleend en verbonden bent met een Wi-Fi-netwerk",
"getting_started": "Aan de slag",
"go_back": "Ga terug",
"go_to_folder": "Ga naar map",
"go_to_search": "Ga naar zoeken",
"grant_permission": "Geef toestemming",
"group_albums_by": "Groepeer albums op...",
"group_country": "Groepeer op land",
"group_no": "Niet groeperen",
"group_owner": "Groeperen op eigenaar",
"group_places_by": "Groepeer plaatsen op...",
"group_year": "Groeperen op jaar",
"haptic_feedback_switch": "Aanraaktrillingen inschakelen",
"haptic_feedback_title": "Aanraaktrillingen",
"has_quota": "Heeft limiet",
"header_settings_add_header_tip": "Header toevoegen",
"header_settings_field_validator_msg": "Waarde kan niet leeg zijn",
"header_settings_header_name_input": "Header naam",
"header_settings_header_value_input": "Header waarde",
"headers_settings_tile_subtitle": "Definieer proxy headers die de app met elk netwerkverzoek moet verzenden",
"headers_settings_tile_title": "Aangepaste proxy headers",
"hi_user": "Hallo {name} ({email})",
"hide_all_people": "Verberg alle mensen",
"hide_gallery": "Gallerij verbergen",
@@ -791,8 +1032,24 @@
"hide_password": "Verberg wachtwoord",
"hide_person": "Verberg persoon",
"hide_unnamed_people": "Verberg mensen zonder naam",
"home_page_add_to_album_conflicts": "{added} assets toegevoegd aan album {album}. {failed} assets staan al in het album.",
"home_page_add_to_album_err_local": "Lokale assets kunnen nog niet aan albums worden toegevoegd, overslaan",
"home_page_add_to_album_success": "{added} assets toegevoegd aan album {album}.",
"home_page_album_err_partner": "Partner assets kunnen nog niet toegevoegd worden aan een album, overslaan",
"home_page_archive_err_local": "Lokale assets kunnen nog niet gearchiveerd worden, overslaan",
"home_page_archive_err_partner": "Partner assets kunnen niet gearchiveerd worden, overslaan",
"home_page_building_timeline": "Tijdlijn opbouwen",
"home_page_delete_err_partner": "Partner assets kunnen niet verwijderd worden, overslaan",
"home_page_delete_remote_err_local": "Lokale assets staan in verwijder selectie externe assets, overslaan",
"home_page_favorite_err_local": "Lokale assets kunnen nog niet als favoriet worden aangemerkt, overslaan",
"home_page_favorite_err_partner": "Partner assets kunnen nog niet ge-favoriet worden, overslaan",
"home_page_first_time_notice": "Als dit de eerste keer is dat je de app gebruikt, zorg er dan voor dat je een back-up album kiest, zodat de tijdlijn gevuld kan worden met foto's en video's uit het album.",
"home_page_share_err_local": "Lokale assets kunnen niet via een link gedeeld worden, overslaan",
"home_page_upload_err_limit": "Kan maximaal 30 assets tegelijk uploaden, overslaan",
"host": "Host",
"hour": "Uur",
"ignore_icloud_photos": "Negeer iCloud foto's",
"ignore_icloud_photos_description": "Foto's die op iCloud zijn opgeslagen, worden niet geüpload naar de Immich server",
"image": "Afbeelding",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} genomen op {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} genomen met {person1} op {date}",
@@ -804,6 +1061,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1} en {person2} op {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {person3} op {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} genomen in {city}, {country} met {person1}, {person2}, en {additionalCount, number} anderen op {date}",
"image_saved_successfully": "Afbeelding opgeslagen",
"image_viewer_page_state_provider_download_started": "Download gestart",
"image_viewer_page_state_provider_download_success": "Download succesvol",
"image_viewer_page_state_provider_share_error": "Deel Error",
"immich_logo": "Immich logo",
"immich_web_interface": "Immich Web Interface",
"import_from_json": "Importeren vanuit JSON",
@@ -822,6 +1083,8 @@
"night_at_midnight": "Iedere avond om middernacht",
"night_at_twoam": "Iedere nacht om 2 uur"
},
"invalid_date": "Ongeldige datum",
"invalid_date_format": "Ongeldig datumformaat",
"invite_people": "Mensen uitnodigen",
"invite_to_album": "Uitnodigen voor album",
"items_count": "{count, plural, one {# item} other {# items}}",
@@ -842,6 +1105,12 @@
"level": "Niveau",
"library": "Bibliotheek",
"library_options": "Bibliotheek opties",
"library_page_device_albums": "Albums op apparaat",
"library_page_new_album": "Nieuw album",
"library_page_sort_asset_count": "Aantal assets",
"library_page_sort_created": "Meest recent gemaakt",
"library_page_sort_last_modified": "Laatst aangepast",
"library_page_sort_title": "Albumtitel",
"light": "Licht",
"like_deleted": "Like verwijderd",
"link_motion_video": "verbind bewegende video",
@@ -851,12 +1120,42 @@
"list": "Lijst",
"loading": "Laden",
"loading_search_results_failed": "Laden van zoekresultaten mislukt",
"local_network": "Lokaal netwerk",
"local_network_sheet_info": "De app maakt verbinding met de server via deze URL wanneer het opgegeven wifi-netwerk wordt gebruikt",
"location_permission": "Locatie toestemming",
"location_permission_content": "Om de functie voor automatische serverwissel te gebruiken, heeft Immich toegang tot de exacte locatie nodig om de naam van het huidige wifi-netwerk te kunnen bepalen.",
"location_picker_choose_on_map": "Kies op kaart",
"location_picker_latitude_error": "Voer een geldige breedtegraad in",
"location_picker_latitude_hint": "Voer hier je breedtegraad in",
"location_picker_longitude_error": "Voer een geldige lengtegraad in",
"location_picker_longitude_hint": "Voer hier je lengtegraad in",
"log_out": "Uitloggen",
"log_out_all_devices": "Uitloggen op alle apparaten",
"logged_out_all_devices": "Uitgelogd op alle apparaten",
"logged_out_device": "Uitgelogd van apparaat",
"login": "Inloggen",
"login_disabled": "Aanmelding uitgeschakeld",
"login_form_api_exception": "API fout. Controleer de server URL en probeer opnieuw.",
"login_form_back_button_text": "Terug",
"login_form_email_hint": "jouwemail@email.nl",
"login_form_endpoint_hint": "http://jouw-server-ip:poort",
"login_form_endpoint_url": "Server-URL",
"login_form_err_http": "Voer http:// of https:// in",
"login_form_err_invalid_email": "Ongeldig e-mailadres",
"login_form_err_invalid_url": "Ongeldige URL",
"login_form_err_leading_whitespace": "Spatie aan het begin",
"login_form_err_trailing_whitespace": "Spatie aan het eind",
"login_form_failed_get_oauth_server_config": "Fout bij inloggen met OAuth, controleer server-URL",
"login_form_failed_get_oauth_server_disable": "OAuth-functie is niet beschikbaar op deze server",
"login_form_failed_login": "Fout bij inloggen; controleer server-URL, e-mailadres en wachtwoord",
"login_form_handshake_exception": "Er was een Handshake Exception met de server. Schakel ondersteuning voor zelfondertekende certificaten in bij de instellingen als u een zelfondertekend certificaat gebruikt.",
"login_form_password_hint": "wachtwoord",
"login_form_save_login": "Ingelogd blijven",
"login_form_server_empty": "Voer een server-URL in.",
"login_form_server_error": "Kan geen verbinding maken met de server.",
"login_has_been_disabled": "Inloggen is uitgeschakeld.",
"login_password_changed_error": "Er is een fout opgetreden bij het bijwerken van je wachtwoord",
"login_password_changed_success": "Wachtwoord succesvol bijgewerkt",
"logout_all_device_confirmation": "Weet je zeker dat je wilt uitloggen op alle apparaten?",
"logout_this_device_confirmation": "Weet je zeker dat je wilt uitloggen op dit apparaat?",
"longitude": "Lengtegraad",
@@ -874,13 +1173,40 @@
"manage_your_devices": "Beheer je ingelogde apparaten",
"manage_your_oauth_connection": "Beheer je OAuth koppeling",
"map": "Kaart",
"map_assets_in_bound": "{} foto",
"map_assets_in_bounds": "{} foto's",
"map_cannot_get_user_location": "Kan locatie van de gebruiker niet ophalen",
"map_location_dialog_yes": "Ja",
"map_location_picker_page_use_location": "Gebruik deze locatie",
"map_location_service_disabled_content": "Locatie service moet ingeschakeld zijn om assets van je huidige locatie weer te geven. Wil je het nu inschakelen?",
"map_location_service_disabled_title": "Locatie service uitgeschakeld",
"map_marker_for_images": "Kaartmarkering voor afbeeldingen gemaakt in {city}, {country}",
"map_marker_with_image": "Kaart marker met afbeelding",
"map_no_assets_in_bounds": "Geen foto's in dit gebied",
"map_no_location_permission_content": "Locatie toestemming is nodig om assets van je huidige locatie weer te geven. Wil je het nu toestaan?",
"map_no_location_permission_title": "Locatie toestemming geweigerd",
"map_settings": "Kaartinstellingen",
"map_settings_dark_mode": "Donkere modus",
"map_settings_date_range_option_day": "Afgelopen 24 uur",
"map_settings_date_range_option_days": "Afgelopen {} dagen",
"map_settings_date_range_option_year": "Afgelopen jaar",
"map_settings_date_range_option_years": "Afgelopen {} jaar",
"map_settings_dialog_title": "Kaart Instellingen",
"map_settings_include_show_archived": "Toon gearchiveerde",
"map_settings_include_show_partners": "Inclusief partners",
"map_settings_only_show_favorites": "Toon enkel favorieten",
"map_settings_theme_settings": "Kaart thema",
"map_zoom_to_see_photos": "Zoom uit om foto's te zien",
"matches": "Overeenkomsten",
"media_type": "Mediatype",
"memories": "Herinneringen",
"memories_all_caught_up": "Je bent helemaal bij",
"memories_check_back_tomorrow": "Kom morgen terug voor meer herinneringen",
"memories_setting_description": "Beheer wat je ziet in je herinneringen",
"memories_start_over": "Opnieuw beginnen",
"memories_swipe_to_close": "Swipe omhoog om te sluiten",
"memories_year_ago": "Een jaar geleden",
"memories_years_ago": "{} jaar geleden",
"memory": "Herinnering",
"memory_lane_title": "Herinneringen {title}",
"menu": "Menu",
@@ -895,12 +1221,17 @@
"missing": "Missend",
"model": "Model",
"month": "Maand",
"monthly_title_text_date_format": "MMMM y",
"more": "Meer",
"moved_to_trash": "Naar de prullenbak verplaatst",
"multiselect_grid_edit_date_time_err_read_only": "Kan datum van alleen-lezen asset(s) niet wijzigen, overslaan",
"multiselect_grid_edit_gps_err_read_only": "Kan locatie van alleen-lezen asset(s) niet wijzigen, overslaan",
"mute_memories": "Herrinneringen dempen",
"my_albums": "Mijn albums",
"name": "Naam",
"name_or_nickname": "Naam of gebruikersnaam",
"networking_settings": "Netwerk",
"networking_subtitle": "Beheer de instellingen voor de server URL",
"never": "Nooit",
"new_album": "Nieuw album",
"new_api_key": "Nieuwe API key",
@@ -917,6 +1248,7 @@
"no_albums_yet": "Het lijkt erop dat je nog geen albums hebt.",
"no_archived_assets_message": "Archiveer foto's en video's om ze te verbergen in je Foto's overzicht",
"no_assets_message": "KLIK HIER OM JE EERSTE FOTO TE UPLOADEN",
"no_assets_to_show": "Geen foto's om te laten zien",
"no_duplicates_found": "Er zijn geen duplicaten gevonden.",
"no_exif_info_available": "Geen exif info beschikbaar",
"no_explore_results_message": "Upload meer foto's om je verzameling te verkennen.",
@@ -928,9 +1260,13 @@
"no_results_description": "Probeer een synoniem of een algemener zoekwoord",
"no_shared_albums_message": "Maak een album om foto's en video's te delen met mensen in je netwerk",
"not_in_any_album": "Niet in een album",
"not_selected": "Niet geselecteerd",
"note_apply_storage_label_to_previously_uploaded assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade assets, voer de volgende taak uit",
"note_unlimited_quota": "Opmerking: voer 0 in voor onbeperkt",
"notes": "Opmerkingen",
"notification_permission_dialog_content": "Om meldingen in te schakelen, ga naar Instellingen en selecteer toestaan.",
"notification_permission_list_tile_content": "Geef toestemming om meldingen te versturen.",
"notification_permission_list_tile_enable_button": "Meldingen inschakelen",
"notification_permission_list_tile_title": "Meldingen toestaan",
"notification_toggle_setting_description": "E-mailmeldingen inschakelen",
"notifications": "Meldingen",
"notifications_setting_description": "Beheer meldingen",
@@ -941,6 +1277,7 @@
"offline_paths_description": "Deze resultaten kunnen te wijten zijn aan het handmatig verwijderen van bestanden die geen deel uitmaken van een externe bibliotheek.",
"ok": "Ok",
"oldest_first": "Oudste eerst",
"on_this_device": "Op dit apparaat",
"onboarding": "Onboarding",
"onboarding_privacy_description": "De volgende (optionele) functies zijn afhankelijk van externe services en kunnen op elk moment worden uitgeschakeld in de beheerdersinstellingen.",
"onboarding_theme_description": "Kies een kleurenthema voor de applicatie. Dit kun je later wijzigen in je instellingen.",
@@ -964,6 +1301,14 @@
"partner_can_access": "{partner} heeft toegang tot",
"partner_can_access_assets": "Al je foto's en video's behalve die in het archief of de prullenbak",
"partner_can_access_location": "De locatie waar je foto's zijn genomen",
"partner_list_user_photos": "Foto's van {user}",
"partner_list_view_all": "Bekijk alle",
"partner_page_empty_message": "Je foto's zijn nog niet gedeeld met een partner.",
"partner_page_no_more_users": "Geen gebruikers meer om toe te voegen",
"partner_page_partner_add_failed": "Partner toevoegen mislukt",
"partner_page_select_partner": "Selecteer partner",
"partner_page_shared_to_title": "Gedeeld met",
"partner_page_stop_sharing_content": "{} zal geen toegang meer hebben tot je fotos's.",
"partner_sharing": "Delen met partner",
"partners": "Partners",
"password": "Wachtwoord",
@@ -992,6 +1337,14 @@
"permanently_delete_assets_prompt": "Weet je zeker dat je deze {count, plural, one {asset} other {<b>#</b> assets}} permanent wilt verwijderen? Hiermee {count, plural, one {wordt} other {worden}} deze ook uit de bijbehorende album(s) verwijderd.",
"permanently_deleted_asset": "Asset permanent verwijderd",
"permanently_deleted_assets_count": "{count, plural, one {# asset} other {# assets}} permanent verwijderd",
"permission_onboarding_back": "Terug",
"permission_onboarding_continue_anyway": "Toch doorgaan",
"permission_onboarding_get_started": "Aan de slag",
"permission_onboarding_go_to_settings": "Ga naar instellingen",
"permission_onboarding_permission_denied": "Toestemming geweigerd. Geef toestemming tot foto's en video's in je Instellingen om Immich te kunnen gebruiken.",
"permission_onboarding_permission_granted": "Toestemming verleend. Je bent helemaal klaar.",
"permission_onboarding_permission_limited": "Beperkte toestemming. Geef toestemming tot foto's en video's in Instellingen om Immich een back-up te laten maken van je galerij en deze te beheren.",
"permission_onboarding_request": "Immich heeft toestemming nodig om je foto's en video's te bekijken.",
"person": "Persoon",
"person_birthdate": "Geboren op {date}",
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
@@ -1009,6 +1362,8 @@
"play_motion_photo": "Bewegingsfoto afspelen",
"play_or_pause_video": "Video afspelen of pauzeren",
"port": "Poort",
"preferences_settings_subtitle": "Beheer de voorkeuren van de app",
"preferences_settings_title": "Voorkeuren",
"preset": "Voorinstelling",
"preview": "Voorbeeld",
"previous": "Vorige",
@@ -1016,6 +1371,13 @@
"previous_or_next_photo": "Vorige of volgende foto",
"primary": "Primair",
"privacy": "Privacy",
"profile_drawer_app_logs": "Logboek",
"profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.",
"profile_drawer_client_out_of_date_minor": "Mobiele app is verouderd. Werk bij naar de nieuwste subversie.",
"profile_drawer_client_server_up_to_date": "App en server zijn up-to-date",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server is verouderd. Werk bij naar de nieuwste hoofdversie.",
"profile_drawer_server_out_of_date_minor": "Server is verouderd. Werk bij naar de nieuwste subversie.",
"profile_image_of_user": "Profielfoto van {user}",
"profile_picture_set": "Profielfoto ingesteld.",
"public_album": "Openbaar album",
@@ -1065,6 +1427,8 @@
"recent": "Recent",
"recent-albums": "Recente albums",
"recent_searches": "Recente zoekopdrachten",
"recently_added": "Onlangs toegevoegd",
"recently_added_page_title": "Recent toegevoegd",
"refresh": "Vernieuwen",
"refresh_encoded_videos": "Vernieuw gecodeerde video's",
"refresh_faces": "Vernieuw gezichten",
@@ -1121,10 +1485,12 @@
"role_editor": "Bewerker",
"role_viewer": "Bekijker",
"save": "Opslaan",
"save_to_gallery": "Opslaan in galerij",
"saved_api_key": "API sleutel opgeslagen",
"saved_profile": "Profiel opgeslagen",
"saved_settings": "Instellingen opgeslagen",
"say_something": "Zeg iets",
"scaffold_body_error_occurred": "Fout opgetreden",
"scan_all_libraries": "Scan alle bibliotheken",
"scan_library": "Scannen",
"scan_settings": "Scaninstellingen",
@@ -1140,16 +1506,45 @@
"search_camera_model": "Zoek cameramodel...",
"search_city": "Zoek stad...",
"search_country": "Zoek land...",
"search_filter_apply": "Filter toepassen",
"search_filter_camera_title": "Selecteer cameratype",
"search_filter_date": "Datum",
"search_filter_date_interval": "{start} tot {end}",
"search_filter_date_title": "Selecteer datumbereik",
"search_filter_display_option_not_in_album": "Niet in album",
"search_filter_display_options": "Weergaveopties",
"search_filter_filename": "Zoeken op bestandsnaam",
"search_filter_location": "Locatie",
"search_filter_location_title": "Selecteer locatie",
"search_filter_media_type": "Mediatype",
"search_filter_media_type_title": "Selecteer mediatype",
"search_filter_people_title": "Selecteer mensen",
"search_for": "Zoeken naar",
"search_for_existing_person": "Zoek naar bestaande persoon",
"search_no_more_result": "Geen resultaten meer",
"search_no_people": "Geen mensen",
"search_no_people_named": "Geen mensen genaamd \"{name}\"",
"search_no_result": "Geen resultaten gevonden, probeer een andere zoekterm of combinatie",
"search_options": "Zoekopties",
"search_page_categories": "Categorieën",
"search_page_motion_photos": "Bewegende foto's",
"search_page_no_objects": "Geen objectgegevens beschikbaar",
"search_page_no_places": "Geen locatiegegevens beschikbaar",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Zoek naar je foto's en video's",
"search_page_selfies": "Selfies",
"search_page_things": "Dingen",
"search_page_view_all_button": "Bekijk alle",
"search_page_your_activity": "Je activiteit",
"search_page_your_map": "Jouw kaart",
"search_people": "Zoek mensen",
"search_places": "Zoek plaatsen",
"search_rating": "Zoeken op beoordeling...",
"search_result_page_new_search_hint": "Nieuwe zoekopdracht",
"search_settings": "Zoek instellingen",
"search_state": "Zoek staat...",
"search_suggestion_list_smart_search_hint_1": "Slim zoeken is standaard ingeschakeld, om naar metadata te zoeken gebruik",
"search_suggestion_list_smart_search_hint_2": "m:je-zoekterm",
"search_tags": "Tags zoeken...",
"search_timezone": "Zoek tijdzone...",
"search_type": "Type zoekopdracht",
@@ -1170,10 +1565,14 @@
"select_new_face": "Selecteer nieuw gezicht",
"select_photos": "Selecteer foto's",
"select_trash_all": "Selecteer alles naar prullenbak verplaatsen",
"select_user_for_sharing_page_err_album": "Album aanmaken mislukt",
"selected": "Geselecteerd",
"selected_count": "{count, plural, other {# geselecteerd}}",
"send_message": "Bericht versturen",
"send_welcome_email": "Stuur welkomstmail",
"server_endpoint": "Server url",
"server_info_box_app_version": "Appversie",
"server_info_box_server_url": "Server URL",
"server_offline": "Server offline",
"server_online": "Server online",
"server_stats": "Serverstatistieken",
@@ -1185,22 +1584,91 @@
"set_date_of_birth": "Geboortedatum instellen",
"set_profile_picture": "Profielfoto instellen",
"set_slideshow_to_fullscreen": "Diavoorstelling op volledig scherm",
"setting_image_viewer_help": "De gedetailleerde weergave laadt eerst de kleine thumbnail, vervolgens het middelgrote voorbeeld (indien ingeschakeld) en ten slotte het origineel (indien ingeschakeld).",
"setting_image_viewer_original_subtitle": "Schakel in om de originele afbeelding met volledige resolutie (groot!) te laden. Schakel uit om datagebruik te verminderen (zowel netwerk als apparaatcache).",
"setting_image_viewer_original_title": "Originele afbeelding laden",
"setting_image_viewer_preview_subtitle": "Schakel in om een afbeelding met middelgrote resolutie te laden. Schakel uit om alleen het origineel direct te laden of alleen de thumbnail te gebruiken.",
"setting_image_viewer_preview_title": "Voorbeeldafbeelding laden",
"setting_image_viewer_title": "Afbeeldingen",
"setting_languages_apply": "Toepassen",
"setting_languages_subtitle": "Wijzig de taal van de app",
"setting_languages_title": "Taal",
"setting_notifications_notify_failures_grace_period": "Fouten van de achtergrond back-up melden: {}",
"setting_notifications_notify_hours": "{} uur",
"setting_notifications_notify_immediately": "meteen",
"setting_notifications_notify_minutes": "{} minuten",
"setting_notifications_notify_never": "nooit",
"setting_notifications_notify_seconds": "{} seconden",
"setting_notifications_single_progress_subtitle": "Gedetailleerde informatie over de uploadvoortgang per asset",
"setting_notifications_single_progress_title": "Gedetailleerde informatie over achtergrond back-ups tonen",
"setting_notifications_subtitle": "Voorkeuren voor meldingen beheren",
"setting_notifications_total_progress_subtitle": "Algehele uploadvoortgang (voltooid/totaal aantal assets)",
"setting_notifications_total_progress_title": "Totale voortgang van achtergrond back-up tonen",
"setting_video_viewer_looping_title": "Herhalen",
"setting_video_viewer_original_video_subtitle": "Speel video's altijd in originele kwaliteit af, zelfs als er een getranscodeerd bestand beschikbaar is op de server. Dit kan leiden tot buffering. Video's die lokaal beschikbaar zijn, worden altijd in originele kwaliteit afgespeeld, ongeacht deze instelling.",
"setting_video_viewer_original_video_title": "Forceer originele videokwaliteit",
"settings": "Instellingen",
"settings_require_restart": "Start Immich opnieuw op om deze instelling toe te passen",
"settings_saved": "Instellingen opgeslagen",
"share": "Delen",
"share_add_photos": "Foto's toevoegen",
"share_assets_selected": "{} geselecteerd",
"share_dialog_preparing": "Voorbereiden...",
"shared": "Gedeeld",
"shared_album_activities_input_disable": "Reactie is uitgeschakeld",
"shared_album_activity_remove_content": "Wil je deze activiteit verwijderen?",
"shared_album_activity_remove_title": "Verwijder activiteit",
"shared_album_section_people_action_error": "Fout bij verlaten/verwijderen uit album",
"shared_album_section_people_action_leave": "Verlaat album",
"shared_album_section_people_action_remove_user": "Verwijder gebruiker van album",
"shared_album_section_people_title": "MENSEN",
"shared_by": "Gedeeld door",
"shared_by_user": "Gedeeld door {user}",
"shared_by_you": "Gedeeld door jou",
"shared_from_partner": "Foto's van {partner}",
"shared_intent_upload_button_progress_text": "{} / {} geüpload",
"shared_link_app_bar_title": "Gedeelde links",
"shared_link_clipboard_copied_massage": "Gekopieerd naar klembord",
"shared_link_clipboard_text": "Link: {}\nWachtwoord: {}",
"shared_link_create_error": "Fout bij het maken van een gedeelde link",
"shared_link_edit_description_hint": "Voer beschrijving voor de gedeelde link in",
"shared_link_edit_expire_after_option_day": "1 dag",
"shared_link_edit_expire_after_option_days": "{} dagen",
"shared_link_edit_expire_after_option_hour": "1 uur",
"shared_link_edit_expire_after_option_hours": "{} uren",
"shared_link_edit_expire_after_option_minute": "1 minuut",
"shared_link_edit_expire_after_option_minutes": "{} minuten",
"shared_link_edit_expire_after_option_months": "{} maanden",
"shared_link_edit_expire_after_option_year": "{} jaar",
"shared_link_edit_password_hint": "Voer wachtwoord voor de gedeelde link in",
"shared_link_edit_submit_button": "Link bijwerken",
"shared_link_error_server_url_fetch": "Kan de server url niet ophalen",
"shared_link_expires_day": "Verloopt over {} dag",
"shared_link_expires_days": "Verloopt over {} dagen",
"shared_link_expires_hour": "Verloopt over {} uur",
"shared_link_expires_hours": "Verloopt over {} uur",
"shared_link_expires_minute": "Verloopt over {} minuut",
"shared_link_expires_minutes": "Verloopt over {} minuten",
"shared_link_expires_never": "Verloopt ∞",
"shared_link_expires_second": "Verloopt over {} seconde",
"shared_link_expires_seconds": "Verloopt over {} seconden",
"shared_link_individual_shared": "Individueel gedeeld",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Beheer gedeelde links",
"shared_link_options": "Opties voor gedeelde links",
"shared_links": "Gedeelde links",
"shared_links_description": "Deel foto's en video's via een link",
"shared_photos_and_videos_count": "{assetCount, plural, other {# gedeelde foto's & video's.}}",
"shared_with_me": "Gedeeld met mij",
"shared_with_partner": "Gedeeld met {partner}",
"sharing": "Delen",
"sharing_enter_password": "Voer het wachtwoord in om deze pagina te bekijken.",
"sharing_page_album": "Gedeelde albums",
"sharing_page_description": "Maak gedeelde albums om foto's en video's te delen met mensen in je netwerk.",
"sharing_page_empty_list": "LEGE LIJST",
"sharing_sidebar_description": "Toon een link naar Delen in de zijbalk",
"sharing_silver_appbar_create_shared_album": "Gedeeld album maken",
"sharing_silver_appbar_share_partner": "Delen met partner",
"shift_to_permanent_delete": "druk op ⇧ om assets permanent te verwijderen",
"show_album_options": "Toon albumopties",
"show_albums": "Toon albums",
@@ -1267,6 +1735,9 @@
"support_third_party_description": "Je Immich installatie is door een derde partij samengesteld. Problemen die je ervaart, kunnen door dat pakket veroorzaakt zijn. Meld problemen in eerste instantie bij hen via de onderstaande links.",
"swap_merge_direction": "Wissel richting voor samenvoegen om",
"sync": "Sync",
"sync_albums": "Albums synchroniseren",
"sync_albums_manual_subtitle": "Synchroniseer alle geüploade videos en fotos naar de geselecteerde back-up albums",
"sync_upload_album_setting_subtitle": "Maak en upload je foto's en video's naar de geselecteerde albums op Immich",
"tag": "Tag",
"tag_assets": "Assets taggen",
"tag_created": "Tag aangemaakt: {tag}",
@@ -1280,6 +1751,19 @@
"theme": "Thema",
"theme_selection": "Thema selectie",
"theme_selection_description": "Stel het thema automatisch in op licht of donker op basis van de systeemvoorkeuren van je browser",
"theme_setting_asset_list_storage_indicator_title": "Toon opslag indicator bij de asset tegels",
"theme_setting_asset_list_tiles_per_row_title": "Aantal assets per rij ({})",
"theme_setting_colorful_interface_subtitle": "Pas primaire kleuren toe op achtergronden.",
"theme_setting_colorful_interface_title": "Kleurrijke interface",
"theme_setting_image_viewer_quality_subtitle": "De kwaliteit van de gedetailleerde-fotoweergave aanpassen",
"theme_setting_image_viewer_quality_title": "Fotoweergavekwaliteit",
"theme_setting_primary_color_subtitle": "Kies een kleur voor primaire acties en accenten.",
"theme_setting_primary_color_title": "Primaire kleur",
"theme_setting_system_primary_color_title": "Gebruik systeemkleur",
"theme_setting_system_theme_switch": "Automatisch (systeeminstelling volgen)",
"theme_setting_theme_subtitle": "De thema-instelling van de app kiezen",
"theme_setting_three_stage_loading_subtitle": "Laden in drie fasen kan de laadprestaties verbeteren, maar veroorzaakt een aanzienlijk hogere netwerkbelasting",
"theme_setting_three_stage_loading_title": "Laden in drie fasen inschakelen",
"they_will_be_merged_together": "Zij zullen worden samengevoegd",
"third_party_resources": "Bronnen van derden",
"time_based_memories": "Tijdgebaseerde herinneringen",
@@ -1299,7 +1783,15 @@
"trash_all": "Verplaats alle naar prullenbak",
"trash_count": "{count, number} naar prullenbak",
"trash_delete_asset": "Assets naar prullenbak verplaatsen of verwijderen",
"trash_emptied": "Prullenbak geleegd",
"trash_no_results_message": "Hier verschijnen foto's en video's die in de prullenbak zijn geplaatst.",
"trash_page_delete_all": "Verwijder alle",
"trash_page_empty_trash_dialog_content": "Wil je de prullenbak leegmaken? Deze items worden permanent verwijderd van Immich",
"trash_page_info": "Verwijderde items worden permanent verwijderd na {} dagen",
"trash_page_no_assets": "Geen verwijderde assets",
"trash_page_restore_all": "Herstel alle",
"trash_page_select_assets_btn": "Selecteer assets",
"trash_page_title": "Prullenbak ({})",
"trashed_items_will_be_permanently_deleted_after": "Items in de prullenbak worden na {days, plural, one {# dag} other {# dagen}} permanent verwijderd.",
"type": "Type",
"unarchive": "Herstellen uit archief",
@@ -1328,6 +1820,8 @@
"updated_password": "Wachtwoord bijgewerkt",
"upload": "Uploaden",
"upload_concurrency": "Upload gelijktijdigheid",
"upload_dialog_info": "Wil je een backup maken van de geselecteerde asset(s) op de server?",
"upload_dialog_title": "Asset uploaden",
"upload_errors": "Upload voltooid met {count, plural, one {# fout} other {# fouten}}, vernieuw de pagina om de nieuwe assets te zien.",
"upload_progress": "Resterend {remaining, number} - Verwerkt {processed, number}/{total, number}",
"upload_skipped_duplicates": "{count, plural, one {# duplicate asset} other {# duplicate assets}} overgeslagen",
@@ -1335,8 +1829,11 @@
"upload_status_errors": "Fouten",
"upload_status_uploaded": "Geüpload",
"upload_success": "Uploaden gelukt, vernieuw de pagina om de nieuwe assets te zien.",
"upload_to_immich": "Uploaden naar Immich ({})",
"uploading": "Aan het uploaden",
"url": "URL",
"usage": "Gebruik",
"use_current_connection": "gebruik huidige verbinding",
"use_custom_date_range": "Gebruik in plaats daarvan een aangepast datumbereik",
"user": "Gebruiker",
"user_id": "Gebruikers ID",
@@ -1351,10 +1848,16 @@
"users": "Gebruikers",
"utilities": "Gereedschap",
"validate": "Valideren",
"validate_endpoint_error": "Vul een geldige URL in",
"variables": "Variabelen",
"version": "Versie",
"version_announcement_closing": "Je vriend, Alex",
"version_announcement_message": "Hallo! Er is een nieuwe versie van Immich beschikbaar. Neem even de tijd om de <link>release notes</link> te lezen en zorg ervoor dat je setup up-to-date is om misconfiguraties te voorkomen, vooral als je WatchTower of een andere update-mechanisme gebruikt.",
"version_announcement_overlay_release_notes": "releaseopmerkingen",
"version_announcement_overlay_text_1": "Hoi, er is een nieuwe versie beschikbaar van",
"version_announcement_overlay_text_2": "neem je tijd en bezoek de ",
"version_announcement_overlay_text_3": " en controleer of je docker-compose en .env up-to-date zijn, om misconfiguraties te voorkomen, in het bijzonder als je gebruik maakt van WatchTower of een ander mechanisme dat je serverapplicatie automatisch bijwerkt.",
"version_announcement_overlay_title": "Nieuwe serverversie beschikbaar 🎉",
"version_history": "Versiegeschiedenis",
"version_history_item": "{version} geïnstalleerd op {date}",
"video": "Video",
@@ -1373,15 +1876,20 @@
"view_next_asset": "Bekijk volgende asset",
"view_previous_asset": "Bekijk vorige asset",
"view_stack": "Bekijk stapel",
"viewer_remove_from_stack": "Verwijder van Stapel",
"viewer_stack_use_as_main_asset": "Gebruik als Hoofd Asset",
"viewer_unstack": "Ontstapel",
"visibility_changed": "Zichtbaarheid gewijzigd voor {count, plural, one {# persoon} other {# mensen}}",
"waiting": "Wachtend",
"warning": "Waarschuwing",
"week": "Week",
"welcome": "Welkom",
"welcome_to_immich": "Welkom bij Immich",
"wifi_name": "WiFi naam",
"year": "Jaar",
"years_ago": "{years, plural, one {# jaar} other {# jaar}} geleden",
"yes": "Ja",
"you_dont_have_any_shared_links": "Je hebt geen gedeelde links",
"your_wifi_name": "Je WiFi naam",
"zoom_image": "Inzoomen"
}

View File

@@ -2,8 +2,9 @@
"about": "Om",
"account": "Konto",
"account_settings": "Kontoinnstillingar",
"acknowledge": "Bekreft",
"acknowledge": "Merk som lese",
"action": "Handling",
"action_common_update": "Oppdater",
"actions": "Handlingar",
"active": "Aktive",
"activity": "Aktivitet",
@@ -121,7 +122,7 @@
"machine_learning_max_detection_distance_description": "Den største skilnaden mellom to bilete for å rekne dei som duplikat, frå 0.001-0.1. Større verdiar finn fleire duplikat, men kan gje falske treff.",
"machine_learning_max_recognition_distance": "Maksimal attkjenningsverdi",
"machine_learning_min_detection_score": "Minimum deteksjonsresultat",
"machine_learning_min_detection_score_description": "Minimum tillitspoeng for at eit ansikt skal bli oppdaga, på ein skala frå 0-1. Lågare verdiar vil oppdaga fleire ansikt, men kan føre til falske positive",
"machine_learning_min_detection_score_description": "Minimum tillitspoeng for at eit ansikt skal bli oppdaga, på ein skala frå 0 til 1. Lågare verdiar vil oppdage fleire ansikt, men kan føre til feilaktige treff.",
"machine_learning_min_recognized_faces": "Minimum gjenkjende ansikt",
"machine_learning_settings": "Innstillingar for maskinlæring",
"machine_learning_settings_description": "Administrer maskinlæringsfunksjonar og innstillingar",
@@ -200,14 +201,45 @@
"backward": "Bakover",
"camera": "Kamera",
"cancel": "Avbryt",
"change_password_form_confirm_password": "Stadfest passord",
"city": "By",
"clear": "Fjern",
"clear": "Tøm",
"clear_all": "Tøm alt",
"clear_all_recent_searches": "Tøm alle nylige søk",
"clear_message": "Tøm melding",
"clear_value": "Tøm verdi",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Oppgi passord",
"client_cert_import": "Importer",
"client_cert_import_success_msg": "Klientsertifikat vart importert",
"client_cert_invalid_msg": "Ugyldig sertifikatfil eller feil passord",
"client_cert_remove_msg": "Klientsertifikat er fjerna",
"client_cert_subtitle": "Støttar berre PKCS12-formatet (.p12, .pfx). Import og fjerning av sertifikat er berre tilgjengeleg før innlogging",
"client_cert_title": "SSL-klientsertifikat",
"clockwise": "Med klokka",
"close": "Lukk",
"collapse": "Gøym",
"collapse_all": "Gøym alle",
"color": "Farge",
"confirm": "Bekreft",
"contain": "Inneheld",
"color_theme": "Fargetema",
"comment_deleted": "Kommentar vart sletta",
"comment_options": "Kommentarval",
"comments_and_likes": "Kommentarar og likerklikk",
"comments_are_disabled": "Kommentering er slått av",
"common_create_new_album": "Lag nytt album",
"common_server_error": "Kontroller nettverkstilkoplinga di, sørg for at tenaren er tilgjengeleg, og at app- og tenarversjonane er kompatible.",
"completed": "Fullført",
"confirm": "Stadfest",
"confirm_admin_password": "Stadfest administratorpassord",
"confirm_delete_face": "Er du sikker på at du vil slette {name} sitt ansikt frå ressursen?",
"confirm_delete_shared_link": "Er du sikker på at du vil slette denne delte lenka?",
"confirm_keep_this_delete_others": "Alle andre ressursar i bunken vil bli sletta, bortsett frå denne. Er du sikker på at du vil halde fram?",
"confirm_password": "Stadfest passord",
"contain": "Tilpass til vindauget",
"context": "Samanheng",
"continue": "Hald fram",
"control_bottom_app_bar_album_info_shared": "{} element · Delt",
"control_bottom_app_bar_create_new_album": "Lag nytt album",
"country": "Land",
"cover": "Dekk",
"covers": "Dekker",
@@ -313,21 +345,154 @@
"purchase_server_title": "Server",
"reassign": "Vel på nytt",
"recent": "Nyleg",
"refresh": "Oppdater",
"refresh": "Last inn på nytt",
"refresh_encoded_videos": "Oppfrisk ferdigbehandla videoa",
"refresh_faces": "Oppfrisk ansikt",
"refresh_metadata": "Oppfrisk metadata",
"refresh_thumbnails": "Oppfrisk miniatyrbilete",
"refreshed": "Oppdatert",
"refreshes_every_file": "Les alle eksisterande og nye filer på nytt",
"refreshing_encoded_video": "Lastar inn ferdigbehandla video på nytt",
"refreshing_faces": "Oppfriskar ansiktsdata",
"refreshing_metadata": "Oppfriskar metadata",
"regenerating_thumbnails": "Regenererer miniatyrbilete",
"remove": "Fjern",
"rename": "Endre namn",
"repair": "Reparasjon",
"remove_assets_album_confirmation": "Er du sikker på at du vil fjerne {count, plural, one {# asset} other {# assets}} fra albumet?",
"remove_assets_shared_link_confirmation": "Er du sikker på at du vil fjerne {count, plural, one {# asset} other {# assets}} frå denne delte lenka?",
"remove_assets_title": "Fjern ressursar?",
"remove_custom_date_range": "Fjern egendefinert datoperiode",
"remove_deleted_assets": "Fjern sletta ressursar",
"remove_from_album": "Fjern frå album",
"remove_from_favorites": "Fjern frå favorittar",
"remove_from_shared_link": "Fjern frå delt lenke",
"remove_memory": "Fjern minne",
"remove_photo_from_memory": "Fjern bilete frå dette minne",
"remove_url": "Fjern URL",
"remove_user": "Fjern brukar",
"removed_api_key": "Fjerna API-nøkkel: {name}",
"removed_from_archive": "Fjerna frå arkiv",
"removed_from_favorites": "Fjerna frå favorittar",
"removed_from_favorites_count": "{count, plural, other {Fjerna #}} frå favorittar",
"removed_memory": "Fjerna minne",
"removed_photo_from_memory": "Fjerna bilete frå minne",
"removed_tagged_assets": "Fjerna tagg frå {count, plural, one {# ressurs} other {# ressursar}}",
"rename": "Gi nytt namn",
"repair": "Reparer",
"repair_no_results_message": "Uspora og manglande filer vil visast her",
"replace_with_upload": "Erstatt med opplasting",
"repository": "Lager",
"require_password": "Krev passord",
"require_user_to_change_password_on_first_login": "Krev at brukaren endrar passord ved første innlogging",
"rescan": "Skann på nytt",
"reset": "Tilbakestill",
"restore": "Tilbakestill",
"resume": "Fortsett",
"reset_password": "Tilbakestill passord",
"reset_people_visibility": "Tilbakestill synlegheit for personar",
"reset_to_default": "Tilbakestill til standard",
"resolve_duplicates": "Handter duplikat",
"resolved_all_duplicates": "Alle duplikat er handterte",
"restore": "Gjenopprett",
"restore_all": "Gjenopprett alle",
"restore_user": "Gjenopprett brukar",
"restored_asset": "Ressurs gjenoppretta",
"resume": "Gjenoppta",
"retry_upload": "Prøv opplasting på nytt",
"review_duplicates": "Gå gjennom duplikat",
"role": "Rolle",
"role_editor": "Redaktør",
"role_viewer": "Observatør",
"save": "Lagre",
"save_to_gallery": "Lagre til galleri",
"saved_api_key": "API-nøkkel lagra",
"saved_profile": "Profil lagra",
"saved_settings": "Innstillingar lagra",
"say_something": "Skriv ein kommentar",
"scaffold_body_error_occurred": "Det oppstod ein feil",
"scan_all_libraries": "Skann gjennom alle bibliotek",
"scan_library": "Skann",
"scan_settings": "Skann innstillingar",
"scanning_for_album": "Skanning for album...",
"search": "Søk",
"search_albums": "Søk album",
"search_by_context": "Søk etter samanheng",
"search_by_description": "Søk etter beskrivelse",
"search_by_description_example": "Søndagstur med kvikklunsj",
"search_by_filename": "Søk etter filnamn eller filformat",
"search_by_filename_example": "t.d. IMG_1234.JPG eller PNG",
"search_camera_make": "Søk etter kamera produsent...",
"search_camera_model": "Søk etter kamera modell...",
"search_city": "Søk etter by...",
"search_country": "Søk etter land...",
"search_filter_apply": "Bruk filter",
"search_filter_camera_title": "Vel kameratype",
"search_filter_date": "Dato",
"search_filter_date_interval": "{start} til {end}",
"search_filter_date_title": "Vel eit datointervall",
"search_filter_display_option_not_in_album": "Ikkje i album",
"search_filter_display_options": "Visingsval",
"search_filter_filename": "Søk etter filnamn",
"search_filter_location": "Lokasjon",
"search_filter_location_title": "Vel lokasjon",
"search_filter_media_type": "Mediatype",
"search_filter_media_type_title": "Vel mediatype",
"search_filter_people_title": "Vel personar",
"search_for": "Søk etter",
"search_for_existing_person": "Søk etter ein eksisterande person",
"search_no_more_result": "Ingen fleire resultat",
"search_no_people": "Ingen personar",
"search_no_people_named": "Ingen personar ved namn \"{name}\"",
"search_no_result": "Fann ingen resultat prøv eit anna søkjeord eller ei anna kombinasjon",
"search_options": "Søkjeval",
"search_page_categories": "Kategoriar",
"search_page_motion_photos": "Levande bilete",
"search_page_no_objects": "Ingen objektinformasjon tilgjengeleg",
"search_page_no_places": "Ingen stadinformasjon tilgjengeleg",
"search_page_screenshots": "Skjermbilete",
"search_page_search_photos_videos": "Søk etter bileta og videoane dine",
"search_page_selfies": "Sjølvbilete",
"search_page_things": "Ting",
"search_page_view_all_button": "Vis alle",
"search_page_your_activity": "Din aktivitet",
"search_page_your_map": "Ditt kart",
"search_people": "Søk etter personar",
"search_places": "Søk etter stad",
"search_rating": "Søk etter vurdering …",
"search_result_page_new_search_hint": "Nytt søk",
"search_settings": "Søkjeinnstillingar",
"search_state": "Søk etter fylke …",
"search_suggestion_list_smart_search_hint_1": "Smart søk er aktivert som standard. For å søkje etter metadata, bruk denne syntaksen: ",
"search_suggestion_list_smart_search_hint_2": "m:søkjeord",
"search_tags": "Søk etter taggar …",
"search_timezone": "Søk etter tidssone …",
"search_type": "Søketype",
"search_your_photos": "Søk i dine bilete",
"searching_locales": "Søkjer etter språkinnstillingar…",
"second": "Sekund",
"see_all_people": "Sjå alle personar",
"select": "Vel",
"select_album_cover": "Vel forsidebilete",
"select_all": "Vel alle",
"select_all_duplicates": "Vel alle duplikatar",
"select_avatar_color": "Vel avatarfarge",
"select_face": "Vel ansikt",
"select_featured_photo": "Vel framheva bilete",
"select_from_computer": "Vel frå datamaskin",
"select_keep_all": "Vel å behald alle",
"select_library_owner": "Vel bibliotekeigar",
"select_new_face": "Vel nytt ansikt",
"select_photos": "Vel bilete",
"select_trash_all": "Vel fjern alle",
"select_user_for_sharing_page_err_album": "Feil ved oppretting av album",
"selected": "Valgt",
"selected_count": "{count, plural, other {# valgt}}",
"send_message": "Send melding",
"send_welcome_email": "Send velkomst-e-post",
"server_endpoint": "Tenar-endepunkt",
"server_info_box_app_version": "App Versjon",
"server_info_box_server_url": "Tenar URL",
"server_offline": "Tenar Frakopla",
"server_online": "Tenar i drift",
"server_stats": "Tenarstatistikk",
"server_version": "Tenarversjon",
"set": "Sett",
"settings": "Innstillingar",
"share": "Del",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Configurações da Conta",
"acknowledge": "Entendi",
"action": "Ação",
"action_common_update": "Atualizar",
"actions": "Ações",
"active": "Em execução",
"activity": "Atividade",
@@ -167,7 +168,6 @@
"no_pattern_added": "Nenhum padrão adicionado",
"note_apply_storage_label_previous_assets": "Observação: Para aplicar o rótulo de armazenamento a arquivos carregados anteriormente, execute o",
"note_cannot_be_changed_later": "NOTA: Isto não pode ser alterado posteriormente!",
"note_unlimited_quota": "Observação: insira 0 para cota ilimitada",
"notification_email_from_address": "E-mail de origem",
"notification_email_from_address_description": "Endereço de e-mail do remetente, por exemplo: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Host do servidor de e-mail (por exemplo, smtp.immich.app)",
@@ -376,6 +376,8 @@
"album_cover_updated": "Capa do álbum atualizada",
"album_delete_confirmation": "Tem certeza de que deseja excluir o álbum {album}?",
"album_delete_confirmation_description": "Se este álbum é compartilhado, os outros usuários não conseguiram mais acessá-lo.",
"album_info_card_backup_album_excluded": "EXCLUÍDO",
"album_info_card_backup_album_included": "INCLUÍDO",
"album_info_updated": "Informações do álbum atualizadas",
"album_leave": "Sair do álbum?",
"album_leave_confirmation": "Tem certeza de que deseja sair de {album}?",
@@ -384,10 +386,19 @@
"album_remove_user": "Remover usuário?",
"album_remove_user_confirmation": "Tem certeza de que deseja remover {user}?",
"album_share_no_users": "Parece que você já compartilhou este álbum com todos os usuários ou não há nenhum usuário para compartilhar.",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Compartilhado",
"album_updated": "Álbum atualizado",
"album_updated_setting_description": "Receba uma notificação por e-mail quando um álbum compartilhado tiver novos recursos",
"album_user_left": "Saiu do álbum {album}",
"album_user_removed": "Usuário {user} foi removido",
"album_viewer_appbar_share_err_delete": "Falha ao excluir álbum",
"album_viewer_appbar_share_err_leave": "Falha ao sair do álbum",
"album_viewer_appbar_share_err_remove": "Há problemas ao remover recursos do álbum",
"album_viewer_appbar_share_err_title": "Falha ao alterar o título do álbum",
"album_viewer_appbar_share_leave": "Sair do álbum",
"album_viewer_page_share_add_users": "Adicionar usuários",
"album_with_link_access": "Permitir que qualquer pessoa com o link veja as fotos e as pessoas neste álbum.",
"albums": "Álbuns",
"albums_count": "{count, plural, one {{count, number} Álbum} other {{count, number} Álbuns}}",
@@ -441,6 +452,51 @@
"authorized_devices": "Dispositivos Autorizados",
"back": "Voltar",
"back_close_deselect": "Voltar, fechar ou desmarcar",
"backup_album_selection_page_albums_device": "Álbuns no dispositivo ({})",
"backup_album_selection_page_albums_tap": "Toque para incluir, toque duas vezes para excluir",
"backup_album_selection_page_assets_scatter": "Os recursos podem se espalhar por vários álbuns. Assim, os álbuns podem ser incluídos ou excluídos durante o processo de backup.",
"backup_album_selection_page_select_albums": "Selecionar álbuns",
"backup_album_selection_page_selection_info": "Informações da Seleção",
"backup_album_selection_page_total_assets": "Total de recursos exclusivos",
"backup_all": "Todos",
"backup_background_service_current_upload_notification": "Enviando {}",
"backup_background_service_default_notification": "Checking for new assets…",
"backup_background_service_in_progress_notification": "Fazendo backup de seus ativos…",
"backup_background_service_upload_failure_notification": "Falha ao carregar {}",
"backup_controller_page_albums": "Álbuns de backup",
"backup_controller_page_background_charging": "Apenas durante o carregamento",
"backup_controller_page_background_configure_error": "Falha ao configurar o serviço em segundo plano",
"backup_controller_page_background_description": "Ative o serviço em segundo plano para fazer backup automático de novos ativos sem precisar abrir o aplicativo",
"backup_controller_page_background_is_off": "O backup automático em segundo plano está desativado",
"backup_controller_page_background_is_on": "O backup automático em segundo plano está ativado",
"backup_controller_page_background_turn_off": "Desativar o serviço em segundo plano",
"backup_controller_page_background_turn_on": "Ativar o serviço em segundo plano",
"backup_controller_page_background_wifi": "Apenas em Wi-Fi",
"backup_controller_page_backup": "Backup",
"backup_controller_page_backup_selected": "Selecionado: ",
"backup_controller_page_backup_sub": "Backup de fotos e vídeos",
"backup_controller_page_created": "Criado em: {}",
"backup_controller_page_desc_backup": "Ative o backup para carregar automaticamente novos ativos no servidor.",
"backup_controller_page_excluded": "Excluído: ",
"backup_controller_page_failed": "Falhou ({})",
"backup_controller_page_filename": "Nome do arquivo: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Informações de backup",
"backup_controller_page_none_selected": "Nenhum selecionado",
"backup_controller_page_remainder": "Restante",
"backup_controller_page_remainder_sub": "Fotos e vídeos restantes para fazer backup da seleção",
"backup_controller_page_server_storage": "Armazenamento do servidor",
"backup_controller_page_start_backup": "Iniciar backup",
"backup_controller_page_status_off": "O backup está desativado",
"backup_controller_page_status_on": "O backup está ativado",
"backup_controller_page_storage_format": "{} de {} usado",
"backup_controller_page_to_backup": "Álbuns para backup",
"backup_controller_page_total_sub": "Todas as fotos e vídeos únicos dos álbuns selecionados",
"backup_controller_page_turn_off": "Desativar o backup",
"backup_controller_page_turn_on": "Ativar Backup",
"backup_controller_page_uploading_file_info": "Carregando informações do arquivo",
"backup_err_only_album": "Não é possível remover o único álbum",
"backup_info_card_assets": "ativos",
"backward": "Para trás",
"birthdate_saved": "Data de nascimento salva com sucesso",
"birthdate_set_description": "A data de nascimento é usada para calcular a idade da pessoa no momento em que a foto foi tirada.",
@@ -511,6 +567,7 @@
"covers": "Capas",
"create": "Criar",
"create_album": "Criar álbum",
"create_album_page_untitled": "Sem título",
"create_library": "Criar biblioteca",
"create_link": "Criar link",
"create_link_to_share": "Criar link para partilhar",
@@ -518,6 +575,8 @@
"create_new_person": "Criar nova pessoa",
"create_new_person_hint": "Atribuir arquivos selecionados a uma nova pessoa",
"create_new_user": "Criar novo usuário",
"create_shared_album_page_share_add_assets": "ADICIONAR FOTOS",
"create_shared_album_page_share_select_photos": "Selecionar fotos",
"create_tag": "Criar marcador",
"create_tag_description": "Cria um novo marcador. Para marcadores multi nível, digite o caminho completo do marcador, inclusive as barras.",
"create_user": "Criar usuário",
@@ -525,10 +584,13 @@
"current_device": "Dispositivo atual",
"custom_locale": "Localização Customizada",
"custom_locale_description": "Formatar datas e números baseados na linguagem e região",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"dark": "Escuro",
"date_after": "Data após",
"date_and_time": "Data e Hora",
"date_before": "Data antes",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "Data de nascimento salvo com sucesso",
"date_range": "Intervalo de datas",
"day": "Dia",
@@ -542,6 +604,8 @@
"delete": "Excluir",
"delete_album": "Excluir álbum",
"delete_api_key_prompt": "Tem certeza de que deseja excluir esta chave de API?",
"delete_dialog_alert": "Esses itens serão excluídos permanentemente do Immich e do seu dispositivo",
"delete_dialog_title": "Excluir permanentemente",
"delete_duplicates_confirmation": "Tem certeza de que deseja excluir permanentemente estas duplicidades?",
"delete_face": "Remover face",
"delete_key": "Excluir chave",
@@ -741,6 +805,9 @@
"unable_to_upload_file": "Não foi possível carregar o arquivo"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Adicionar descrição...",
"exif_bottom_sheet_details": "DETALHES",
"exif_bottom_sheet_location": "LOCALIZAÇÃO",
"exit_slideshow": "Sair da apresentação",
"expand_all": "Expandir tudo",
"expire_after": "Expira depois",
@@ -766,6 +833,7 @@
"filename": "Nome do arquivo",
"filetype": "Tipo de arquivo",
"filter_people": "Filtrar pessoas",
"filter_places": "Filtrar lugares",
"find_them_fast": "Encontre pelo nome em uma pesquisa",
"fix_incorrect_match": "Corrigir correspondência incorreta",
"folders": "Pastas",
@@ -842,6 +910,7 @@
"level": "Nível",
"library": "Biblioteca",
"library_options": "Opções da biblioteca",
"library_page_new_album": "Novo album",
"light": "Claro",
"like_deleted": "Curtida excluída",
"link_motion_video": "Relacionar video animado",
@@ -856,6 +925,16 @@
"logged_out_all_devices": "Saiu de todos os dispositivos",
"logged_out_device": "Dispositivo desconectado",
"login": "Iniciar sessão",
"login_form_email_hint": "youremail@email.com",
"login_form_endpoint_hint": "http://your-server-ip:port",
"login_form_endpoint_url": "Server Endpoint URL",
"login_form_err_http": "Please specify http:// or https://",
"login_form_err_invalid_email": "E-mail inválido",
"login_form_err_leading_whitespace": "Leading whitespace",
"login_form_err_trailing_whitespace": "Trailing whitespace",
"login_form_failed_login": "Erro ao fazer login, verifique a url do servidor, e-mail e senha",
"login_form_password_hint": "password",
"login_form_save_login": "Permaneçer conectado",
"login_has_been_disabled": "Login foi desativado.",
"logout_all_device_confirmation": "Tem certeza de que deseja sair de todos os dispositivos?",
"logout_this_device_confirmation": "Tem certeza de que deseja sair deste dispositivo?",
@@ -864,6 +943,7 @@
"loop_videos": "Repetir vídeos",
"loop_videos_description": "Ative para repetir os vídeos automaticamente durante a exibição.",
"main_branch_warning": "Você está utilizando a versão de desenvolvimento. É altamente recomendado que utilize a versão estável!",
"main_menu": "Menu Principal",
"make": "Marca",
"manage_shared_links": "Gerir links partilhados",
"manage_sharing_with_partners": "Gerenciar compartilhamento com parceiros",
@@ -894,6 +974,7 @@
"missing": "Faltando",
"model": "Modelo",
"month": "Mês",
"monthly_title_text_date_format": "MMMM y",
"more": "Mais",
"moved_to_trash": "Enviado para a lixeira",
"mute_memories": "Silenciar memórias",
@@ -928,7 +1009,6 @@
"no_shared_albums_message": "Crie um álbum para compartilhar fotos e vídeos com pessoas em sua rede",
"not_in_any_album": "Fora de álbum",
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o rótulo de armazenamento a arquivos carregados anteriormente, execute o",
"note_unlimited_quota": "Nota: Digite 0 para cota ilimitada",
"notes": "Notas",
"notification_toggle_setting_description": "Habilitar notificações por e-mail",
"notifications": "Notificações",
@@ -1015,6 +1095,7 @@
"previous_or_next_photo": "Foto anterior ou próxima",
"primary": "Primário",
"privacy": "Privacidade",
"profile_drawer_client_server_up_to_date": "Cliente e Servidor estão atualizados",
"profile_image_of_user": "Imagem do perfil de {user}",
"profile_picture_set": "Foto de perfil definida.",
"public_album": "Álbum público",
@@ -1144,9 +1225,13 @@
"search_no_people": "Nenhuma pessoa",
"search_no_people_named": "Nenhuma pessoa chamada \"{name}\"",
"search_options": "Opções de pesquisa",
"search_page_no_objects": "Nenhuma informação de objeto disponível",
"search_page_no_places": "Nenhuma informação de lugares disponível",
"search_page_things": "Coisas",
"search_people": "Pesquisar pessoas",
"search_places": "Pesquisar lugares",
"search_rating": "Pesquisar por classificação...",
"search_result_page_new_search_hint": "Nova pesquisa",
"search_settings": "Configurações de pesquisa",
"search_state": "Pesquisar estado...",
"search_tags": "Procurar marcadores...",
@@ -1169,6 +1254,7 @@
"select_new_face": "Selecionar novo rosto",
"select_photos": "Selecionar fotos",
"select_trash_all": "Marcar lixo em todos",
"select_user_for_sharing_page_err_album": "Falha ao criar álbum",
"selected": "Selecionados",
"selected_count": "{count, plural, one {# selecionado} other {# selecionados}}",
"send_message": "Enviar mensagem",
@@ -1187,6 +1273,8 @@
"settings": "Configurações",
"settings_saved": "Configurações salvas",
"share": "Compartilhar",
"share_add_photos": "Adicionar fotos",
"share_dialog_preparing": "Preparando...",
"shared": "Compartilhado",
"shared_by": "Compartilhado por",
"shared_by_user": "Compartilhado por {user}",
@@ -1199,7 +1287,12 @@
"shared_with_partner": "Compartilhado com {partner}",
"sharing": "Compartilhamento",
"sharing_enter_password": "Digite a senha para visualizar esta página.",
"sharing_page_album": "Álbuns compartilhados",
"sharing_page_description": "Crie álbuns compartilhados para compartilhar fotos e vídeos com pessoas em sua rede.",
"sharing_page_empty_list": "LISTA VAZIA",
"sharing_sidebar_description": "Exibe um link para Compartilhamento na barra lateral",
"sharing_silver_appbar_create_shared_album": "Criar álbum compartilhado",
"sharing_silver_appbar_share_partner": "Compartilhe com o parceiro",
"shift_to_permanent_delete": "pressione ⇧ para excluir permanentemente o arquivo",
"show_album_options": "Exibir opções do álbum",
"show_albums": "Exibir álbuns",
@@ -1279,6 +1372,12 @@
"theme": "Tema",
"theme_selection": "Selecionar tema",
"theme_selection_description": "Defina automaticamente o tema como claro ou escuro com base na preferência do sistema do seu navegador",
"theme_setting_image_viewer_quality_subtitle": "Ajuste a qualidade de imagens detalhadas do visualizador",
"theme_setting_image_viewer_quality_title": "Qualidade das imagens do visualizador",
"theme_setting_system_theme_switch": "Automático (seguir a configuração do sistema)",
"theme_setting_theme_subtitle": "Escolha a configuração de tema do app",
"theme_setting_three_stage_loading_subtitle": "O carregamento em três estágios oferece a imagem de melhor qualidade em troca de uma velocidade de carregamento mais lenta",
"theme_setting_three_stage_loading_title": "Ative o carregamento em três estágios",
"they_will_be_merged_together": "Eles serão mesclados",
"third_party_resources": "Recursos de terceiros",
"time_based_memories": "Memórias baseadas no tempo",
@@ -1354,6 +1453,11 @@
"version": "Versão",
"version_announcement_closing": "De seu amigo, Alex",
"version_announcement_message": "Olá! Uma nova versão do Immich está disponível. Para evitar configurações incorretas, leia com calma a página de <link>notas da versão</link> e verifique se é necessário alterar alguma configuração, principalmente se você usa o WatchTower ou qualquer outro mecanismo que faça atualizações automáticas do Immich.",
"version_announcement_overlay_release_notes": "notas de lançamento",
"version_announcement_overlay_text_1": "Oi amigo, há um novo lançamento de",
"version_announcement_overlay_text_2": "reserve um tempo para visitar o ",
"version_announcement_overlay_text_3": " e verifique se a configuração do docker-compose e do .env está atualizada para evitar configurações incorretas, especialmente se você usar o WatchTower ou qualquer mecanismo que lide com a atualização automática do aplicativo do servidor.",
"version_announcement_overlay_title": "Nova versão do servidor disponível 🎉",
"version_history": "Histórico de versões",
"version_history_item": "Versão {version} instalada em {date}",
"video": "Vídeo",
@@ -1371,9 +1475,10 @@
"view_name": "Ver",
"view_next_asset": "Ver próximo arquivo",
"view_previous_asset": "Ver arquivo anterior",
"view_qr_code": "Ver QR Code",
"view_stack": "Ver Pilha",
"visibility_changed": "A visibilidade {count, plural, one {# da pessoa foi alterada} other {# das pessoas foi alterada}}",
"waiting": "Aguardando",
"visibility_changed": "A visibilidade de {count, plural, one {# pessoa foi alterada} other {# pessoas foram alteradas}}",
"waiting": "Na fila",
"warning": "Aviso",
"week": "Semana",
"welcome": "Bem-vindo",

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,7 @@
"account_settings": "Nastavenia účtu",
"acknowledge": "Rozumiem",
"action": "Akcia",
"action_common_update": "Aktualizovať",
"actions": "Akcie",
"active": "Aktívne",
"activity": "Aktivita",
@@ -13,6 +14,7 @@
"add_a_location": "Pridať polohu",
"add_a_name": "Pridať meno",
"add_a_title": "Pridať názov",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "Pridať vzor vylúčenia",
"add_import_path": "Pridať cestu pre import",
"add_location": "Pridať polohu",
@@ -22,6 +24,8 @@
"add_photos": "Pridať fotografie",
"add_to": "Pridať do…",
"add_to_album": "Pridať do albumu",
"add_to_album_bottom_sheet_added": "Pridané do {album}",
"add_to_album_bottom_sheet_already_exists": "Už v {album}",
"add_to_shared_album": "Pridať do zdieľaného albumu",
"add_url": "Pridať URL",
"added_to_archive": "Pridané do archívu",
@@ -162,7 +166,6 @@
"no_pattern_added": "Nebol pridaný žiadny vzor",
"note_apply_storage_label_previous_assets": "Poznámka: Ak chcete použiť Štítkovanie úložiska na predtým nahrané aktíva, spustite príkaz",
"note_cannot_be_changed_later": "POZNÁMKA: Toto nie je možné neskôr zmeniť!",
"note_unlimited_quota": "Poznámka: Použite 0 pre neobmedzený limit",
"notification_email_from_address": "Z adresy",
"notification_email_from_address_description": "E-mailová adresa odosielateľa, príklad: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "Adresa emailového serveru (príklad: smtp.immich.app)",
@@ -363,6 +366,16 @@
"admin_password": "Administrátorské heslo",
"administration": "Administrácia",
"advanced": "Pokročilé",
"advanced_settings_log_level_title": "Úroveň logovania: {}",
"advanced_settings_prefer_remote_subtitle": "Niektoré zariadenia sú extrémne pomalé pre načítavanie miniatúr z fotiek na zariadení. Povoľte toto nastavenie aby sa namiesto toho načítavali obrázky zo servera.",
"advanced_settings_prefer_remote_title": "Preferovať vzdialené obrázky",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "Preskakuje overovanie SSL certifikátom zo strany servera. Vyžaduje sa pre samo-podpísané certifikáty.",
"advanced_settings_self_signed_ssl_title": "Povoliť samo-podpísané SSL certifikáty",
"advanced_settings_tile_subtitle": "Pokročilé nastavenia používateľa",
"advanced_settings_troubleshooting_subtitle": "Povoliť ďalšie funkcie pre opravu chýb",
"advanced_settings_troubleshooting_title": "Oprava chýb",
"age_months": "Vek {months, plural, one {# month} other {# months}}",
"age_year_months": "Vek 1 rok, {months, plural, one {# month} other {# months}}",
"age_years": "{years, plural, other {Vek #}}",
@@ -371,6 +384,8 @@
"album_cover_updated": "Obal albumu aktualizovaný",
"album_delete_confirmation": "Ste si istý, že chcete odstrániť album {album}?",
"album_delete_confirmation_description": "Ak je tento album zdieľaný, ostatní používatelia k nemu už nebudú mať prístup.",
"album_info_card_backup_album_excluded": "VYLÚČENÉ",
"album_info_card_backup_album_included": "ZAHRNUTÉ",
"album_info_updated": "Informácie albumu aktualizované",
"album_leave": "Opustiť album?",
"album_leave_confirmation": "Ste si istý, že chcete opustiť album {album}?",
@@ -379,10 +394,22 @@
"album_remove_user": "Odstrániť používateľa?",
"album_remove_user_confirmation": "Ste si istý, že chcete odstrániť používateľa {user}?",
"album_share_no_users": "Vyzerá to, že ste tento album zdieľali so všetkými používateľmi alebo nemáte žiadneho používateľa, s ktorým by ste ho mohli zdieľať.",
"album_thumbnail_card_item": "1 položka",
"album_thumbnail_card_items": "{} položiek",
"album_thumbnail_card_shared": "Zdieľané",
"album_thumbnail_shared_by": "Zdieľané od {}",
"album_updated": "Album bol aktualizovaný",
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
"album_user_left": "Opustil {album}",
"album_user_removed": "Odstránený {user}",
"album_viewer_appbar_delete_confirm": "Ste si istý že chcete vymazať tento album z vášho účtu?",
"album_viewer_appbar_share_err_delete": "Nepodarilo sa odstrániť album",
"album_viewer_appbar_share_err_leave": "Nepodarilo sa ukončiť album",
"album_viewer_appbar_share_err_remove": "Pri odstraňovaní súborov z albumu sa vyskytli problémy.",
"album_viewer_appbar_share_err_title": "Nepodarilo sa zmeniť názov albumu",
"album_viewer_appbar_share_leave": "Opustiť album",
"album_viewer_appbar_share_to": "Zdieľať s",
"album_viewer_page_share_add_users": "Pridať používateľov",
"album_with_link_access": "Umožnite komukoľvek s odkazom pozrieť si fotky a ľudí v tomto albume.",
"albums": "Albumy",
"albums_count": "{count, plural, one {{count, number} Album} other {{count, number} Albumov}}",
@@ -400,42 +427,133 @@
"api_key_description": "Táto hodnota sa zobrazí iba raz. Pred zatvorením okna ju určite skopírujte.",
"api_key_empty": "Názov vášho API kĺuča by nemal byť prázdny",
"api_keys": "API Kľúče",
"app_bar_signout_dialog_content": "Skutočne sa chcete odhlásiť?",
"app_bar_signout_dialog_ok": "Áno",
"app_bar_signout_dialog_title": "Odhlásiť sa",
"app_settings": "Nastavenia Aplikácie",
"appears_in": "Vyskytuje sa v",
"archive": "Archivovať",
"archive_or_unarchive_photo": "Archivácia alebo odarchivovanie fotografie",
"archive_page_no_archived_assets": "Žiadne archivované médiá",
"archive_page_title": "Archív ({})",
"archive_size": "Veľkosť archívu",
"archive_size_description": "Konfigurácia veľkosti archívu na stiahnutie (v GiB)",
"archived": "Archived",
"archived_count": "{count, plural, other {Archivovaných #}}",
"are_these_the_same_person": "Ide o tú istú osobu?",
"are_you_sure_to_do_this": "Ste si istý, že to chcete urobiť?",
"asset_action_delete_err_read_only": "Nemožno vymazať položku len na čítanie, preskakujem",
"asset_action_share_err_offline": "Nemožno načítať offline položku, preskakujem",
"asset_added_to_album": "Pridané do albumu",
"asset_adding_to_album": "Pridáva sa do albumu…",
"asset_description_updated": "Popis média bol aktualizovaný",
"asset_filename_is_offline": "Médium {filename} je offline",
"asset_has_unassigned_faces": "Položka má nepriradené tváre",
"asset_hashing": "Hašovanie…",
"asset_list_group_by_sub_title": "Zoskupiť podľa",
"asset_list_layout_settings_dynamic_layout_title": "Dynamické rozloženie",
"asset_list_layout_settings_group_automatically": "Automaticky",
"asset_list_layout_settings_group_by": "Zoskupiť položky podľa",
"asset_list_layout_settings_group_by_month_day": "Mesiac + deň",
"asset_list_layout_sub_title": "Rozvrhnutie",
"asset_list_settings_subtitle": "Nastavenia rozloženia mriežky fotografií",
"asset_list_settings_title": "Fotografická mriežka",
"asset_offline": "Médium je offline",
"asset_offline_description": "Toto externý obsah sa už nenachádza na disku. Požiadajte o pomoc svojho správcu Immich.",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "Preskočené",
"asset_skipped_in_trash": "V koši",
"asset_uploaded": "Nahrané",
"asset_uploading": "Nahráva sa…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Zobrazovač položiek",
"assets": "Položky",
"assets_added_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položek}}",
"assets_added_to_album_count": "Do albumu {count, plural, one {bola pridaná # položka} few {boli pridané # položky} other {bolo pridaných # položiek}}",
"assets_added_to_name_count": "{count, plural, one {Pridaná # položka} few {Pridané # položky} other {Pridaných # položiek}} do {hasName, select, true {alba <b>{name}</b>} other {nového albumu}}",
"assets_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "Do koša {count, plural, one {bola presunutá # položka} few {boli presunuté # položky} other {bolo presunutých # položiek}}",
"assets_permanently_deleted_count": "Trvalo {count, plural, one {vymazaná # položka} few {vymazané # položky} other {vymazaných # položiek}}",
"assets_removed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "Naozaj chcete obnoviť všetky vyhodené položky? Túto akciu nie je možné vrátiť späť! Upozorňujeme, že týmto spôsobom nie je možné obnoviť žiadne offline položky.",
"assets_restored_count": "{count, plural, one {Obnovená # položka} few {Obnovené # položky} other {Obnovených # položiek}}",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Položka bola} other {Položky boli}} súčasťou albumu",
"authorized_devices": "Autorizované zariadenia",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "Späť",
"back_close_deselect": "Späť, zavrieť alebo zrušiť výber",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albumy v zariadení ({})",
"backup_album_selection_page_albums_tap": "Ťuknutím na položku ju zahrniete, dvojitým ťuknutím ju vylúčite",
"backup_album_selection_page_assets_scatter": "Súbory môžu byť roztrúsené vo viacerých albumoch. To umožňuje zahrnúť alebo vylúčiť albumy počas procesu zálohovania.",
"backup_album_selection_page_select_albums": "Vybrané albumy",
"backup_album_selection_page_selection_info": "Informácie o výbere",
"backup_album_selection_page_total_assets": "Celkový počet jedinečných súborov",
"backup_all": "Všetko",
"backup_background_service_backup_failed_message": "Zálohovanie médií zlyhalo. Skúšam to znova...",
"backup_background_service_connection_failed_message": "Nepodarilo sa pripojiť k serveru. Skúšam to znova...",
"backup_background_service_current_upload_notification": "Nahrávanie {}",
"backup_background_service_default_notification": "Kontrola nových médií {}",
"backup_background_service_error_title": "Chyba zálohovania",
"backup_background_service_in_progress_notification": "Vytváram kópiu vašich médií...",
"backup_background_service_upload_failure_notification": "Nepodarilo sa nahrať {}",
"backup_controller_page_albums": "Zálohované albumy",
"backup_controller_page_background_app_refresh_disabled_content": "Ak chcete používať zálohovanie na pozadí, povoľte obnovovanie aplikácií na pozadí v ponuke Nastavenia > Všeobecné > Obnovovanie aplikácií na pozadí.",
"backup_controller_page_background_app_refresh_disabled_title": "Obnovovanie aplikácií na pozadí je vypnuté.",
"backup_controller_page_background_app_refresh_enable_button_text": "Prejsť do nastavení",
"backup_controller_page_background_battery_info_link": "Ukáž mi ako",
"backup_controller_page_background_battery_info_message": "Ak chcete dosiahnuť najlepšie výsledky pri zálohovaní na pozadí, vypnite všetky optimalizácie batérie, ktoré obmedzujú aktivitu na pozadí pre Immich vo vašom zariadení. Keďže to závisí od zariadenia, skontrolujte požadované informácie pre výrobcu vášho zariadenia.",
"backup_controller_page_background_battery_info_ok": "OK",
"backup_controller_page_background_battery_info_title": "Optimalizácia batérie",
"backup_controller_page_background_charging": "Len počas nabíjania",
"backup_controller_page_background_configure_error": "Nepodarilo sa nakonfigurovať službu na pozadí",
"backup_controller_page_background_delay": "Oneskorenie zálohovania nových médií: {}",
"backup_controller_page_background_description": "Povoľte službu na pozadí na automatické zálohovanie všetkých nových aktív bez nutnosti otvorenia aplikácie",
"backup_controller_page_background_is_off": "Automatické zálohovanie na pozadí je vypnuté",
"backup_controller_page_background_is_on": "Automatické zálohovanie na pozadí je zapnuté",
"backup_controller_page_background_turn_off": "Vypnúť zálohovanie na pozadí",
"backup_controller_page_background_turn_on": "Povoliť zálohovanie na pozadí",
"backup_controller_page_background_wifi": "Len cez WiFi",
"backup_controller_page_backup": "Zálohovanie",
"backup_controller_page_backup_selected": "Vybrané: ",
"backup_controller_page_backup_sub": "Zálohované fotografie a videa",
"backup_controller_page_created": "Vytvorené: {}",
"backup_controller_page_desc_backup": "Zapnite zálohovanie na popredí, aby sa nové položky automaticky nahrávali na server pri otvorení aplikácie.",
"backup_controller_page_excluded": "Vylúčené: ",
"backup_controller_page_failed": "Nepodarilo sa ({})",
"backup_controller_page_filename": "Názov súboru: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Informácie o zálohovaní",
"backup_controller_page_none_selected": "Žiadne vybrané",
"backup_controller_page_remainder": "Zostáva",
"backup_controller_page_remainder_sub": "Zostávajúce fotografie a videá, ktoré sa majú zálohovať z výbraných albumov",
"backup_controller_page_server_storage": "Serverové úložisko",
"backup_controller_page_start_backup": "Spustiť zálohovanie",
"backup_controller_page_status_off": "Automatické zálohovanie na popredí je vypnuté",
"backup_controller_page_status_on": "Automatické zálohovanie na popredí je zapnuté",
"backup_controller_page_storage_format": "{} z {} použitých",
"backup_controller_page_to_backup": "Albumy ktoré budú zálohované",
"backup_controller_page_total_sub": "Všetky jedinečné fotografie a videá z vybraných albumov",
"backup_controller_page_turn_off": "Vypnúť zálohovanie na popredí",
"backup_controller_page_turn_on": "Povoliť zálohovanie na popredí",
"backup_controller_page_uploading_file_info": "Nahrávaný súbor",
"backup_err_only_album": "Nie je možné odstrániť jediný vybraný album",
"backup_info_card_assets": "položiek",
"backup_manual_cancelled": "Zrušené",
"backup_manual_in_progress": "Nahrávanie už prebieha. Vyskúšajte neskôr",
"backup_manual_success": "Úspech",
"backup_manual_title": "Stav nahrávania",
"backup_options_page_title": "Možnosti zálohovania",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "Spätne",
"birthdate_saved": "Dátum narodenia bol úspešne uložený",
"birthdate_set_description": "Dátum narodenia sa používa na výpočet veku tejto osoby v čase fotografie.",
@@ -447,24 +565,52 @@
"bulk_keep_duplicates_confirmation": "Naozaj chceš ponechať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto sa vysporiadaš so všetkými duplicitnými skupinami bez mazania súborov.",
"bulk_trash_duplicates_confirmation": "Naozaj chcete hromadne vymazať {count, plural, one {# duplicitný súbor} other {# duplicitné súbory}}? Týmto si ponecháš z každej skupiny najväčší súbor a vymažeš všetky ostatné duplicitné súbory v skupine.",
"buy": "Kúpiť Immich",
"cache_settings_album_thumbnails": "Náhľady stránok knižnice (položiek {})",
"cache_settings_clear_cache_button": "Vymazať vyrovnávaciu pamäť",
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávaciu pamäť aplikácie. To výrazne ovplyvní výkon aplikácie, kým sa vyrovnávacia pamäť neobnoví.",
"cache_settings_duplicated_assets_clear_button": "VYMAZAŤ",
"cache_settings_duplicated_assets_subtitle": "Fotky a videá ktoré sú na čiernej listine zvolené aplikáciou",
"cache_settings_duplicated_assets_title": "Duplikáty ({})",
"cache_settings_image_cache_size": "Veľkosť vyrovnávacej pamäte (položiek {})",
"cache_settings_statistics_album": "Knižnica náhľadov",
"cache_settings_statistics_assets": "{} položky ({})",
"cache_settings_statistics_full": "Kompletné fotografie",
"cache_settings_statistics_shared": "Zdieľané náhľady albumov",
"cache_settings_statistics_thumbnail": "Náhľady",
"cache_settings_statistics_title": "Použitie vyrovnávacej pamäte",
"cache_settings_subtitle": "Ovládanie správania mobilnej aplikácie Immich v medzipamäti",
"cache_settings_thumbnail_size": "Veľkosť vyrovnávacej pamäte náhľadov (položiek {})",
"cache_settings_tile_subtitle": "Ovládanie správania lokálneho úložiska",
"cache_settings_tile_title": "Lokálne úložisko",
"cache_settings_title": "Nastavenia vyrovnávacej pamäte",
"camera": "Fotoaparát",
"camera_brand": "Výrobca fotoaparátu",
"camera_model": "Model fotoaparátu",
"cancel": "Zrušiť",
"cancel_search": "Zrušiť vyhľadávanie",
"canceled": "Canceled",
"cannot_merge_people": "Nie je možné zlúčiť ľudí",
"cannot_undo_this_action": "Túto akciu nemôžete vrátiť späť!",
"cannot_update_the_description": "Popis nie je možné aktualizovať",
"change_date": "Upraviť dátum",
"change_display_order": "Change display order",
"change_expiration_time": "Zmeniť čas vypršania",
"change_location": "Upraviť lokáciu",
"change_name": "Upraviť meno",
"change_name_successfully": "Meno bolo zmenené",
"change_password": "Zmeniť Heslo",
"change_password_description": "Buď sa do systému prihlasujete prvýkrát, alebo bola podaná žiadosť o zmenu hesla. Nižšie zadajte nové heslo.",
"change_password_form_confirm_password": "Potvrďte heslo",
"change_password_form_description": "Dobrý deň, {name},\n\nBuď sa do systému prihlasujete prvýkrát, alebo bola podaná žiadosť o zmenu hesla. Prosím, zadajte nové heslo nižšie.",
"change_password_form_new_password": "Nové heslo",
"change_password_form_password_mismatch": "Heslá sa nezhodujú",
"change_password_form_reenter_new_password": "Znova zadajte nové heslo",
"change_your_password": "Zmeňte si heslo",
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
"check_all": "Skontrolovať Všetko",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "Skontrolovať logy",
"choose_matching_people_to_merge": "Vyberte rovnakých ľudí na zlúčenie",
"city": "Mesto",
@@ -473,6 +619,14 @@
"clear_all_recent_searches": "Vymazať nedávne vyhľadávania",
"clear_message": "Vymazať správu",
"clear_value": "Vymazať hodnotu",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "V smere hodinových ručičiek",
"close": "Zatvoriť",
"collapse": "Zbaliť",
@@ -483,6 +637,9 @@
"comment_options": "Možnosti komentára",
"comments_and_likes": "Komentáre a páči sa mi to",
"comments_are_disabled": "Komentáre sú vypnuté",
"common_create_new_album": "Vytvoriť nový album",
"common_server_error": "Skontrolujte svoje sieťové pripojenie, uistite sa, že server je dostupný a verzie aplikácie/server sú kompatibilné.",
"completed": "Completed",
"confirm": "Potvrdiť",
"confirm_admin_password": "Potvrdiť Administrátorské Heslo",
"confirm_delete_face": "Naozaj chcete z položky odstrániť tvár osoby {name}?",
@@ -492,6 +649,15 @@
"contain": "Obsiahnúť",
"context": "Kontext",
"continue": "Pokračovať",
"control_bottom_app_bar_album_info_shared": "{} položiek - zdieľané",
"control_bottom_app_bar_create_new_album": "Vytvoriť nový album",
"control_bottom_app_bar_delete_from_immich": "Vymazať z Immichu",
"control_bottom_app_bar_delete_from_local": "Vymazať zo zariadenia",
"control_bottom_app_bar_edit_location": "Upraviť polohu",
"control_bottom_app_bar_edit_time": "Upraviť dátum a čas",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Share To",
"control_bottom_app_bar_trash_from_immich": "Presunúť do koša",
"copied_image_to_clipboard": "Obrázok skopírovaný do schránky.",
"copied_to_clipboard": "Skopírované do schránky!",
"copy_error": "Chyba pri kopírovaní",
@@ -506,24 +672,34 @@
"covers": "Dlaždice",
"create": "Vytvoriť",
"create_album": "Vytvoriť album",
"create_album_page_untitled": "Bez názvu",
"create_library": "Vytvoriť knižnicu",
"create_link": "Vytvoriť odkaz",
"create_link_to_share": "Vytvoriť odkaz na zdieľanie",
"create_link_to_share_description": "Umožniť každému kto má odkaz zobraziť vybrané fotografie",
"create_new": "CREATE NEW",
"create_new_person": "Vytvoriť novú osobu",
"create_new_person_hint": "Priradiť vybrané položky novej osobe",
"create_new_user": "Vytvorenie nového používateľa",
"create_shared_album_page_share_add_assets": "Pridať položky",
"create_shared_album_page_share_select_photos": "Vybrať fotografie",
"create_tag": "Vytvoriť značku",
"create_tag_description": "Vytvorenie nového štítku. Pre Vnorené štítky, prosím, zadaj celú cestu štítku, vrátane lomítok vpred.",
"create_user": "Vytvoriť používateľa",
"created": "Vytvorené",
"crop": "Crop",
"curated_object_page_title": "Veci",
"current_device": "Súčasné zariadenie",
"current_server_address": "Current server address",
"custom_locale": "Vlastná Lokalizácia",
"custom_locale_description": "Formátovanie dátumov a čísel podľa jazyka a regiónu",
"daily_title_text_date": "EEEE, d. MMMM",
"daily_title_text_date_year": "EEEE, d. MMMM y",
"dark": "Tmavý",
"date_after": "Dátum po",
"date_and_time": "Dátum a Čas",
"date_before": "Dátum pred",
"date_format": "EEEE, d. MMMM y • H:mm",
"date_of_birth_saved": "Dátum narodenia úspešne uložený",
"date_range": "Rozsah dátumu",
"day": "Deň",
@@ -537,19 +713,30 @@
"delete": "Vymazať",
"delete_album": "Odstrániť album",
"delete_api_key_prompt": "Naozaj chcete odstrániť tento API kľúč?",
"delete_dialog_alert": "Tieto položky budú natrvalo odstránené z Immich a z vášho zariadenia.",
"delete_dialog_alert_local": "Tieto položky budú permanentne vymazané z vašeho zariadenia, ale budú stále k dispozícií na serveri Immich",
"delete_dialog_alert_local_non_backed_up": "Niektoré položky nie sú zálohované na Immichi a budú permanentne vymazané z vášho zariadenia",
"delete_dialog_alert_remote": "Tieto položky budú permanentne vymazané zo serveru Immich",
"delete_dialog_ok_force": "Napriek tomu vymazať",
"delete_dialog_title": "Vymazať natrvalo",
"delete_duplicates_confirmation": "Naozaj chcete nenávratne odstrániť tieto duplikáty?",
"delete_face": "Odstrániť tvár",
"delete_key": "Odstrániť kľúč",
"delete_library": "Vymazať knižnicu",
"delete_link": "Odstrániť odkaz",
"delete_local_dialog_ok_backed_up_only": "Vymazať len zálohované",
"delete_local_dialog_ok_force": "Napriek tomu vymazať",
"delete_others": "Vymazať ostatné",
"delete_shared_link": "Odstrániť zdieľaný odkaz",
"delete_shared_link_dialog_title": "Odstrániť zdieľaný odkaz",
"delete_tag": "Odstrániť označenie",
"delete_tag_confirmation_prompt": "Naozaj chcete odstrániť štítok menom {tagName}?",
"delete_user": "Vymazať používateľa",
"deleted_shared_link": "Vymazaný zdieľaný odkaz",
"deletes_missing_assets": "Chýbajú vymazané položky z disku",
"description": "Popis",
"description_input_hint_text": "Pridať popis...",
"description_input_submit_error": "Chyba pri aktualizovaní popisu, zobrazte log pre viac detailov",
"details": "Podrobnosti",
"direction": "Smer",
"disabled": "Vypnuté",
@@ -566,12 +753,26 @@
"documentation": "Dokumentácia",
"done": "Hotovo",
"download": "Stiahnuť",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "Vložené videá",
"download_include_embedded_motion_videos_description": "Zahrnúť videá vložené do pohyblivých fotiek ako samostatné súbory",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "Stiahnuť",
"download_settings_description": "Spravovať nastavenia súvisiace so sťahovaním položiek",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "Sťahuje sa",
"downloading_asset_filename": "Sťahuje sa položka {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "Hoď súbory kdekoľvek, nahrajú sa",
"duplicates": "Duplikáty",
"duplicates_description": "Vysporiadať sa s každou skupinou tak, že sa duplicitné označia ako duplicitné",
@@ -588,6 +789,7 @@
"edit_key": "Upraviť kľúč",
"edit_link": "Upraviť odkaz",
"edit_location": "Upraviť polohu",
"edit_location_dialog_title": "Poloha",
"edit_name": "Upraviť meno",
"edit_people": "Upraviť osoby",
"edit_tag": "Upraiť značku",
@@ -600,14 +802,19 @@
"editor_crop_tool_h2_aspect_ratios": "Pomer strán",
"editor_crop_tool_h2_rotation": "Rotovanie",
"email": "E-mail",
"empty_folder": "This folder is empty",
"empty_trash": "Vyprázdniť kôš",
"empty_trash_confirmation": "Naozaj chcete vyprázdniť kôš? Nenávratne sa vymažú všetky položky z Immich.\nTáto akcia sa nedá vrátiť!",
"enable": "Aktivovať",
"enabled": "Aktivovaný",
"end_date": "Koncový dátum",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "Chyba",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "Chyba pri odstraňovaní tváre z položky",
"error_loading_image": "Nepodarilo sa načítať obrázok",
"error_saving_image": "Error: {}",
"error_title": "Chyba - niečo sa pokazilo",
"errors": {
"cannot_navigate_next_asset": "Nedokážem prejsť na ďaľšiu položku",
@@ -736,8 +943,21 @@
"unable_to_upload_file": "Nie je možné nahrať súbor"
},
"exif": "Exif",
"exif_bottom_sheet_description": "Pridať popis...",
"exif_bottom_sheet_details": "PODROBNOSTI",
"exif_bottom_sheet_location": "LOKALITA",
"exif_bottom_sheet_people": "ĽUDIA",
"exif_bottom_sheet_person_add_person": "Pridať meno",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Opustiť Slideshow",
"expand_all": "Rozbaliť všetko",
"experimental_settings_new_asset_list_subtitle": "Prebiehajúca práca",
"experimental_settings_new_asset_list_title": "Povolenie experimentálnej mriežky fotografií",
"experimental_settings_subtitle": "Používajte na vlastné riziko!",
"experimental_settings_title": "Experimentálne",
"expire_after": "Expiruje po",
"expired": "Vypršalo",
"expires_date": "Expiruje {date}",
@@ -748,11 +968,16 @@
"extension": "Rozšírenie",
"external": "Externý",
"external_libraries": "Externé knižnice",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "Nepriradená",
"failed": "Failed",
"failed_to_load_assets": "Nepodarilo sa načítať položky",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Obľúbené",
"favorite_or_unfavorite_photo": "Označiť fotku ako obľúbenú alebo neobľúbenú",
"favorites": "Obľúbené",
"favorites_page_no_favorites": "Žiadne obľúbené médiá",
"feature_photo_updated": "Hlavný obrázok bol aktualizovaný",
"features": "Funkcie",
"features_setting_description": "Spravovať funkcie aplikácie",
@@ -760,25 +985,38 @@
"file_name_or_extension": "Názov alebo prípona súboru",
"filename": "Meno súboru",
"filetype": "Typ súboru",
"filter": "Filter",
"filter_people": "Filtrovať ľudí",
"find_them_fast": "Nájdite ich rýchlejšie podľa mena",
"fix_incorrect_match": "Opraviť nesprávnu zhodu",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Priečinky",
"folders_feature_description": "Prehliadanie zobrazenia priečinka s fotografiami a videami na súborovom systéme",
"forward": "Dopredu",
"general": "Všeobecné",
"get_help": "Získať pomoc",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "Začíname",
"go_back": "Vrátiť sa späť",
"go_to_folder": "Prejsť do priečinka",
"go_to_search": "Prejsť na vyhľadávanie",
"grant_permission": "Grant permission",
"group_albums_by": "Zoskupiť albumy podľa...",
"group_country": "Zoskupenie podľa krajiny",
"group_no": "Nezoskupovať",
"group_owner": "Zoskupiť podľa vlastníka",
"group_places_by": "Zoskupte miesta podľa...",
"group_year": "Zoskupiť podľa roku",
"haptic_feedback_switch": "Povoliť hmatovú odozvu",
"haptic_feedback_title": "Hmatová odozva",
"has_quota": "Má kvótu",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "Ahoj {name} ({email})",
"hide_all_people": "Skryť všetky osoby",
"hide_gallery": "Skryť galériu",
@@ -786,8 +1024,24 @@
"hide_password": "Skryť heslo",
"hide_person": "Skryť osobu",
"hide_unnamed_people": "Skryť osoby bez mena",
"home_page_add_to_album_conflicts": "Pridané {added} položiek do albumu {album}. {failed} položiek už je v albume.",
"home_page_add_to_album_err_local": "Zatiaľ nie je možné pridať lokálne média do albumov, preskakuje sa",
"home_page_add_to_album_success": "Pridané {added} položky do albumu {album}.",
"home_page_album_err_partner": "Na teraz nemôžete pridať partnerove médiá do albumov",
"home_page_archive_err_local": "Zatiaľ nemožno archivovať lokálne médiá, preskakuje sa",
"home_page_archive_err_partner": "Na teraz nemôžete premiestniť partnerove médiá do archívu",
"home_page_building_timeline": "Vytváranie časovej osi",
"home_page_delete_err_partner": "Na teraz nemôžete odstrániť partnerove médiá",
"home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping",
"home_page_favorite_err_local": "Zatiaľ nie je možné zaradiť lokálne média medzi obľúbené, preskakuje sa",
"home_page_favorite_err_partner": "Na teraz nemôžete pridať partnerove médiá medzi obľúbené",
"home_page_first_time_notice": "Ak aplikáciu používate prvý krát, nezabudnite si vybrať zálohované albumy, aby sa na časovej osi mohli nachádzať fotografie a videá z vybraných albumoch.",
"home_page_share_err_local": "Nemožno zdieľať lokálne médiá pomocou odkazu",
"home_page_upload_err_limit": "Naraz môžete nahrať len 30 médií, preskakujem...",
"host": "Hostiteľ",
"hour": "Hodina",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "Obrázok",
"image_alt_text_date": "{isVideo, select, true {Video} other {Image}} nasnímané {date}",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} nasnímané s {person1} dňa {date}",
@@ -799,6 +1053,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Obrázok}} v {city}, {country} s {person1} a {person2} zo dňa {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Obrázok}} zo dňa {date} v {city}, {country} s {person1}, {person2} a {person3}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Obrázok}} nasnímaný v {city}, {country} s {person1}, {person2} a {additionalCount, number} inými dňa {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "Sťahovanie sa začalo",
"image_viewer_page_state_provider_download_success": "Sťahovanie bolo úspešné",
"image_viewer_page_state_provider_share_error": "Chyba zdieľania",
"immich_logo": "Logo Immich",
"immich_web_interface": "Webové rozhranie Immich",
"import_from_json": "Importovať z JSON",
@@ -817,6 +1075,8 @@
"night_at_midnight": "Každý deň o polnoci",
"night_at_twoam": "Každú noc o 2:00"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "Pozvať ľudí",
"invite_to_album": "Pozvať do albumu",
"items_count": "{count, plural, one {# položka} few {# položky} other {# položiek}}",
@@ -837,6 +1097,12 @@
"level": "Level",
"library": "Knižnica",
"library_options": "Možnosti knižnice",
"library_page_device_albums": "Albumy v zariadení",
"library_page_new_album": "Nový album",
"library_page_sort_asset_count": "Počet položiek",
"library_page_sort_created": "Najnovšie vytvorené",
"library_page_sort_last_modified": "Naposledy upravené",
"library_page_sort_title": "Podľa názvu albumu",
"light": "Svetlý",
"like_deleted": "Like odstránený",
"link_motion_video": "Pripojiť pohyblivé video",
@@ -846,12 +1112,42 @@
"list": "Zoznam",
"loading": "Načítavanie",
"loading_search_results_failed": "Načítanie výsledkov hľadania sa nepodarilo",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Zvoľte mapu",
"location_picker_latitude_error": "Zadajte platnú zemepisnú dĺžku",
"location_picker_latitude_hint": "Zadajte sem vašu zemepisnú dĺžku",
"location_picker_longitude_error": "Zadajte platnú zemepisnú dĺžku",
"location_picker_longitude_hint": "Zadajte platnú zemepisnú šírku",
"log_out": "Odhlásiť sa",
"log_out_all_devices": "Odhlásiť všetky zariadenia",
"logged_out_all_devices": "Všetky zariadenia odhlásené",
"logged_out_device": "Zariadenie odhlásené",
"login": "Prihlásenie",
"login_disabled": "Prihlasovanie bolo vypnuté",
"login_form_api_exception": "Chyba API. Skontrolujte adresu URL servera a skúste to znova.",
"login_form_back_button_text": "Späť",
"login_form_email_hint": "tvojmail@email.com",
"login_form_endpoint_hint": "http://ip-tvojho-servera:port",
"login_form_endpoint_url": "URL adresa servera",
"login_form_err_http": "Prosím, uveďte http:// alebo https://",
"login_form_err_invalid_email": "Neplatný e-mail",
"login_form_err_invalid_url": "Neplatná URL adresa",
"login_form_err_leading_whitespace": "Úvodná medzera",
"login_form_err_trailing_whitespace": "Koncové medzera",
"login_form_failed_get_oauth_server_config": "Chyba prihlásenia pomocou OAuth, skontrolujte adresu URL servera",
"login_form_failed_get_oauth_server_disable": "Funkcia OAuth nie je na tomto serveri dostupná",
"login_form_failed_login": "Chyba prihlásenia, skontrolujte url adresu servera, e-mail a heslo.",
"login_form_handshake_exception": "Nastala chyba handshake. Zapnite podoporu samo-podpísaných certifikátov v nastaveniach ak používate samo-podpísané certifikáty.",
"login_form_password_hint": "heslo",
"login_form_save_login": "Zostať prihlásený",
"login_form_server_empty": "Zadajte URL servera",
"login_form_server_error": "Nemožno pripojiť na server.",
"login_has_been_disabled": "Prihlásenie bolo vypnuté.",
"login_password_changed_error": "Nastala chyba pri aktualizovaní hesla",
"login_password_changed_success": "Aktualizácia hesla prebehla úspešne",
"logout_all_device_confirmation": "Ste si istý, že sa chcete odhlásiť zo všetkých zariadení?",
"logout_this_device_confirmation": "Ste si istý, že sa chcete odhlásiť z tohoto zariadenia?",
"longitude": "Zemepisná dĺžka",
@@ -868,13 +1164,40 @@
"manage_your_devices": "Spravovať vaše prihlásené zariadenia",
"manage_your_oauth_connection": "Spravovať vaše OAuth spojenia",
"map": "Mapa",
"map_assets_in_bound": "{} fotka",
"map_assets_in_bounds": "{} fotiek",
"map_cannot_get_user_location": "Nemožno získať polohu používateľa",
"map_location_dialog_yes": "Áno",
"map_location_picker_page_use_location": "Použiť túto polohu",
"map_location_service_disabled_content": "Služba polohovania musí byť zapnutá aby médiá zobrazovali vašu aktuálnu polohu. Chcete ju zapnúť?",
"map_location_service_disabled_title": "Služba polohovania vypnutá",
"map_marker_for_images": "Značka na mape pre obrázky odfotené v {city}, {country}",
"map_marker_with_image": "Mapová značka pre obrázok",
"map_no_assets_in_bounds": "Nič tu nie je",
"map_no_location_permission_content": "Povolenie polohy je potrebné aby sa zobrazovali médiá z vašej aktuálnej polohy. Chcete udeliť toto povolenie?",
"map_no_location_permission_title": "Udelenie polohy zamietnuté",
"map_settings": "Nastavenia máp",
"map_settings_dark_mode": "Tmavý režim",
"map_settings_date_range_option_day": "Posledných 24 hodín",
"map_settings_date_range_option_days": "Po {} dňoch",
"map_settings_date_range_option_year": "Uplynulý rok",
"map_settings_date_range_option_years": "Po {} rokoch",
"map_settings_dialog_title": "Nastavenia máp",
"map_settings_include_show_archived": "Zahrnúť archivované",
"map_settings_include_show_partners": "Zahrnúť partnerov",
"map_settings_only_show_favorites": "Zobraziť iba obľúbené",
"map_settings_theme_settings": "Téma mapy",
"map_zoom_to_see_photos": "Oddiaľte priblíženie aby ste videli fotky",
"matches": "Zhody",
"media_type": "Typ média",
"memories": "Spomienky",
"memories_all_caught_up": "Na dnes to je všetko",
"memories_check_back_tomorrow": "Vráťte sa zajtra pre ďalšie spomienky",
"memories_setting_description": "Spravuje čo vidíte v spomienkach",
"memories_start_over": "Začať odznova",
"memories_swipe_to_close": "Zatvoríte posunom nahor",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "Pamäť",
"memory_lane_title": "Pás spomienok {title}",
"menu": "Menu",
@@ -889,12 +1212,17 @@
"missing": "Chýbajúce",
"model": "Model",
"month": "Mesiac",
"monthly_title_text_date_format": "LLLL y",
"more": "Viac",
"moved_to_trash": "Presunuté do koša",
"multiselect_grid_edit_date_time_err_read_only": "Nemožno upraviť dátum položky len na čítanie, preskakujem",
"multiselect_grid_edit_gps_err_read_only": "Nemožno upraviť polohu položky len na čítanie, preskakujem",
"mute_memories": "Vyblednutie spomienok",
"my_albums": "Moje albumy",
"name": "Meno",
"name_or_nickname": "Meno alebo prezývka",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "nikdy",
"new_album": "Nový album",
"new_api_key": "Nový API kľúč",
@@ -911,6 +1239,7 @@
"no_albums_yet": "Vyzerá, že zatiaľ nemáte žiadne albumy.",
"no_archived_assets_message": "Archivovať fotografie a videá, aby sa skryli zo zobrazenia Fotografie",
"no_assets_message": "KLIKNITE A NAHRAJTE SVOJU PRVÚ FOTKU",
"no_assets_to_show": "Žiadne položky",
"no_duplicates_found": "Nenašli sa žiadne duplicity.",
"no_exif_info_available": "Nie sú dostupné exif údaje",
"no_explore_results_message": "Nahrajte viac fotiek na objavovanie vašej zbierky.",
@@ -922,9 +1251,13 @@
"no_results_description": "Skúste synonymum alebo všeobecnejší výraz",
"no_shared_albums_message": "Vytvorí album na zdieľanie fotiek a videí s ľuďmi vo vašej sieti",
"not_in_any_album": "Nie je v žiadnom albume",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Poznámka: Ak chcete použiť Štítok úložiska na predtým nahrané médiá, spustite príkaz",
"note_unlimited_quota": "Poznámka: Zadajte 0 pre neobmedzenú kvótu",
"notes": "Poznámky",
"notification_permission_dialog_content": "Ak chcete povoliť upozornenia, prejdite do Nastavenia a vyberte možnosť Povoliť.",
"notification_permission_list_tile_content": "Udeľte oprávnenie k aktivácii oznámení.",
"notification_permission_list_tile_enable_button": "Povoliť upozornenia",
"notification_permission_list_tile_title": "Povolenie oznámení",
"notification_toggle_setting_description": "Povoliť e-mailové upozornenia",
"notifications": "Oznámenia",
"notifications_setting_description": "Spravovať upozornenia",
@@ -935,6 +1268,7 @@
"offline_paths_description": "Tieto výsledky môžu byť kvôli ručnému vymazaniu súborov ktoré nie sú súčasťou externej knižnice.",
"ok": "OK",
"oldest_first": "Najstaršie prvé",
"on_this_device": "On this device",
"onboarding": "Na palube",
"onboarding_privacy_description": "Nasledujúce (voliteľné) funkcie závisia na externých službách, a kedykoľvek ich môžete vypnúť v admin nastaveniach.",
"onboarding_theme_description": "Vyberte farbu témy pre váš server. Môžete to aj neskôr zmeniť vo vašich nastaveniach.",
@@ -958,6 +1292,14 @@
"partner_can_access": "{partner} môže pristupovať",
"partner_can_access_assets": "Všetky vaše fotky a videá, okrem Archivovaných a Odstránených",
"partner_can_access_location": "Miesto kde bola fotka spravená",
"partner_list_user_photos": "Fotky používateľa {user}",
"partner_list_view_all": "Zobraziť všetky",
"partner_page_empty_message": "Vaše fotky zatiaľ nie sú zdieľané so žiadnym partnerom.",
"partner_page_no_more_users": "Žiadni ďalší užívatelia na zdieľanie",
"partner_page_partner_add_failed": "Pridávanie partnera zlyhalo",
"partner_page_select_partner": "Zvoliť partnera",
"partner_page_shared_to_title": "Zdieľané pre",
"partner_page_stop_sharing_content": "{} už nebude mať prístup ku vašim fotkám.",
"partner_sharing": "Zdieľanie s partnerom",
"partners": "Partneri",
"password": "Heslo",
@@ -986,6 +1328,14 @@
"permanently_delete_assets_prompt": "Naozaj si prajete navždy zmazať {count, plural, one {túto položku?} other {týchto <b>#</b> položiek?}} Vymažú sa aj {count, plural, one {zo svojho albumu} other {zo svojich albumov}}.",
"permanently_deleted_asset": "Navždy odstránená položka",
"permanently_deleted_assets_count": "Navždy {count, plural, one {odstránená # položka} other {odstránené # položky}}",
"permission_onboarding_back": "Späť",
"permission_onboarding_continue_anyway": "Pokračovať aj tak",
"permission_onboarding_get_started": "Začať",
"permission_onboarding_go_to_settings": "Prejsť do nastavení",
"permission_onboarding_permission_denied": "Prístup zamietnutý. Ak chcete používať Immich, udeľte v Nastaveniach povolenia na fotografie a videá.",
"permission_onboarding_permission_granted": "Povolenie udelené! Všetko je nastavené.",
"permission_onboarding_permission_limited": "Povolenie obmedzené. Ak chcete, aby Immich zálohoval a spravoval celú vašu zbierku galérie, udeľte v Nastaveniach povolenia na fotografie a videá.",
"permission_onboarding_request": "Immich vyžaduje povolenie na prezeranie vašich fotografií a videí.",
"person": "Osoba",
"person_birthdate": "Narodený dňa {date}",
"person_hidden": "{name}{hidden, select, true { (skryté)} other {}}",
@@ -1003,6 +1353,8 @@
"play_motion_photo": "Prehrať pohyblivú fotku",
"play_or_pause_video": "Pustí alebo pozastaví video",
"port": "Port",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferencie",
"preset": "Prednastavenie",
"preview": "Náhľad",
"previous": "Predošlé",
@@ -1010,6 +1362,13 @@
"previous_or_next_photo": "Predošlá alebo ďalšia fotka",
"primary": "Primárne",
"privacy": "Súkromie",
"profile_drawer_app_logs": "Logy",
"profile_drawer_client_out_of_date_major": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_client_out_of_date_minor": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_client_server_up_to_date": "Klient a server sú aktuálne",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
"profile_drawer_server_out_of_date_minor": "Server je zastaralý. Prosím aktualizujte na najnovšiu verziu.",
"profile_image_of_user": "Profilový obrázok používateľa {user}",
"profile_picture_set": "Profilový obrázok nastavený.",
"public_album": "Verejný album",
@@ -1059,6 +1418,8 @@
"recent": "Nedávne",
"recent-albums": "Posledné albumy",
"recent_searches": "Posledné vyhľadávania",
"recently_added": "Recently added",
"recently_added_page_title": "Nedávno pridané",
"refresh": "Obnoviť",
"refresh_encoded_videos": "Obnoviť enkódované videá",
"refresh_faces": "Obnoviť tváre",
@@ -1115,10 +1476,12 @@
"role_editor": "Editor",
"role_viewer": "Divák",
"save": "Uložiť",
"save_to_gallery": "Save to gallery",
"saved_api_key": "Uložený API Kľúč",
"saved_profile": "Uložený profil",
"saved_settings": "Uložené nastavenia",
"say_something": "Napíšte niečo",
"scaffold_body_error_occurred": "Vyskytla sa chyba",
"scan_all_libraries": "Preskenovať všetky knižnice",
"scan_library": "Skenovať",
"scan_settings": "Nastavenia skenovania",
@@ -1134,16 +1497,45 @@
"search_camera_model": "Hľadať model fotoaparátu...",
"search_city": "Hľadať mesto...",
"search_country": "Hľadať krajinu...",
"search_filter_apply": "Použiť filter",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "Mimo albumu",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "Vyhľadať",
"search_for_existing_person": "Hľadať existujúcu osobu",
"search_no_more_result": "No more results",
"search_no_people": "Žiadne osoby",
"search_no_people_named": "Žiadne osoby menom \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Možnosti hľadania",
"search_page_categories": "Kategórie",
"search_page_motion_photos": "Pohyblivé fotky",
"search_page_no_objects": "Žiadne informácie o objektoch",
"search_page_no_places": "Žiadne informácie o mieste",
"search_page_screenshots": "Snímky obrazovky",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Veci",
"search_page_view_all_button": "Zobraziť všetky",
"search_page_your_activity": "Vaša aktivita",
"search_page_your_map": "Vaša mapa",
"search_people": "Hľadať osoby",
"search_places": "Hľadať miesta",
"search_rating": "Vyhľadávanie podľa hodnotenia...",
"search_result_page_new_search_hint": "Nové vyhľadávanie",
"search_settings": "Hľadať v nastaveniach",
"search_state": "Hľadať štáty...",
"search_suggestion_list_smart_search_hint_1": "Inteligentné vyhľadávanie je predvolene povolené, na vyhľadávanie metadát použite syntax",
"search_suggestion_list_smart_search_hint_2": "m:váš-hľadaný-výraz",
"search_tags": "Hľadať štítky...",
"search_timezone": "Hľadať časovú zónu...",
"search_type": "Typ hľadania",
@@ -1164,10 +1556,14 @@
"select_new_face": "Vybrať novú tvár",
"select_photos": "Vybrať fotky",
"select_trash_all": "Vybrať zahodiť všetky",
"select_user_for_sharing_page_err_album": "Nepodarilo sa vytvoriť album",
"selected": "Vybrané",
"selected_count": "{count, plural, other {# vybrané}}",
"send_message": "Odoslať správu",
"send_welcome_email": "Odoslať uvítací e-mail",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Verzia aplikácie",
"server_info_box_server_url": "URL Serveru",
"server_offline": "Server je Offline",
"server_online": "Server je Online",
"server_stats": "Serverové Štatistiky",
@@ -1179,22 +1575,91 @@
"set_date_of_birth": "Nastaviť dátum narodenia",
"set_profile_picture": "Nastaviť profilový obrázok",
"set_slideshow_to_fullscreen": "Nastaviť prezentáciu na celú obrazovku",
"setting_image_viewer_help": "Prehliadač detailov najprv načíta malú miniatúru, potom načíta náhľad strednej veľkosti (ak je povolený) a nakoniec načíta originál (ak je povolený).",
"setting_image_viewer_original_subtitle": "Povolením umožníte načítať pôvodný obrázok v plnom rozlíšení (veľký!). Zakázaním znížite používania dát (v sieti, aj v dočasnej pamäte zariadenia).",
"setting_image_viewer_original_title": "Načítať pôvodný obrázok",
"setting_image_viewer_preview_subtitle": "Povolením umožníte načítať obrázok so stredným rozlíšením. Zakážte, ak chcete priamo načítať originál alebo použiť iba miniatúru.",
"setting_image_viewer_preview_title": "Načítať náhľad obrázka",
"setting_image_viewer_title": "Obrázky",
"setting_languages_apply": "Použiť",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Jazyky",
"setting_notifications_notify_failures_grace_period": "Oznámenie o zlyhaní zálohovania na pozadí: {}",
"setting_notifications_notify_hours": "{} hodín",
"setting_notifications_notify_immediately": "okamžite",
"setting_notifications_notify_minutes": "{} minút",
"setting_notifications_notify_never": "nikdy",
"setting_notifications_notify_seconds": "{} sekúnd",
"setting_notifications_single_progress_subtitle": "Podrobné informácie o priebehu nahrávania pre položku",
"setting_notifications_single_progress_title": "Zobraziť priebeh detailov zálohovania na pozadí",
"setting_notifications_subtitle": "Prispôsobenie predvolieb oznámení",
"setting_notifications_total_progress_subtitle": "Celkový priebeh nahrávania (nahraných/celkovo)",
"setting_notifications_total_progress_title": "Zobraziť celkový priebeh zálohovania na pozadí",
"setting_video_viewer_looping_title": "Opakovanie",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Nastavenia",
"settings_require_restart": "Na použitie tohto nastavenia reštartujte Immich",
"settings_saved": "Nastavenia boli uložené",
"share": "Zdieľať",
"share_add_photos": "Pridať fotografie",
"share_assets_selected": "{} označených",
"share_dialog_preparing": "Pripravujem...",
"shared": "Zdieľané",
"shared_album_activities_input_disable": "Komentár je zakázaný",
"shared_album_activity_remove_content": "Chcete vymazať túto aktivitu?",
"shared_album_activity_remove_title": "Vymazať aktivitu",
"shared_album_section_people_action_error": "Vyskytla sa chyba pri odchádzaní / odstraňovaní používateľa z albumu",
"shared_album_section_people_action_leave": "Odísť z albumu",
"shared_album_section_people_action_remove_user": "Odstrániť používateľa z albumu",
"shared_album_section_people_title": "ĽUDIA",
"shared_by": "Zdieľa",
"shared_by_user": "Zdieľa {user}",
"shared_by_you": "Zdieľané vami",
"shared_from_partner": "Fotky od {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Zdieľané odkazy",
"shared_link_clipboard_copied_massage": "Skopírované do schránky",
"shared_link_clipboard_text": "Odkaz: {}\nHeslo: {}",
"shared_link_create_error": "Vyskytla sa chyba behom vytvárania zdieľaného odkazu",
"shared_link_edit_description_hint": "Zadajte popis zdieľania",
"shared_link_edit_expire_after_option_day": "1 deň",
"shared_link_edit_expire_after_option_days": "{} dní",
"shared_link_edit_expire_after_option_hour": "1 hodina",
"shared_link_edit_expire_after_option_hours": "{} hodín",
"shared_link_edit_expire_after_option_minute": "1 minúta",
"shared_link_edit_expire_after_option_minutes": "{} minút",
"shared_link_edit_expire_after_option_months": "{} mesiacov",
"shared_link_edit_expire_after_option_year": "{} roky",
"shared_link_edit_password_hint": "Zadajte heslo zdieľania",
"shared_link_edit_submit_button": "Aktualizovať odkaz",
"shared_link_error_server_url_fetch": "Nemožno nájsť URL severa",
"shared_link_expires_day": "Vyprší o {} dní",
"shared_link_expires_days": "Vyprší o {} dní",
"shared_link_expires_hour": "Vyprší o {} hodín",
"shared_link_expires_hours": "Vyprší o {} hodín",
"shared_link_expires_minute": "Vyprší o {} minút",
"shared_link_expires_minutes": "Vyprší o {} minút",
"shared_link_expires_never": "Nevyprší",
"shared_link_expires_second": "Vyprší o {} sekúnd",
"shared_link_expires_seconds": "Vyprší o {} sekúnd",
"shared_link_individual_shared": "Individuálne zdieľané",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Spravovať zdieľané odkazy",
"shared_link_options": "Možnosti zdieľaných odkazov",
"shared_links": "Zdieľané odkazy",
"shared_links_description": "Zdieľanie fotografií a videí pomocou odkazu",
"shared_photos_and_videos_count": "{assetCount, plural, other {# zdieľané fotky a videá.}}",
"shared_with_me": "Shared with me",
"shared_with_partner": "Zdieľané s {partner}",
"sharing": "Zdieľanie",
"sharing_enter_password": "Ak chcete zobraziť túto stránku, prosím, zadajte heslo.",
"sharing_page_album": "Zdieľané albumy",
"sharing_page_description": "Vytvárajte zdieľané albumy a zdieľajte fotografie a videá s ľuďmi vo vašej sieti.",
"sharing_page_empty_list": "Prázdny list",
"sharing_sidebar_description": "Zobraziť odkaz na Zdieľanie v bočnom paneli",
"sharing_silver_appbar_create_shared_album": "Vytvoriť zdieľaný album",
"sharing_silver_appbar_share_partner": "Zdieľať s partnerom",
"shift_to_permanent_delete": "stlačte ⇧ pre nemenné zmazanie pložiek",
"show_album_options": "Zobraziť možnosti albumu",
"show_albums": "Zobraziť albumy",
@@ -1261,6 +1726,9 @@
"support_third_party_description": "Vaša inštalácia Immich bola pripravená treťou stranou. Problémy, ktoré sa vyskytli, môžu byť spôsobené týmto balíčkom, preto sa na nich obráťte v prvom rade cez nasledujúce odkazy.",
"swap_merge_direction": "Vymeniť smer zlúčenia",
"sync": "Synchronizovať",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "Značka",
"tag_assets": "Pridať značku",
"tag_created": "Vytvorená značka: {tag}",
@@ -1274,6 +1742,19 @@
"theme": "Téma",
"theme_selection": "Výber témy",
"theme_selection_description": "Automaticky nastaví tému na svetlú alebo tmavú podľa systémových preferencií v prehliadači",
"theme_setting_asset_list_storage_indicator_title": "Zobraziť indikátor úložiska na dlaždiciach položiek",
"theme_setting_asset_list_tiles_per_row_title": "Počet položiek na riadok ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "Prispôsobenie kvality prehliadača detailov",
"theme_setting_image_viewer_quality_title": "Kvalita prehliadača obrázkov",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "Automaticky (podľa systemového nastavenia)",
"theme_setting_theme_subtitle": "Vyberte nastavenia témy aplikácie",
"theme_setting_three_stage_loading_subtitle": "Trojstupňové načítanie môže zvýšiť výkonnosť načítania, ale vedie k výrazne vyššiemu zaťaženiu siete.",
"theme_setting_three_stage_loading_title": "Povolenie trojstupňového načítavania",
"they_will_be_merged_together": "Zlúčia sa dokopy",
"third_party_resources": "Zdroje tretích strán",
"time_based_memories": "Časové spomienky",
@@ -1293,7 +1774,15 @@
"trash_all": "Všetko do koša",
"trash_count": "{count, number} do koša",
"trash_delete_asset": "Položky do koša/odstrániť",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "Vymazané fotografie a videá sa zobrazia tu.",
"trash_page_delete_all": "Vymazať všetky",
"trash_page_empty_trash_dialog_content": "Skutočne chcete vyprázdniť kôš? Tieto položky budú permanentne odstránené z Immichu",
"trash_page_info": "Médiá v koši sa permanentne odstránia po {} dňoch",
"trash_page_no_assets": "Žiadne médiá v koši",
"trash_page_restore_all": "Obnoviť všetky",
"trash_page_select_assets_btn": "Označiť médiá",
"trash_page_title": "Kôš ({})",
"trashed_items_will_be_permanently_deleted_after": "Položky v koši sa natrvalo vymažú po {days, plural, one {# dni} other {# dňoch}}.",
"type": "Typ",
"unarchive": "Odarchivovať",
@@ -1322,6 +1811,8 @@
"updated_password": "Heslo zmenené",
"upload": "Nahrať",
"upload_concurrency": "Súbežnosť nahrávania",
"upload_dialog_info": "Chcete zálohovať zvolené médiá na server?",
"upload_dialog_title": "Nahrať médiá",
"upload_errors": "Nahrávanie ukončené s {count, plural, one {# chybou} other {# chybami}}, obnovte stránku aby sa zobrazili nové položky.",
"upload_progress": "Ostáva {remaining, number} - Spracovaných {processed, number}/{total, number}",
"upload_skipped_duplicates": "{count, plural, one {Preskočená # duplicita} few {Preskočené # duplicity} other {Preskočených # duplicít}}",
@@ -1329,8 +1820,11 @@
"upload_status_errors": "Chyby",
"upload_status_uploaded": "Nahrané",
"upload_success": "Nahrávanie úspešné, pridané súbory sa zobrazia po obnovení stránky.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "Odkaz URL",
"usage": "Použitie",
"use_current_connection": "use current connection",
"use_custom_date_range": "Použite radšej vlastný rozsah dátumov",
"user": "Používateľ",
"user_id": "Používateľské ID",
@@ -1345,10 +1839,16 @@
"users": "Používatelia",
"utilities": "Nástroje",
"validate": "Validovať",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "Premenné",
"version": "Verzia",
"version_announcement_closing": "Tvoj kamarát, Alex",
"version_announcement_message": "Ahoj! Nová verzia Immich je dostupná. Prosím prečítajte si <link>poznámky k vydaniu</link>, aby ste sa uistili, že inštalácia bude aktuálna bez problémov, najmä ak používate WatchTower alebo akýkoľvek spôsob automatickej aktualizácie Immich servera.",
"version_announcement_overlay_release_notes": "poznámky k vydaniu",
"version_announcement_overlay_text_1": "Ahoj, je tu nová verzia",
"version_announcement_overlay_text_2": "nájdite si čas na návštevu ",
"version_announcement_overlay_text_3": " a uistite sa, že vaša konfigurácia docker-compose a .env je aktuálna, aby ste predišli nesprávnej konfigurácii, najmä ak používate WatchTower alebo akýkoľvek mechanizmus, ktorý podporuje automatické aktualizácie serverových aplikácií.",
"version_announcement_overlay_title": "K dispozícii je nová verzia servera 🎉",
"version_history": "História verzií",
"version_history_item": "Inštalovaná {version} dňa {date}",
"video": "Video",
@@ -1367,15 +1867,20 @@
"view_next_asset": "Zobraziť nasledujúci súbor",
"view_previous_asset": "Zobraziť predchádzajúci súbor",
"view_stack": "Zobraziť zoskupenie",
"viewer_remove_from_stack": "Odstrániť zo zoskupenia",
"viewer_stack_use_as_main_asset": "Použiť ako hlavnú fotku",
"viewer_unstack": "Odskupiť",
"visibility_changed": "Viditeľnosť zmenená pre {count, plural, one {# osobu} other {# ľudí}}",
"waiting": "Čaká",
"warning": "Varovanie",
"week": "Týždeň",
"welcome": "Vitajte",
"welcome_to_immich": "Vitajte v Immich",
"wifi_name": "WiFi Name",
"year": "Rok",
"years_ago": "pred {years, plural, one {# rokom} other {# rokmi}}",
"yes": "Áno",
"you_dont_have_any_shared_links": "Nemáte žiadne zdielané linky",
"your_wifi_name": "Your WiFi name",
"zoom_image": "Priblížiť obrázok"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -159,7 +159,6 @@
"no_pattern_added": "பேட்டர்ன்் சேர்க்கப்படவில்லை",
"note_apply_storage_label_previous_assets": "குறிப்பு: முன்பு பதிவேற்றிய படங்களுக்கு சேமிப்பக லேபிளைப் பயன்படுத்த, இதை இயக்கவும்",
"note_cannot_be_changed_later": "குறிப்பு: இதை பின்னர் மாற்ற முடியாது!",
"note_unlimited_quota": "குறிப்பு: வரம்பற்ற ஒதுக்கீட்டிற்கு 0 ஐ உள்ளிடவும்",
"notification_email_from_address": "முகவரியிலிருந்து",
"notification_email_from_address_description": "அனுப்புநரின் மின்னஞ்சல் முகவரி, எடுத்துக்காட்டாக: \"இம்மிச் புகைப்பட சேவையகம் <noreply@example.com>\"",
"notification_email_host_description": "மின்னஞ்சல் சேவையகத்தின் ஹோஸ்ட் (எடுத்துக்காட்டாக: smtp.immich.app)",
@@ -902,7 +901,6 @@
"no_shared_albums_message": "உங்கள் நெட்வொர்க்கில் உள்ளவர்களுடன் புகைப்படங்களையும் வீடியோக்களையும் பகிர்ந்து கொள்ள ஒரு ஆல்பத்தை உருவாக்கவும்",
"not_in_any_album": "எந்த ஆல்பத்திலும் இல்லை",
"note_apply_storage_label_to_previously_uploaded assets": "குறிப்பு: முன்னர் பதிவேற்றப்பட்ட சொத்துக்களுக்கு சேமிப்பக லேபிளை பயன்படுத்த, இயக்கவும்",
"note_unlimited_quota": "குறிப்பு: வரம்பற்ற ஒதுக்கீட்டிற்கு 0 ஐ உள்ளிடவும்",
"notes": "குறிப்புகள்",
"notification_toggle_setting_description": "மின்னஞ்சல் அறிவிப்புகளை இயக்கவும்",
"notifications": "அறிவிப்புகள்",

View File

@@ -162,7 +162,6 @@
"no_pattern_added": "నమూనా జోడించబడలేదు",
"note_apply_storage_label_previous_assets": "గమనిక: గతంలో అప్‌లోడ్ చేసిన ఆస్తులకు నిల్వ లేబుల్‌ను వర్తింపజేయడానికి, నడపండి",
"note_cannot_be_changed_later": "గమనిక: దీనిని తర్వాత మార్చలేము!",
"note_unlimited_quota": "గమనిక: అపరిమిత కోటా కోసం 0 నమోదు చేయండి",
"notification_email_from_address": "నుండి",
"notification_email_from_address_description": "పంపినవారి ఇమెయిల్ చిరునామా, ఉదాహరణకు: \"Immich Photo Server <noreply@example.com>\"",
"notification_email_host_description": "ఇమెయిల్ సర్వర్ యొక్క హోస్ట్ (ఉదా. smtp.immich.app)",
@@ -923,7 +922,6 @@
"no_shared_albums_message": "మీ నెట్‌వర్క్‌లోని వ్యక్తులతో ఫోటోలు మరియు వీడియోలను భాగస్వామ్యం చేయడానికి ఆల్బమ్‌ను సృష్టించండి",
"not_in_any_album": "ఏ ఆల్బమ్‌లోనూ లేదు",
"note_apply_storage_label_to_previously_uploaded assets": "గమనిక: గతంలో అప్‌లోడ్ చేసిన ఆస్తులకు నిల్వ లేబుల్‌ను వర్తింపజేయడానికి,",
"note_unlimited_quota": "గమనిక: అపరిమిత కోటా కోసం 0ని నమోదు చేయండి",
"notes": "గమనికలు",
"notification_toggle_setting_description": "ఇమెయిల్ నోటిఫికేషన్‌లను ప్రారంభించండి",
"notifications": "నోటిఫికేషన్‌లు",

View File

@@ -4,6 +4,7 @@
"account_settings": "การตั้งค่าบัญชี",
"acknowledge": "รับทราบ",
"action": "ดำเนินการ",
"action_common_update": "อัปเดต",
"actions": "การดำเนินการ",
"active": "ใช้งานอยู่",
"activity": "กิจกรรม",
@@ -13,6 +14,7 @@
"add_a_location": "เพิ่มตำแหน่ง",
"add_a_name": "เพิ่มชื่อ",
"add_a_title": "เพิ่มหัวข้อ",
"add_endpoint": "Add endpoint",
"add_exclusion_pattern": "เพิ่มข้อยกเว้น",
"add_import_path": "เพิ่มเส้นทางนำเข้า",
"add_location": "เพิ่มตำแหน่ง",
@@ -22,6 +24,8 @@
"add_photos": "เพิ่มรูปภาพ",
"add_to": "เพิ่มไปยัง …",
"add_to_album": "เพิ่มไปอัลบั้ม",
"add_to_album_bottom_sheet_added": "เพิ่มไปยัง {album}",
"add_to_album_bottom_sheet_already_exists": "อยู่ใน {album} อยู่แล้ว",
"add_to_shared_album": "เพิ่มไปยังอัลบั้มที่แชร์กัน",
"add_url": "เพิ่ม URL",
"added_to_archive": "เพิ่มไปยังที่จัดเก็บถาวร",
@@ -166,7 +170,6 @@
"no_pattern_added": "ไม่ได้เพิ่มรูปแบบ",
"note_apply_storage_label_previous_assets": "หากต้องการใช้ Storage Label กับไฟล์ที่อัปโหลดก่อนหน้านี้ ให้รันคำสั่งนี้",
"note_cannot_be_changed_later": "หมายเหตุ: ไม่สามารถเปลี่ยนภายหลังได้!",
"note_unlimited_quota": "หมายเหตุ: ใส่เลข 0 สําหรับโควต้าไม่จํากัด",
"notification_email_from_address": "จากที่อยู่",
"notification_email_from_address_description": "อีเมลผู้ส่ง อย่างเช่น \"Immich Photo Server <noreply@immich.app>\"",
"notification_email_host_description": "ที่อยู่เซิร์ฟเวอร์อีเมล (เช่น smtp.immich.app)",
@@ -367,6 +370,16 @@
"admin_password": "รหัสผ่านผู้ดูแลระบบ",
"administration": "การดูแลระบบ",
"advanced": "ขั้นสูง",
"advanced_settings_log_level_title": "ระดับการ Log: {}",
"advanced_settings_prefer_remote_subtitle": "อุปกรณ์บางเครื่องโหลดรูปย่อช้ามาก เปิดการตั้งค่านี้เพื่อโหลดรูปภาพจากรีโมทแทน",
"advanced_settings_prefer_remote_title": "ให้ความสำคัญกับรูปภาพรีโมท",
"advanced_settings_proxy_headers_subtitle": "Define proxy headers Immich should send with each network request",
"advanced_settings_proxy_headers_title": "Proxy Headers",
"advanced_settings_self_signed_ssl_subtitle": "ข้ามการตรวจสอบใบรับรอง SSL จำเป็นสำหรับใบรับรองแบบ self-signed",
"advanced_settings_self_signed_ssl_title": "อนุญาตใบรับรอง SSL แบบ self-signed ",
"advanced_settings_tile_subtitle": "ตั้งค่าผู้ใช้งานขั้นสูง",
"advanced_settings_troubleshooting_subtitle": "เปิดฟีเจอร์เพิ่มเติมเพื่อแก้ไขปัญหา",
"advanced_settings_troubleshooting_title": "แก้ไขปัญหา",
"age_months": "อายุ {months, plural, one {# เดือน} other {# เดือน}}",
"age_year_months": "อายุ 1 ปี {months, plural, one {# เดือน} other {# เดือน}}",
"age_years": "{years, plural, other {อายุ #}}",
@@ -375,6 +388,8 @@
"album_cover_updated": "อัพเดทหน้าปกอัลบั้มแล้ว",
"album_delete_confirmation": "คุณแน่ใจที่จะลบอัลบั้ม {album} นี้ ?",
"album_delete_confirmation_description": "หากแชร์อัลบั้มนี้ ผู้ใช้รายอื่นจะไม่สามารถเข้าถึงได้อีก",
"album_info_card_backup_album_excluded": "ถูกยกเว้น",
"album_info_card_backup_album_included": "รวม",
"album_info_updated": "อัปเดทข้อมูลอัลบั้มแล้ว",
"album_leave": "ออกจากอัลบั้ม ?",
"album_leave_confirmation": "คุณต้องการออกจากอัลบั้ม {album} ใช่หรือไม่?",
@@ -383,10 +398,22 @@
"album_remove_user": "ลบผู้ใช้ ?",
"album_remove_user_confirmation": "คุณต้องการที่จะลบผู้ใช้ {user} ?",
"album_share_no_users": "ดูเหมือนว่าคุณได้แชร์อัลบั้มนี้กับผู้ใช้ทั้งหมดแล้ว",
"album_thumbnail_card_item": "1 รายการ",
"album_thumbnail_card_items": "{} รายการ",
"album_thumbnail_card_shared": " · ถูกแชร์",
"album_thumbnail_shared_by": "แชร์โดย {}",
"album_updated": "อัปเดทอัลบั้มแล้ว",
"album_updated_setting_description": "แจ้งเตือนอีเมลเมื่ออัลบั้มที่แชร์กันมีสื่อใหม่",
"album_user_left": "ออกจาก {album}",
"album_user_removed": "ลบผู้ใช้ {user} แล้ว",
"album_viewer_appbar_delete_confirm": "คุณแน่ใจว่าอยากลบอัลบั้มนี้จากบัญชีคุณหรือไม่",
"album_viewer_appbar_share_err_delete": "ลบอัลบั้มไม่สำเร็จ",
"album_viewer_appbar_share_err_leave": "ออกจากอัลบั้มไม่สำเร็จ",
"album_viewer_appbar_share_err_remove": "มีปัญหาในการนำทรัพยากรออกจากอัลบั้ม",
"album_viewer_appbar_share_err_title": "เปลี่ยนชื่ออัลบั้มไม่สำเร็จ",
"album_viewer_appbar_share_leave": "ออกจากอัลบั้ม",
"album_viewer_appbar_share_to": "แชร์ให้",
"album_viewer_page_share_add_users": "เพิ่มผู้ใช้งาน",
"album_with_link_access": "อนุญาตให้ทุกคนที่มีลิงก์สามารถดูรูปภาพและผู้คนที่อยู่ในอัลบั้มนี้",
"albums": "อัลบั้ม",
"albums_count": "{count, plural, one {{count, number} อัลบั้ม} other {{count, number} อัลบั้ม}}",
@@ -404,38 +431,129 @@
"api_key_description": "ค่านี้จะแสดงเพียงครั้งเดียว โปรดคัดลอกก่อนปิดหน้าต่าง",
"api_key_empty": "ชื่อคีย์ API ของคุณไม่ควรว่างเปล่า",
"api_keys": "API คีย์",
"app_bar_signout_dialog_content": "คุณแน่ใจว่าอยากออกจากระบบ",
"app_bar_signout_dialog_ok": "ใช่",
"app_bar_signout_dialog_title": "ออกจากระบบ",
"app_settings": "การตั้งค่าแอป",
"appears_in": "อยู่ใน",
"archive": "เก็บถาวร",
"archive_or_unarchive_photo": "เก็บ/ไม่เก็บภาพถาวร",
"archive_page_no_archived_assets": "ไม่พบทรัพยากรในที่เก็บถาวร",
"archive_page_title": "เก็บถาวร ({})",
"archive_size": "ขนาดเก็บถาวร",
"archive_size_description": "ตั้งค่าขนาดสูงสุดสำหรับการดาวน์โหลด (GiB)",
"archived": "Archived",
"are_these_the_same_person": "เป็นคนเดียวกันหรือไม่?",
"are_you_sure_to_do_this": "คุณแน่ใจว่าต้องการทำสิ่งนี้หรือไม่?",
"asset_action_delete_err_read_only": "ไม่สามารถลบทรัพยากรแบบอ่านอย่างเดียวได้ กำลังข้าม",
"asset_action_share_err_offline": "ไม่สามารถดึงข้อมูลทรัพยากรออฟไลน์ กำลังข้าม",
"asset_added_to_album": "เพิ่มไปยังอัลบั้มแล้ว",
"asset_adding_to_album": "กำลังเพิ่มไปยังอัลบั้ม…",
"asset_description_updated": "อัปเดตรายละเอียดสำเร็จ",
"asset_filename_is_offline": "สื่อ {filename} ออฟไลน์อยู่",
"asset_has_unassigned_faces": "สื่อไม่ได้ระบุใบหน้า",
"asset_list_group_by_sub_title": "กลุ่มโดย",
"asset_list_layout_settings_dynamic_layout_title": "แผนผังปรับตัว",
"asset_list_layout_settings_group_automatically": "อัตโนมัติ",
"asset_list_layout_settings_group_by": "จัดกลุ่มทรัพยากรโดย",
"asset_list_layout_settings_group_by_month_day": "เดือน + วัน",
"asset_list_layout_sub_title": "การจัดวาง",
"asset_list_settings_subtitle": "ตั้งค่าการจัดวางตารางรูปภาพ",
"asset_list_settings_title": "ตารางรูปภาพ",
"asset_offline": "สื่อออฟไลน์",
"asset_offline_description": "ไม่พบทรัพยากรภายนอกนี้ในดิสก์อีกต่อไป โปรดติดต่อผู้ดูแลระบบ Immich ของคุณเพื่อขอความช่วยเหลือ",
"asset_restored_successfully": "Asset restored successfully",
"asset_skipped": "ข้ามแล้ว",
"asset_skipped_in_trash": "ในถังขยะ",
"asset_uploaded": "อัปโหลดแล้ว",
"asset_uploading": "กำลังอัปโหลด…",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "ตัวดูทรัพยากร",
"assets": "สื่อ",
"assets_added_to_album_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยังอัลบั้ม",
"assets_added_to_name_count": "เพิ่ม {count, plural, one {# asset} other {# assets}} ไปยัง {hasName, select, true {<b>{name}</b>} other {new album}}",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_moved_to_trash_count": "ย้าย {count, plural, one {# asset} other {# assets}} ไปยังถังขยะแล้ว",
"assets_permanently_deleted_count": "ลบ {count, plural, one {# asset} other {# assets}} ทิ้งถาวร",
"assets_removed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบแล้ว",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restore_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการกู้คืนสื่อที่ทิ้งทั้งหมด? คุณไม่สามารถย้อนกลับการดำเนินการนี้ได้! โปรดทราบว่าสื่อออฟไลน์ใดๆ ไม่สามารถกู้คืนได้ด้วยวิธีนี้",
"assets_restored_count": "{count, plural, one {# asset} other {# assets}} คืนค่า",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_count": "{count, plural, one {# asset} other {# assets}} ถูกลบ",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"assets_were_part_of_album_count": "{count, plural, one {Asset was} other {Assets were}} อยู่ในอัลบั้มอยู่แล้ว",
"authorized_devices": "อุปกรณ์ที่ได้รับอนุญาต",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"back": "กลับ",
"back_close_deselect": "ย้อนกลับ, ปิด, หรือยกเลิกการเลือก",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({})",
"backup_album_selection_page_albums_tap": "กดเพื่อรวม กดสองครั้งเพื่อยกเว้น",
"backup_album_selection_page_assets_scatter": "ทรัพยาการสามารถกระจายไปในหลายอัลบั้ม ดังนั้นอัลบั้มสามารถถูกรวมหรือยกเว้นในกระบวนการสำรองข้อมูล",
"backup_album_selection_page_select_albums": "เลือกอัลบั้ม",
"backup_album_selection_page_selection_info": "ข้อมูลของที่เลือก",
"backup_album_selection_page_total_assets": "ทรัพยากรทั้งหมด",
"backup_all": "ทั้งหมด",
"backup_background_service_backup_failed_message": "ไม่สามารถสำรองทรัพยากรได้ กำลังลองใหม่...",
"backup_background_service_connection_failed_message": "ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์ได้ กำลังลองใหม่...",
"backup_background_service_current_upload_notification": "กำลังอัพโหลด {}",
"backup_background_service_default_notification": "ตรวจสอบหาทรัพยากรใหม่...",
"backup_background_service_error_title": "สำรองข้อมูลผิดพลาด",
"backup_background_service_in_progress_notification": "กำลังสำรองทรัพยากรของคุณ...",
"backup_background_service_upload_failure_notification": "อัพโหลดล้มเหลว {}",
"backup_controller_page_albums": "สำรองข้อมูลอัลบั้ม",
"backup_controller_page_background_app_refresh_disabled_content": "เปิดการดึงข้อมูลแอพอยู่เบื้องหลังโดยการไปที่ ตั้งค่า > ทั่วไป > ดึงข้อมูลแอปอยู่เบื้องหลัง เพื่อใช้การดึงข้อมูลในเบื้องหลัง",
"backup_controller_page_background_app_refresh_disabled_title": "การรีเฟรชแอพในฉากหลังปิด",
"backup_controller_page_background_app_refresh_enable_button_text": "ไปยังการตั้งค่า",
"backup_controller_page_background_battery_info_link": "แสดงให้ฉันเห็น",
"backup_controller_page_background_battery_info_message": "เพื่อประสบการณ์สำรองข้อมูลที่ดีที่สุด กรุณาปิดการตั้งค่าประสิทธิภาพแบตเตอรี่จำกัดกิจกรรมในเบื้องหลังสำหรับ Immich\n\nเนื่องจากการตั้งค่าดังกล่าวเฉพาะเจาะจงสำหรับโทรศัพท์แต่ละเครื่อง กรุณาค้นหาข้อมูลจากผู้ผลิตโทรศัพท์ของคุณ",
"backup_controller_page_background_battery_info_ok": "โอเค",
"backup_controller_page_background_battery_info_title": "ประสิทธิภาพแบตเตอรี่",
"backup_controller_page_background_charging": "ขณะชาร์จอย่างเดียว",
"backup_controller_page_background_configure_error": "ไม่สามารถติดตั้งบริการเบื้องหลัง",
"backup_controller_page_background_delay": "ล่าช้าการลำรองทรัพยากรใหม่: {}",
"backup_controller_page_background_description": "เปิดบริการเบื้องหลังเพื่อที่จะสำรองทรัพยากรใหม่โดยที่ไม่จำเป็นต้องเปิดแอป",
"backup_controller_page_background_is_off": "การสำรองข้อมูลอัตโนมัติปิดอยู่",
"backup_controller_page_background_is_on": "การสำรองข้อมูลอัตโนมัติเปิดอยู่",
"backup_controller_page_background_turn_off": "ปิดบริการเบื้องหลัง",
"backup_controller_page_background_turn_on": "เปิดบริการเบื้องหลัง",
"backup_controller_page_background_wifi": "บน WiFi เท่านั้น",
"backup_controller_page_backup": "สำรองข้อมูล",
"backup_controller_page_backup_selected": "ที่เลือก: ",
"backup_controller_page_backup_sub": "รูปภาพและวิดีโอที่สำรองแล้ว",
"backup_controller_page_created": "สร้างเมื่อ: {}",
"backup_controller_page_desc_backup": "เปิดการสำรองข้อมูลในฉากหน้าเพื่อที่จะอัพโหลดทรัพยากรใหม่ไปยังเซิร์ฟเวอร์เมื่อเปิดแอพ",
"backup_controller_page_excluded": "ถูกยกเว้น: ",
"backup_controller_page_failed": "ล้มเหลว ({})",
"backup_controller_page_filename": "ชื่อไฟล์: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "ข้อมูลเกี่ยวกับการสำรองข้อมูล",
"backup_controller_page_none_selected": "ไม่มีที่เลือก",
"backup_controller_page_remainder": "ที่เหลือ",
"backup_controller_page_remainder_sub": "รูปภาพและวิดีโอที่เลือกสำรองที่เหลือ",
"backup_controller_page_server_storage": "พื้นที่จัดเก็บเซิร์ฟเวอร์",
"backup_controller_page_start_backup": "เริ่มสำรองข้อมูล",
"backup_controller_page_status_off": "การสำรองข้อมูลในฉากหน้าปิดอยู่",
"backup_controller_page_status_on": "การสำรองข้อมูลในฉากหน้าเปิดอยู่",
"backup_controller_page_storage_format": "{} จาก {} ถูกใช้งาน",
"backup_controller_page_to_backup": "อัลบั้มที่จะสำรองข้อมูล",
"backup_controller_page_total_sub": "รูปภาพและวิดีโอที่ไม่ซ้ำทั้งหมดจากอัลบั้มที่เลือก",
"backup_controller_page_turn_off": "ปิดการสำรองข้อมูลในฉากหน้า",
"backup_controller_page_turn_on": "เปิดการสำรองข้อมูลในฉากหน้า",
"backup_controller_page_uploading_file_info": "กำลังอัพโหลดข้อมูลไฟล์",
"backup_err_only_album": "ไม่สามารถนำอัลบั้มสุดท้ายออกได้",
"backup_info_card_assets": "ทรัพยากร",
"backup_manual_cancelled": "ถูกยกเลิก",
"backup_manual_in_progress": "อัปโหลดกำลังดำเนินการอยู่ โปรดลองใหม่ในสักพัก",
"backup_manual_success": "สำเร็จ",
"backup_manual_title": "สถานะอัพโหลด",
"backup_options_page_title": "ตัวเลือกการสำรองข้อมูล",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"backward": "กลับหลัง",
"birthdate_saved": "บันทึกวันเกิดแล้ว",
"birthdate_set_description": "วันที่เกิดจะนำมาใช้ในการคำนวณอายุของบุคคลนี้ในขณะที่ถ่ายรูป",
@@ -447,24 +565,52 @@
"bulk_keep_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการเก็บ {count, plural, one {# duplicate asset} other {# duplicate asset}} ไว้ การดำเนินการนี้จะแก้ไขกลุ่มที่ซ้ำกันทั้งหมดโดยไม่ต้องลบสิ่งใดเลย",
"bulk_trash_duplicates_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการลบข้อมูลจำนวนมาก {count, plural, one {# duplicate asset} other {# duplicate asset}} การทำเช่นนี้จะเก็บสื่อที่ใหญ่ที่สุดของแต่ละกลุ่มและลบข้อมูลซ้ำอื่น ๆ ทั้งหมด",
"buy": "ซื้อ Immich",
"cache_settings_album_thumbnails": "รูปย่อคลังภาพ ({} ทรัพยากร)",
"cache_settings_clear_cache_button": "ล้างแคช",
"cache_settings_clear_cache_button_title": "ล้างแคชของแอพ จะส่งผลกระทบต่อประสิทธิภาพแอพจนกว่าแคชจะถูกสร้างใหม่",
"cache_settings_duplicated_assets_clear_button": "ล้าง",
"cache_settings_duplicated_assets_subtitle": "รูปภาพและวิดีโอที่ถูกนำเข้าแบล็กลิสต์โดยแอป",
"cache_settings_duplicated_assets_title": "ทรัพยากรที่ซ้ำกัน ({})",
"cache_settings_image_cache_size": "ขนาดแคชรูปภาพ ({} ทรัพยากร)",
"cache_settings_statistics_album": "รูปย่อคลังภาพ",
"cache_settings_statistics_assets": "{} ทรัพยากร ({})",
"cache_settings_statistics_full": "รูปภาพเต็ม",
"cache_settings_statistics_shared": "รูปย่ออัลบั้มที่แชร์",
"cache_settings_statistics_thumbnail": "รูปย่อ",
"cache_settings_statistics_title": "การใช้งานแคช",
"cache_settings_subtitle": "ควบคุมพฤติกรรมการแคชของแอปพลิเคชัน Immich",
"cache_settings_thumbnail_size": "ขนาดแคชรูปย่อ ({} ทรัพยากร)",
"cache_settings_tile_subtitle": "ควบคุมพฤติกรรมของที่จัดเก็บในตัวเครื่อง",
"cache_settings_tile_title": "ที่จัดเก็บในตัวเครื่อง",
"cache_settings_title": "ตั้งค่าแคช",
"camera": "กล้อง",
"camera_brand": "ยี่ห้อกล้อง",
"camera_model": "รุ่นกล้อง",
"cancel": "ยกเลิก",
"cancel_search": "ยกเลิกการค้นหา",
"canceled": "Canceled",
"cannot_merge_people": "ไม่สามารถรวมกลุ่มคนได้",
"cannot_undo_this_action": "การกระทำนี้ไม่สามารถย้อนกลับได้!",
"cannot_update_the_description": "ไม่สามารถอัพเดทรายละเอียดได้",
"change_date": "เปลี่ยนวันที่",
"change_display_order": "Change display order",
"change_expiration_time": "เปลี่ยนเวลาหมดอายุ",
"change_location": "เปลี่ยนตําแหน่ง",
"change_name": "เปลี่ยนชื่อ",
"change_name_successfully": "เปลี่ยนชื่อเรียบร้อยแล้ว",
"change_password": "เปลี่ยนรหัสผ่าน",
"change_password_description": "การเข้าสู่ระบบครั้งแรก จำเป็นจต้องเปลี่ยนรหัสผ่านของคุณเพื่อความปลอดภัย โปรดป้อนรหัสผ่านใหม่ด้านล่าง",
"change_password_form_confirm_password": "ยืนยันรหัสผ่าน",
"change_password_form_description": "สวัสดี {name},\n\nครั้งนี้อาจจะเป็นครั้งแรกที่คุณเข้าสู่ระบบ หรือมีคำขอเพื่อที่จะเปลี่ยนรหัสผ่านของคุI กรุณาเพิ่มรหัสผ่านใหม่ข้างล่าง",
"change_password_form_new_password": "รหัสผ่านใหม่",
"change_password_form_password_mismatch": "รหัสผ่านไม่ตรงกัน",
"change_password_form_reenter_new_password": "กรอกรหัสผ่านใหม่",
"change_your_password": "เปลี่ยนรหัสผ่านของคุณ",
"changed_visibility_successfully": "เปลี่ยนการมองเห็นเรียบร้อยแล้ว",
"check_all": "เลือกทั้งหมด",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_logs": "ตรวจสอบบันทึก",
"choose_matching_people_to_merge": "เลือกคนที่ตรงกันเพื่อรวมเข้าด้วยกัน",
"city": "เมือง",
@@ -473,6 +619,14 @@
"clear_all_recent_searches": "ล้างประวัติการค้นหา",
"clear_message": "ล้างข้อความ",
"clear_value": "ล้างค่า",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
"client_cert_import_success_msg": "Client certificate is imported",
"client_cert_invalid_msg": "Invalid certificate file or wrong password",
"client_cert_remove_msg": "Client certificate is removed",
"client_cert_subtitle": "Supports PKCS12 (.p12, .pfx) format only. Certificate Import/Remove is available only before login",
"client_cert_title": "SSL Client Certificate",
"clockwise": "ตามเข็มนาฬิกา",
"close": "ปิด",
"collapse": "ย่อ",
@@ -483,6 +637,9 @@
"comment_options": "ตัวเลือกความคิดเห็น",
"comments_and_likes": "ความคิดเห็นและการถูกใจ",
"comments_are_disabled": "ความคิดเห็นถูกปิดใช้งาน",
"common_create_new_album": "สร้างอัลบั้มใหม่",
"common_server_error": "กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ต ให้แน่ใจว่าเซิร์ฟเวอร์สามารถเข้าถึงได้ และเวอร์ชันแอพกับเซิร์ฟเวอร์เข้ากันได้",
"completed": "สำเร็จ",
"confirm": "ยืนยัน",
"confirm_admin_password": "ยืนยันรหัสผ่านผู้ดูแลระบบ",
"confirm_delete_face": "คุณแน่ใจว่าต้องการลบใบหน้า{name}ออกหรือไม่?",
@@ -492,6 +649,15 @@
"contain": "มีอยู่",
"context": "บริบท",
"continue": "ต่อไป",
"control_bottom_app_bar_album_info_shared": "{} รายการ · ถูกแชร์",
"control_bottom_app_bar_create_new_album": "สร้างอัลบั้มใหม่",
"control_bottom_app_bar_delete_from_immich": "ลบจาก Immich",
"control_bottom_app_bar_delete_from_local": "ลบจากเรื่อง",
"control_bottom_app_bar_edit_location": "แก้ไขตำแหน่ง",
"control_bottom_app_bar_edit_time": "แก้ไขวันและเวลา",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "แชร์ให้",
"control_bottom_app_bar_trash_from_immich": "ย้ายเข้าถังขยะ",
"copied_image_to_clipboard": "คัดลอกภาพไปยังคลิปบอร์ดแล้ว",
"copied_to_clipboard": "คัดลอกไปยังคลิปบอร์ดแล้ว!",
"copy_error": "คัดลอกข้อผิดพลาด",
@@ -506,24 +672,34 @@
"covers": "ปก",
"create": "สร้าง",
"create_album": "สร้างอัลบั้ม",
"create_album_page_untitled": "ไม่มีชื่อ",
"create_library": "สร้างคลังภาพ",
"create_link": "สร้างลิงก์",
"create_link_to_share": "สร้างลิงก์เพื่อแชร์",
"create_link_to_share_description": "ผู้ที่มีลิงก์ สามารถดูรูปที่เลือกได้",
"create_new": "CREATE NEW",
"create_new_person": "สร้างคนใหม่",
"create_new_person_hint": "กำหนดสื่อที่เลือกให้กับคนใหม่",
"create_new_user": "สร้างผู้ใช้งานใหม่",
"create_shared_album_page_share_add_assets": "เพิ่มทรัพยากร",
"create_shared_album_page_share_select_photos": "เลือกรูปภาพ",
"create_tag": "สร้างแท็กใหม่",
"create_tag_description": "สร้างแท็กใหม่ สำหรับแท็กที่ซ้อนกัน โปรดป้อนเส้นทางทั้งหมดของแท็ก รวมถึงเครื่องหมายทับ",
"create_user": "สร้างผู้ใช้",
"created": "สร้างแล้ว",
"crop": "Crop",
"curated_object_page_title": "สิ่งของ",
"current_device": "อุปกรณ์ปัจจุบัน",
"current_server_address": "Current server address",
"custom_locale": "ปรับภาษาท้องถิ่นเอง",
"custom_locale_description": "ใช้รูปแบบวันที่และตัวเลขจากภาษาและขอบเขต",
"daily_title_text_date": "E dd MMM",
"daily_title_text_date_year": "E dd MMM yyyy",
"dark": "มืด",
"date_after": "วันที่หลังจาก",
"date_and_time": "วันและเวลา",
"date_before": "วันที่ก่อน",
"date_format": "E, LLL d, y • h:mm a",
"date_of_birth_saved": "บันทึกวันเกิดเรียบร้อยแล้ว",
"date_range": "ช่วงวันที่",
"day": "วัน",
@@ -537,19 +713,30 @@
"delete": "ลบออก",
"delete_album": "ลบอัลบั้ม",
"delete_api_key_prompt": "คุณต้องการลบ API คีย์ นี้ใช่ไหม ?",
"delete_dialog_alert": "รายการดังกล่าวจะถูกลบจาก Immich และเครื่องอย่างถาวร",
"delete_dialog_alert_local": "รายการดังกล่าวจะถูกลบจากเครื่องคุณอย่างถาวร แต่จะยังคงอยู่บนเซิร์ฟเวอร์ Immich",
"delete_dialog_alert_local_non_backed_up": "รายการบางตัวไม่ได้ถูกสำรองบน Immich และจะถูกลบจากเครื่องคุณอย่างถาวร",
"delete_dialog_alert_remote": "รายการดังกล่าวจะถูกลบจากเซิร์ฟเวอร์ Immich อย่างถาวร",
"delete_dialog_ok_force": "ลบต่อไป",
"delete_dialog_title": "ลบถาวร",
"delete_duplicates_confirmation": "คุณแน่ใจที่ต้องการลบรายการซ้ำอย่างถาวรใช่ไหม ?",
"delete_face": "ลบใบหน้า",
"delete_key": "ลบกุญแจ",
"delete_library": "ลบคลังภาพ",
"delete_link": "ลบลิงก์",
"delete_local_dialog_ok_backed_up_only": "ลบที่สำรองไว้เท่านั้น",
"delete_local_dialog_ok_force": "ลบต่อไป",
"delete_others": "ลบผู้อื่น",
"delete_shared_link": "ลบลิงก์ที่แชร์",
"delete_shared_link_dialog_title": "ลบลิงก์ที่แชร์",
"delete_tag": "ลบแท็ก",
"delete_tag_confirmation_prompt": "คุณแน่ใจว่าต้องการลบแท็ก {tagName} ใช่หรือไม่?",
"delete_user": "ลบผู้ใช้",
"deleted_shared_link": "ลบลิงก์ที่แชร์แล้ว",
"deletes_missing_assets": "ลบสื่อที่หายไปออกจากดิสถ์",
"description": "รายละเอียด",
"description_input_hint_text": "เพื่มรายละเอียด...",
"description_input_submit_error": "อัพเดตรายละเอียดผิดพลาด ตรวจสอบ log เพื่อรายละเอียดเพิ่มเติม",
"details": "รายละเอียด",
"direction": "เส้นทาง",
"disabled": "ปิดการใช้งาน",
@@ -566,12 +753,26 @@
"documentation": "เอกสาร",
"done": "ดำเนินการสำเร็จ",
"download": "ดาวน์โหลด",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"download_include_embedded_motion_videos": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหว",
"download_include_embedded_motion_videos_description": "รวมวิดีโอที่ฝังอยู่ในภาพเคลื่อนไหวเมื่อดาวน์โหลดอัลบั้ม",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_settings": "การตั้งค่าการดาวน์โหลด",
"download_settings_description": "จัดการการตั้งค่าการดาวน์โหลด",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"downloading": "กำลังดาวน์โหลด",
"downloading_asset_filename": "กำลังดาวน์โหลด {filename}",
"downloading_media": "Downloading media",
"drop_files_to_upload": "วางไฟล์ในช่องอัปโหลด",
"duplicates": "รายการที่ซ้ำกัน",
"duplicates_description": "แก้ไขแต่ละกลุ่มโดยระบุว่ากลุ่มใดซ้ำกันหากมี",
@@ -588,6 +789,7 @@
"edit_key": "แก้ไขกุญแจ",
"edit_link": "แก้ไขลิงก์",
"edit_location": "แก้ไขตำแหน่ง",
"edit_location_dialog_title": "ตำแหน่ง",
"edit_name": "แก้ไขชื่อ",
"edit_people": "แก้ไขผู้คน",
"edit_tag": "แก้ไขแท็ก",
@@ -600,14 +802,19 @@
"editor_crop_tool_h2_aspect_ratios": "อัตราส่วนภาพ",
"editor_crop_tool_h2_rotation": "การหมุน",
"email": "อีเมล",
"empty_folder": "This folder is empty",
"empty_trash": "ทิ้งจากถังขยะ",
"empty_trash_confirmation": "คุณแน่ใจหรือไม่ว่าต้องการล้างถังขยะ การดำเนินการนี้จะลบทรัพยากรทั้งหมดในถังขยะออกจาก Immich อย่างถาวร\nคุณไม่สามารถย้อนกลับการดำเนินการนี้ได้!",
"enable": "เปิดใช้งาน",
"enabled": "เปิดใช้งาน",
"end_date": "วันสิ้นสุด",
"enqueued": "Enqueued",
"enter_wifi_name": "Enter WiFi name",
"error": "เกิดข้อผิดพลาด",
"error_change_sort_album": "Failed to change album sort order",
"error_delete_face": "เกิดเออเรอร์ ไม่สามารถลบใบหน้าออกได้",
"error_loading_image": "เกิดข้อผิดพลาดระหว่างโหลดภาพ",
"error_saving_image": "Error: {}",
"error_title": "เกิดข้อผิดพลาด",
"errors": {
"cannot_navigate_next_asset": "ไม่สามารถเปลี่ยนเส้นทางได้",
@@ -735,8 +942,21 @@
"unable_to_update_user": "ไม่สามารถอัพเดทผู้ใช้ได้",
"unable_to_upload_file": "ไม่สามารถอัปโหลดได้"
},
"exif_bottom_sheet_description": "เพิ่มคำอธิบาย",
"exif_bottom_sheet_details": "รายละเอียด",
"exif_bottom_sheet_location": "ตำแหน่ง",
"exif_bottom_sheet_people": "คน",
"exif_bottom_sheet_person_add_person": "เพิ่มชื่อ",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "ออกจากการนำเสนอ",
"expand_all": "ขยายทั้งหมด",
"experimental_settings_new_asset_list_subtitle": "กำลังพัฒนา",
"experimental_settings_new_asset_list_title": "เปิดตารางรูปภาพที่กำลังทดลอง",
"experimental_settings_subtitle": "ใช้ภายใต้ความเสี่ยงของคุณเอง!",
"experimental_settings_title": "ทดลอง",
"expire_after": "หมดอายุหลังจาก",
"expired": "หมดอายุแล้ว",
"expires_date": "หมดอายุวันที่ {date}",
@@ -747,11 +967,16 @@
"extension": "ส่วนต่อขยาย",
"external": "ภายนอก",
"external_libraries": "ภายนอกคลังภาพ",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"face_unassigned": "ไม่กำหนดมอบหมาย",
"failed": "Failed",
"failed_to_load_assets": "เกิดข้อผิดพลาดในการโหลดสื่อ",
"failed_to_load_folder": "Failed to load folder",
"favorite": "รายการโปรด",
"favorite_or_unfavorite_photo": "โปรดหรือไม่โปรดภาพ",
"favorites": "รายการโปรด",
"favorites_page_no_favorites": "ไม่พบทรัพยากรในรายการโปรด",
"feature_photo_updated": "อัพเดทภาพเด่นแล้ว",
"features": "ฟีเจอร์",
"features_setting_description": "จัดการฟีเจอร์แอป",
@@ -759,25 +984,38 @@
"file_name_or_extension": "นามสกุลหรือชื่อไฟล์",
"filename": "ชื่อไฟล์",
"filetype": "ชนิดไฟล์",
"filter": "Filter",
"filter_people": "กรองผู้คน",
"find_them_fast": "ค้นหาโดยชื่ออย่างรวดเร็ว",
"fix_incorrect_match": "แก้ไขการจับคู่ที่ไม่ถูกต้อง",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "โฟล์เดอร์",
"folders_feature_description": "การเรียกดูมุมมองโฟลเดอร์สำหรับภาพถ่ายและวิดีโอในระบบไฟล์",
"forward": "ไปข้างหน้า",
"general": "ทั่วไป",
"get_help": "ขอความช่วยเหลือ",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"getting_started": "เริ่มต้นใช้งาน",
"go_back": "กลับ",
"go_to_folder": "ไปที่โฟล์เดอร์",
"go_to_search": "กลับไปยังการค้นหา",
"grant_permission": "Grant permission",
"group_albums_by": "จัดกลุ่มอัลบั้มตาม",
"group_country": "จัดเรียงกลุ่มตามประเทศ",
"group_no": "ไม่จัดกลุ่ม",
"group_owner": "จัดกลุ่มโดยเจ้าของ",
"group_places_by": "จัดเรียงกลุ่มของสถานที่ด้วยการ...",
"group_year": "จัดกลุ่มตามปี",
"haptic_feedback_switch": "เปิดการตอบสนองแบบสัมผัส",
"haptic_feedback_title": "การตอบสนองแบบสัมผัส",
"has_quota": "เหลือพื้นที่",
"header_settings_add_header_tip": "Add Header",
"header_settings_field_validator_msg": "Value cannot be empty",
"header_settings_header_name_input": "Header name",
"header_settings_header_value_input": "Header value",
"headers_settings_tile_subtitle": "Define proxy headers the app should send with each network request",
"headers_settings_tile_title": "Custom proxy headers",
"hi_user": "สวัสดีคุณ {name} {email}",
"hide_all_people": "ซ่อนบุคคลทั้งหมด",
"hide_gallery": "ซ่อนคลังภาพ",
@@ -785,8 +1023,24 @@
"hide_password": "ซ่อนรหัสผ่าน",
"hide_person": "ซ่อนบุคคล",
"hide_unnamed_people": "ซ่อนบุคคลที่ไม่ได้ระบุชื่อ",
"home_page_add_to_album_conflicts": "เพิ่ม {added} ทรัพยากรเข้าอัลบั้ม {album}. {failed} ทรัพยากรอยู่ในอัลบั้มอยู่แล้ว",
"home_page_add_to_album_err_local": " ยังไม่สามารถเพิ่มทรัพยากรบนเครื่องเข้าอัลบั้ม กำลังข้าม",
"home_page_add_to_album_success": "เพิ่มทรัพยากร {added} เข้าอัลบั้ม {album}",
"home_page_album_err_partner": "ยังไม่สามารถเพิ่มทรัพยากรของพันธมิตรได้ กำลังข้าม",
"home_page_archive_err_local": "ยังไม่สามารถเก็บถาวรได้ กำลังข้าม",
"home_page_archive_err_partner": "ไม่สามารถเก็บทรัพยากรของพันธมิตรได้ กำลังข้าม",
"home_page_building_timeline": "กำลังสร้าง timeline",
"home_page_delete_err_partner": "ไม่สามารถลบทรัพยากรของพันธมิตรได้ กำลังข้าม",
"home_page_delete_remote_err_local": "ทรัพยากรบนเครื่องอยู่ในลบจากรีโมท กำลังข้าม",
"home_page_favorite_err_local": "ยังไม่สามารถตั้งทรัพยากรบนเครื่องเป็นรายการโปรด กำลังข้าม",
"home_page_favorite_err_partner": "ยังไม่สามารถเพิ่มทรัพยากรของพันธมิตรในรายการโปรดได้ กำลังข้าม",
"home_page_first_time_notice": "ถ้าครั้งนี้เป็นครั้งแรกที่ใช้แอปนี้ กรุณาเลือกอัลบั้มที่จะสำรองข้อมูล ไทม์ไลน์จะได้เพิ่มรูปภาพและวิดีโอที่อยู่ในอัลบั้ม",
"home_page_share_err_local": "ไม่สามารถแชร์ผ่านลิงค์ได้ กำลังข้าม",
"home_page_upload_err_limit": "สามารถอัพโหลดได้มากสุดครั้งละ 30 ทรัพยากร กำลังข้าม",
"host": "โฮสต์",
"hour": "ชั่วโมง",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image": "รูปภาพ",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} วันที่ {date}",
"image_alt_text_date_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายกับ {person1} และ {person2} วันที่ {date}",
@@ -797,6 +1051,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1} และ {person2} วันที่ {date}",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2},และ {person3} วันที่ {date}",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Image}} ถ่ายใน {city}, {country} กับ {person1}, {person2}, และ {additionalCount, number} ในวันที่ {date}",
"image_saved_successfully": "Image saved",
"image_viewer_page_state_provider_download_started": "ดาวน์โหลดเริ่มต้น",
"image_viewer_page_state_provider_download_success": "ดาวน์โหลดสำเร็จ",
"image_viewer_page_state_provider_share_error": "แชร์ผิดพลาด",
"immich_logo": "โลโก้ Immich",
"immich_web_interface": "หน้าตาเว็บไซต์ Immich",
"import_from_json": "นำเข้าจาก JSON",
@@ -814,6 +1072,8 @@
"night_at_midnight": "ทุกเที่ยงคืน",
"night_at_twoam": "ทุกวันเวลาตี 2"
},
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"invite_people": "เชิญผู้คน",
"invite_to_album": "เชิญเข้าอัลบั้ม",
"items_count": "{count, plural, one {# รายการ} other {#รายการ}}",
@@ -834,6 +1094,12 @@
"level": "ระดับ",
"library": "คลังภาพ",
"library_options": "ตัวเลือกคลังภาพ",
"library_page_device_albums": "อัลบั้มบนเครื่อง",
"library_page_new_album": "อัลบั้มใหม่",
"library_page_sort_asset_count": "จำนวนทรัพยากรที่มี",
"library_page_sort_created": "สร้างล่าสุด",
"library_page_sort_last_modified": "แก้ไขล่าสุด",
"library_page_sort_title": "ชื่ออัลบั้ม",
"light": "สว่าง",
"like_deleted": "ลบที่ถูกใจแล้ว",
"link_motion_video": "ลิงก์วิดีโอเคลื่อนไหว",
@@ -843,12 +1109,42 @@
"list": "รายการ",
"loading": "กำลังโหลด",
"loading_search_results_failed": "โหลดผลการค้นหาล้มเหลว",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "เลือกบนแผนที่",
"location_picker_latitude_error": "กรุณาเพิ่มละติจูตที่ถูกต้อง",
"location_picker_latitude_hint": "เพิ่มละติจูตตรงนี้",
"location_picker_longitude_error": "กรุณาเพิ่มลองจิจูตที่ถูกต้อง",
"location_picker_longitude_hint": "เพิ่มลองจิจูตตรงนี้",
"log_out": "ออกจากระบบ",
"log_out_all_devices": "ให้ทุกอุปกรณ์ออกจากระบบทั้งหมด",
"logged_out_all_devices": "ออกจากระบบทั้งหมดแล้ว",
"logged_out_device": "ออกจากระบบแล้ว",
"login": "เข้าสู่ระบบ",
"login_disabled": "ล็อกอินถูกปิด",
"login_form_api_exception": "ข้อผิดพลาด API กรุณาตรวจสอบ URL แล้วลองใหม่",
"login_form_back_button_text": "กลับ",
"login_form_email_hint": "อีเมลคุณ@อีเมล.com",
"login_form_endpoint_hint": "http://ไอพีเชอร์ฟเวอร์คุณ:พอร์ต",
"login_form_endpoint_url": "URL ปลายทางของเซิร์ฟเวอร์",
"login_form_err_http": "โปรดระบุ http:// หรือ https://",
"login_form_err_invalid_email": "อีเมลไม่ถูกต้อง",
"login_form_err_invalid_url": "URL ไม่ถูกต้อง",
"login_form_err_leading_whitespace": "เว้นว่างข้างหน้า",
"login_form_err_trailing_whitespace": "เว้นว่างข้างหลัง",
"login_form_failed_get_oauth_server_config": "เกิดข้อผิดพลาดในการล็อกอินผ่าน OAuth ตรวจสอบ URL เซิร์ฟเวอร์",
"login_form_failed_get_oauth_server_disable": "ฟีเจอร์ OAuth ไม่สามารถใช้งานบนเซิร์ฟเวอร์นี้",
"login_form_failed_login": "เกิดข้อผิดพลาดในการล็อกอิน โปรดตรวจสอบ URL ของเซิร์ฟเวอร์ อีเมล และรหัสผ่าน",
"login_form_handshake_exception": "เกิดข้อผิดพลาดกระบวนการ Handshake กับเซิร์ฟเวอร์ ถ้ากำลังใช้ใบรับบรองแบบ self-signed กรุณาตั้งค่าอนุญาตใบรับรองแบบ self-signed",
"login_form_password_hint": "รหัสผ่าน",
"login_form_save_login": "อยู่ในระบบต่อไป",
"login_form_server_empty": "กรอก URL เซิร์ฟเวอร์",
"login_form_server_error": "ไม่สามารถติดต่อกับเซิร์ฟเวอร์",
"login_has_been_disabled": "ปิดการใช้งานการเข้าสู่ระบบแล้ว",
"login_password_changed_error": "เกิดข้อผิดพลาดขณะเปลี่ยนรหัสผ่าน",
"login_password_changed_success": "เปลี่ยนรหัสผ่านสำเร็จ",
"logout_all_device_confirmation": "คุณต้องการออกจากระบบทุกอุปกรณ์ ใช่หรือไม่ ?",
"logout_this_device_confirmation": "คุณต้องการออกจากระบบใช่หรือไม่ ?",
"longitude": "ลองจิจูด",
@@ -866,13 +1162,40 @@
"manage_your_devices": "จัดการอุปกรณ์ของคุณ",
"manage_your_oauth_connection": "จัดการการเชื่อมต่อ OAuth ของคุณ",
"map": "แผนที่",
"map_assets_in_bound": "{} รูปภาพ",
"map_assets_in_bounds": "{} รูปภาพ",
"map_cannot_get_user_location": "ไม่สามารถหาตำแหน่งผู้ใช้งานได้",
"map_location_dialog_yes": "ใช่",
"map_location_picker_page_use_location": "ใช้ตำแหน่งนี้",
"map_location_service_disabled_content": "ต้องเปิดตำแหน่งเพื่อแสดงทรัพยากรจากตำแหน่งปัจจุบัน เปิดตอนนี้?",
"map_location_service_disabled_title": "บริการตำแหน่งถูกปิด",
"map_marker_for_images": "หมุดแผนที่สำหรับรูปถ่ายที่ {city}, {country}",
"map_marker_with_image": "หมุดแผนที่กับรูปถ่าย",
"map_no_assets_in_bounds": "ไม่มีรูปในบริเวณนี้",
"map_no_location_permission_content": "จำเป็นต้องมีสิทธิ์เข้าถึงตำแหน่งเพื่อแสดงทรัพยากรจากตำแหน่งปัจจุบัน อนุญาตตอนนี้?",
"map_no_location_permission_title": "สิทธิ์เข้าถึงตำแหน่งถูกปฏิเสธ",
"map_settings": "การตั้งค่าแผนที่",
"map_settings_dark_mode": "โหมดมืด",
"map_settings_date_range_option_day": "24 ชั่วโมงที่ผ่านมา",
"map_settings_date_range_option_days": "{} วันที่ผ่านมา",
"map_settings_date_range_option_year": "ปีที่ผ่านมา",
"map_settings_date_range_option_years": "{} ปีผ่านมา",
"map_settings_dialog_title": "ตั้งค่าแผนที่",
"map_settings_include_show_archived": "รวมเก็บถาวร",
"map_settings_include_show_partners": "รามพันธมิตร",
"map_settings_only_show_favorites": "แสดงรายการโปรดเท่านั้น",
"map_settings_theme_settings": "ธีมแผนที่",
"map_zoom_to_see_photos": "ซูมออกเพื่อดูรูป",
"matches": "ตรงกัน",
"media_type": "ชนิดสื่อ",
"memories": "ความทรงจำ",
"memories_all_caught_up": "ตามทันหมดแล้ว",
"memories_check_back_tomorrow": "กลับมาดูความทรงจำมากกว่านี้ในวันถัดไป",
"memories_setting_description": "จัดการสิ่งที่คุณเห็นในความทรงจําของคุณ",
"memories_start_over": "เริ่มใหม่",
"memories_swipe_to_close": "ปัดขึ้นเพื่อปิด",
"memories_year_ago": "A year ago",
"memories_years_ago": "{} years ago",
"memory": "ความทรงจำ",
"memory_lane_title": "ความทรงจำ {title}",
"menu": "เมนู",
@@ -887,11 +1210,16 @@
"missing": "ขาดหาย",
"model": "โมเดล",
"month": "เดือน",
"monthly_title_text_date_format": "MMMM y",
"more": "เพิ่มเติม",
"moved_to_trash": "ทิ้งลงถังขยะแล้ว",
"multiselect_grid_edit_date_time_err_read_only": "ไม่สามารถแก้ไขวันที่ทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
"multiselect_grid_edit_gps_err_read_only": "ไม่สามารถแก้ตำแหน่งของทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
"my_albums": "อัลบั้มของฉัน",
"name": "ชื่อ",
"name_or_nickname": "ชื่อหรือชื่อเล่น",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"never": "ไม่เคย",
"new_album": "อัลบั้มใหม่",
"new_api_key": "สร้าง API คีย์ใหม่",
@@ -908,6 +1236,7 @@
"no_albums_yet": "ดูเหมือนว่าคุณยังไม่มีอัลบั้มใดๆ",
"no_archived_assets_message": "จัดเก็บรูปภาพและวีดิโอถาวรเพื่อซ่อนจากมุมมองคุณ",
"no_assets_message": "กดเพื่อใส่ภาพคุณภาพแรก",
"no_assets_to_show": "ไม่มีทรัพยากรให้แสดง",
"no_duplicates_found": "ไม่พบรายการที่ซ้ำกัน",
"no_exif_info_available": "ไม่มีข้อมูล exif",
"no_explore_results_message": "ไม่พบผลลัพธ์ ลองใช้คำค้นหาอื่น ๆ",
@@ -919,9 +1248,13 @@
"no_results_description": "ลองใช้คำพ้องหรือคำหลักที่กว้างกว่านี้",
"no_shared_albums_message": "สร้างอัลบั้มเพื่อแชร์รูปภาพและวิดีโอกับคนในเครือข่ายของคุณ",
"not_in_any_album": "ไม่อยู่ในอัลบั้มใด ๆ",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "หมายเหตุ: หากต้องการใช้ป้ายกำกับพื้นที่เก็บข้อมูลกับเนื้อหาที่อัปโหลดก่อนหน้านี้ ให้เรียกใช้",
"note_unlimited_quota": "หมายเหตุ: กรอก 0 สำหรับโควตาแบบไม่จำกัด",
"notes": "หมายเหตุ",
"notification_permission_dialog_content": "เพื่อเปิดการแจ้งเตือน เข้าตั้งค่าแล้วกดอนุญาต",
"notification_permission_list_tile_content": "อนุญาตการแจ้งเตือน",
"notification_permission_list_tile_enable_button": "เปิดการแจ้งเดือน",
"notification_permission_list_tile_title": "สิทธิ์การแจ้งเตือน",
"notification_toggle_setting_description": "เปิด/ปิด การแจ้งเตือนอีเมล",
"notifications": "การแจ้งเตือน",
"notifications_setting_description": "จัดการการแจ้งเตือน",
@@ -932,6 +1265,7 @@
"offline_paths_description": "ผลลัพธ์เหล่านี้อาจเกิดจากการลบไฟล์ที่ไม่ได้เป็นส่วนหนึ่งของไลบรารีภายนอกด้วยตนเอง",
"ok": "ตกลง",
"oldest_first": "เรียงเก่าสุดก่อน",
"on_this_device": "On this device",
"onboarding": "การเริ่มต้นใช้งาน",
"onboarding_privacy_description": "คุณลักษณะ (ไม่จำเป็น) ต่อไปนี้ต้องอาศัยบริการภายนอก และสามารถปิดใช้งานได้ตลอดเวลาในการตั้งค่าการดูแลระบบ",
"onboarding_theme_description": "เลือกธีมสี คุณสามารถเปลี่ยนแปลงได้ในภายหลังในการตั้งค่าของคุณ",
@@ -955,6 +1289,14 @@
"partner_can_access": "{partner} สามารถเข้าถึง",
"partner_can_access_assets": "รูปภาพและวิดีโอทั้งหมดยกเว้นที่อยู่ในเก็บถาวรและถูกลบทิ้ง",
"partner_can_access_location": "ตำแหน่งที่รูปถูกถ่าย",
"partner_list_user_photos": "รูปภาพของ {user}",
"partner_list_view_all": "ดูทั้งหมด",
"partner_page_empty_message": "รูปภาพของคุณยังไม่ถูกแชร์กับพันธมิตร",
"partner_page_no_more_users": "ไม่มีผู้ใช้งานให้เพิ่ม",
"partner_page_partner_add_failed": "การเพิ่มพันธมิตรล้มเหลว",
"partner_page_select_partner": "เลือกพันธมิตร",
"partner_page_shared_to_title": "แชร์กับ",
"partner_page_stop_sharing_content": "{} จะไม่สามารถเข้าถึงรูปภาพของคุณ",
"partner_sharing": "แชร์สำหรับพาร์ทเนอร์",
"partners": "พาร์ทเนอร์",
"password": "รหัสผ่าน",
@@ -983,6 +1325,14 @@
"permanently_delete_assets_prompt": "คุณแน่ใจหรือไม่ว่าต้องการลบ {count, plural, one {this asset?} other {these <b>#</b> asset?}}อย่างถาวร การดำเนินการนี้จะลบ {count, plural, one {it from its} other {them from their}} อัลบั้มด้วย",
"permanently_deleted_asset": "ลบสื่อถาวรแล้ว",
"permanently_deleted_assets_count": "ลบ {count, plural, one {# asset} other {# assets}} เรียบร้อยแล้ว",
"permission_onboarding_back": "กลับ",
"permission_onboarding_continue_anyway": "ดำเนินการต่อ",
"permission_onboarding_get_started": "เริ่มต้น",
"permission_onboarding_go_to_settings": "ไปยังการตั้งค่า",
"permission_onboarding_permission_denied": "ไม่อนุญาต ตั้งค่าสิทธิ์เข้าถึงรูปภาพและวิดีโอเพื่อใช้งาน Immich",
"permission_onboarding_permission_granted": "ให้สิทธิ์สำเร็จ คุณพร้อมใช้งานแล้ว",
"permission_onboarding_permission_limited": "สิทธ์จำกัด เพื่อให้ Immich สำรองข้อมูลและจัดการคลังภาพได้ ตั้งค่าสิทธิเข้าถึงรูปภาพและวิดีโอ",
"permission_onboarding_request": "Immich จำเป็นจะต้องได้รับสิทธิ์ดูรูปภาพและวิดีโอ",
"person": "บุคคล",
"person_birthdate": "เกิดวัน{date}",
"photo_shared_all_users": "ดูเหมือนว่าคุณได้แชร์รูปภาพของคุณกับผู้ใช้ทั้งหมด หรือคุณไม่มีผู้ใช้ใดที่จะแชร์ด้วย",
@@ -998,6 +1348,8 @@
"play_motion_photo": "เล่นภาพวัตถุเคลื่อนไหว",
"play_or_pause_video": "เล่นหรือหยุดวิดีโอ",
"port": "พอร์ต",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "การตั้งค่า",
"preset": "พรีเซ็ต",
"preview": "ตัวอย่าง",
"previous": "ก่อนหน้า",
@@ -1005,6 +1357,13 @@
"previous_or_next_photo": "ภาพก่อนหน้าหรือภาพถัดไป",
"primary": "หลัก",
"privacy": "ความเป็นส่วนตัว",
"profile_drawer_app_logs": "การบันทึก",
"profile_drawer_client_out_of_date_major": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
"profile_drawer_client_out_of_date_minor": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
"profile_drawer_client_server_up_to_date": "ไคลเอนต์และเซิร์ฟเวอร์เป็นปัจจุบัน",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
"profile_drawer_server_out_of_date_minor": "เซิร์ฟเวอร์มีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด",
"profile_image_of_user": "รูปภาพโปรไฟล์ของ {user}",
"profile_picture_set": "ตั้งภาพโปรไฟล์แล้ว",
"public_album": "อัลบั้มสาธารณะ",
@@ -1054,6 +1413,8 @@
"recent": "ล่าสุด",
"recent-albums": "อัลบั้มล่าสุด",
"recent_searches": "การค้นหาล่าสุด",
"recently_added": "Recently added",
"recently_added_page_title": "เพิ่มล่าสุด",
"refresh": "รีเฟรช",
"refresh_encoded_videos": "โหลดการ encoded วิดีโอใหม่",
"refresh_faces": "รีเฟรชใบหน้า",
@@ -1109,10 +1470,12 @@
"role_editor": "เครื่องมือแก้ไข",
"role_viewer": "ดู",
"save": "บันทึก",
"save_to_gallery": "Save to gallery",
"saved_api_key": "บันทึก API คีย์ แล้ว",
"saved_profile": "แก้ไขโปรไฟล์สำเร็จ",
"saved_settings": "บันทึกการตั้งค่าสำเร็จ",
"say_something": "พูดอะไรสักอย่าง",
"scaffold_body_error_occurred": "เกิดข้อผิดพลาด",
"scan_all_libraries": "สแกนคลังภาพทั้งหมด",
"scan_library": "สแกน",
"scan_settings": "ตั้งค่าการสแกน",
@@ -1128,16 +1491,45 @@
"search_camera_model": "ค้นหารุ่นกล้อง",
"search_city": "ค้นหาตามเมือง",
"search_country": "ค้นหาตามประเทศ",
"search_filter_apply": "บันทึกตัวกรอง",
"search_filter_camera_title": "Select camera type",
"search_filter_date": "Date",
"search_filter_date_interval": "{start} to {end}",
"search_filter_date_title": "Select a date range",
"search_filter_display_option_not_in_album": "ไม่อยู่ในอัลบั้ม",
"search_filter_display_options": "Display Options",
"search_filter_filename": "Search by file name",
"search_filter_location": "Location",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_media_type_title": "Select media type",
"search_filter_people_title": "Select people",
"search_for": "การค้นหาสำหรับ",
"search_for_existing_person": "ค้นหาบุคคลที่มีอยู่",
"search_no_more_result": "No more results",
"search_no_people": "ไม่พบบุคคลคน",
"search_no_people_named": "ไม่พบ \"{name}\"",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "ตัวเลือกการค้นหา",
"search_page_categories": "หมวดหมู่",
"search_page_motion_photos": "ภาพเคลื่อนไหว",
"search_page_no_objects": "ไม่มีข้อมูลรายการ",
"search_page_no_places": "ไม่มีข้อมูลสถานที่",
"search_page_screenshots": "แคปหน้าจอ",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "เซลฟี่",
"search_page_things": "สิ่งของ",
"search_page_view_all_button": "ดูทั้งหมด",
"search_page_your_activity": "กิจกรรมของคุณ",
"search_page_your_map": "แผนที่คุณ",
"search_people": "ค้นหาผู้คน",
"search_places": "ค้นหาสถานที่",
"search_rating": "ค้นหาตามเรตติ้ง...",
"search_result_page_new_search_hint": "ค้นหาใหม่",
"search_settings": "ตั้งค่าการค้นหา",
"search_state": "ค้นหาตามรัฐ",
"search_suggestion_list_smart_search_hint_1": "การค้นหาอัจฉริยะเปิดเป็นค่าเริ่มต้น เพื่อค้นหา metadata ให้ใช้ไวยากรณ์",
"search_suggestion_list_smart_search_hint_2": "m:คำค้นหา",
"search_tags": "ค้นหาแท็ก",
"search_timezone": "ค้นหาตามวันที่และเวลา",
"search_type": "ค้นหาตามประเภท",
@@ -1158,10 +1550,14 @@
"select_new_face": "เลือกใบหน้าใหม่",
"select_photos": "เลือกรูปภาพ",
"select_trash_all": "เลือกในถังขยะทั้งหมด",
"select_user_for_sharing_page_err_album": "สร้างอัลบั้มล้มเหลว",
"selected": "เลือก",
"selected_count": "{count, plural, other {# เลือกแล้ว}}",
"send_message": "ส่งข้อความ",
"send_welcome_email": "ส่งอีเมลต้อนรับ",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "เวอร์ชันแอพ",
"server_info_box_server_url": "URL เซิร์ฟเวอร์",
"server_offline": "Server ออฟไลน์",
"server_online": "Server ออนไลน์",
"server_stats": "สถิติเซิร์ฟเวอร์",
@@ -1173,21 +1569,90 @@
"set_date_of_birth": "ตั้งวันเกิด",
"set_profile_picture": "ตั้งรูปโปรไฟล์",
"set_slideshow_to_fullscreen": "ตั้งค่าการนำเสนอเต็มจอ",
"setting_image_viewer_help": "ตัวดูรายละเอียดโหลดรูปย่อก่อน แล้วจะโหลดพรีวิวขนาดกลาง (ถ้าเปิด) แล้วค่อยโหลดรูปต้นฉบับ (ถ้าเปิด)",
"setting_image_viewer_original_subtitle": "เปิดเพื่อโหลดรูปต้นฉบับความละเอียดเต็ม (ใหญ่!) ปิดเพื่อลดการใช้ข้อมูล (ทั้งบนเครือข่ายและแคชบนเครื่อง)",
"setting_image_viewer_original_title": "โหลดรูปต้นฉบับ",
"setting_image_viewer_preview_subtitle": "เปิดเพื่อโหลดรูปภาพความละเอียดปานกลาง เปิดเพื่อโหลดรูปต้นฉบับโดยตรงหรือใช้แค่รูปย่อ",
"setting_image_viewer_preview_title": "โหลดรูปภาพตัวอย่าง",
"setting_image_viewer_title": "รูปภาพ",
"setting_languages_apply": "บันทึก",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "ภาษา",
"setting_notifications_notify_failures_grace_period": "แจ้งการสำรองข้อมูลในเบื้องหลังล้มเหลว: {}",
"setting_notifications_notify_hours": "{} ชั่วโมง",
"setting_notifications_notify_immediately": "โดยทันที",
"setting_notifications_notify_minutes": "{} นาที",
"setting_notifications_notify_never": "ไม่เคย",
"setting_notifications_notify_seconds": "{} วินาที",
"setting_notifications_single_progress_subtitle": "ข้อมูลความคืบหน้าการอัปโหลดโดยละเอียดต่อทรัพยากร",
"setting_notifications_single_progress_title": "แสดงรายละเอียดสถานะการสำรองข้อมูลในเบื้องหลัง",
"setting_notifications_subtitle": "ตั้งค่าการแจ้งเตือน",
"setting_notifications_total_progress_subtitle": "ความคืบหน้าการอัปโหลดโดยรวม (เสร็จสิ้น/ทรัพยากรทั้งหมด)",
"setting_notifications_total_progress_title": "แสดงสถานะการสำรองข้อมูลในเบื้องหลังทั้งหมด",
"setting_video_viewer_looping_title": "วนลูป",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "ตั้งค่า",
"settings_require_restart": "กรุณารีสตาร์ท Immmich เพื่อใช้การตั้งค่า",
"settings_saved": "บันทึกการตั้งค่าแล้ว",
"share": "แชร์",
"share_add_photos": "เพิ่มรูปภาพ",
"share_assets_selected": "{} ถูกเลือก",
"share_dialog_preparing": "กำลังเตรียม...",
"shared": "แชร์",
"shared_album_activities_input_disable": "คอมเมนต์ถูกปิด",
"shared_album_activity_remove_content": "ุคุณต้องการลบกิจกรรมนี้หรือไม่?",
"shared_album_activity_remove_title": "ลบกิจกรรม",
"shared_album_section_people_action_error": "เกิดข้อผิดพลาดในการออก/นำออกจากอัลบั้ม",
"shared_album_section_people_action_leave": "นำผู้ใช้งานออกจากอัลบั้ม",
"shared_album_section_people_action_remove_user": "นำผู้ใช้งานออกจากอัลบั้ม",
"shared_album_section_people_title": "ผู้คน",
"shared_by": "แชร์โดย",
"shared_by_user": "แชร์โดย {user}",
"shared_by_you": "แชร์โดยคุณ",
"shared_from_partner": "รูปจาก {partner}",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "ลิงก์ที่แชร์",
"shared_link_clipboard_copied_massage": "คัดลอกลงคลิปบอร์ด",
"shared_link_clipboard_text": "ลิงก์: {}\nรหัสผ่าน: {}",
"shared_link_create_error": "เกิดข้อผิดพลาดขณะสร้างลิงก์แชร์",
"shared_link_edit_description_hint": "เพิ่มรายละเอียดการแชร์",
"shared_link_edit_expire_after_option_day": "1 วัน",
"shared_link_edit_expire_after_option_days": "{} วัน",
"shared_link_edit_expire_after_option_hour": "1 ชั่วโมง",
"shared_link_edit_expire_after_option_hours": "{} ชั่วโมง",
"shared_link_edit_expire_after_option_minute": "1 นาที",
"shared_link_edit_expire_after_option_minutes": "{} นาที",
"shared_link_edit_expire_after_option_months": "{} เดือน",
"shared_link_edit_expire_after_option_year": "{} ปี",
"shared_link_edit_password_hint": "กรอกรหัสผ่านแชร์",
"shared_link_edit_submit_button": "อัปเดตลิงก์",
"shared_link_error_server_url_fetch": "ไม่สามารถรับ URL จากเซิร์ฟเวอร์",
"shared_link_expires_day": "หมดอายุในอีก {} วัน",
"shared_link_expires_days": "หมดอายุในอีก {} วัน",
"shared_link_expires_hour": "หมดอายุในอีก {} ชั่วโมง",
"shared_link_expires_hours": "หมดอายุในอีก {} ชั่วโมง",
"shared_link_expires_minute": "หมดอายุในอีก {} นาที",
"shared_link_expires_minutes": "หมดอายุในอีก {} นาที",
"shared_link_expires_never": "ไม่มีวันหมดอายุ",
"shared_link_expires_second": "หมดอายุในอีก {} วินาที",
"shared_link_expires_seconds": "หมดอายุในอีก {} วินาที",
"shared_link_individual_shared": "แชร์รายบุคคล",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "บริหารลิงก์",
"shared_link_options": "ตั้งค่าลิงก์ที่แชร์",
"shared_links": "ลิงก์ที่แชร์",
"shared_links_description": "แบ่งปันรูปและวีดีโอด้วยลิ้งค์",
"shared_with_me": "Shared with me",
"shared_with_partner": "แชร์กับ {partner}",
"sharing": "การแชร์",
"sharing_enter_password": "โปรดป้อนรหัสผ่าน สำหรับเปิดดูหน้านี้",
"sharing_page_album": "อัลบั้มที่แชร์",
"sharing_page_description": "สร้างอัลบั้มที่แชร์เพื่อแชร์รูปภาพและวิดีโอให้กับคนบนเครือข่ายคุณ",
"sharing_page_empty_list": "รายการว่างเปล่า",
"sharing_sidebar_description": "แสดงลิงก์ที่แชร์ในแถบด้านข้าง",
"sharing_silver_appbar_create_shared_album": "อัลบั้มที่แชร์ใหม่",
"sharing_silver_appbar_share_partner": "แชร์กับพันธมิตร",
"shift_to_permanent_delete": "กด ⇧ to สำหรับลบสื่อถาวร",
"show_album_options": "แสดงตัวเลือกอัลบั้ม",
"show_albums": "แสดงอัลบั้ม",
@@ -1253,6 +1718,9 @@
"support_third_party_description": "การติดตั้ง Immich ของคุณถูกจัดทำแพ็กเกจโดยบุคคลที่สาม ปัญหาที่คุณพบอาจเกิดจากแพ็กเกจดังกล่าว ดังนั้นโปรดแจ้งปัญหาที่เกิดขึ้นกับบุคคลที่สามก่อนโดยใช้ลิงก์ด้านล่าง",
"swap_merge_direction": "สลับด้านรวม",
"sync": "ซิงค์",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"tag": "แท็ก",
"tag_created": "สร้างแท็ก: {tag}",
"tag_not_found_question": "ไม่สามารถหาแท็กได้ใช่หรือไม่?<link>สร้างแท็กใหม่</link>",
@@ -1263,6 +1731,19 @@
"theme": "ธีม",
"theme_selection": "การเลือกธีม",
"theme_selection_description": "ตั้งค่าธีมให้สว่างหรือมืดโดยอัตโนมัติ อิงจากค่าของเบราว์เซอร์ของคุณ",
"theme_setting_asset_list_storage_indicator_title": "แสดงตัวพื้นที่จัดเก็บบนตารางทรัพยากร",
"theme_setting_asset_list_tiles_per_row_title": "จำนวนทรัพยากรต่อแถว ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_image_viewer_quality_subtitle": "ปรับคุณภาพขอตัวดูรูปภาพละเอียด",
"theme_setting_image_viewer_quality_title": "คุณภาพตังดูรูปภาพ",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_system_theme_switch": "อัตโนมัติ (การตั้งค่าระบบ)",
"theme_setting_theme_subtitle": "เลือกธีมของแอพ",
"theme_setting_three_stage_loading_subtitle": "การโหลดแบบสามขั้นตอนอาจเพิ่มประสิทธิภาพในการโหลดแต่จะทำให้โหลดเครื่อข่ายเพิ่มขึ้นมาก",
"theme_setting_three_stage_loading_title": "เปิดการโหลดสามขั้นตอน",
"they_will_be_merged_together": "จะถูกรวมเข้าด้วยกัน",
"third_party_resources": "ทรัพยากรบุคคลที่สาม",
"time_based_memories": "ความทรงจําตามเวลา",
@@ -1281,7 +1762,15 @@
"trash": "ถังขยะ",
"trash_all": "ทิ้งทั้งหมด",
"trash_count": "{count, number} ในถังขยะ",
"trash_emptied": "Emptied trash",
"trash_no_results_message": "รูปภาพหรือวิดีโอที่ถูกลบจะอยู่ที่นี่",
"trash_page_delete_all": "ลบทั้งหมด",
"trash_page_empty_trash_dialog_content": "คุณแน่ใจว่าต้องการทิ้งขยะทั้งหมด ทรัพยากรพวกนี้จะถูกลบจาก Immich ถาวร",
"trash_page_info": "ทรัพยากรที่ทิ้งจะถูกลบถาวรหลัง {} วัน",
"trash_page_no_assets": "ไม่มีทรัพยากรในขยะ",
"trash_page_restore_all": "กู้คืนทั้งหมด",
"trash_page_select_assets_btn": "เลือกทรัพยากร",
"trash_page_title": "ขยะ ({})",
"trashed_items_will_be_permanently_deleted_after": "รายการที่ถูกลบจะถูกลบทิ้งภายใน {days, plural, one {# วัน} other {# วัน}}.",
"type": "ประเภท",
"unarchive": "นำออกจากที่เก็บถาวร",
@@ -1301,12 +1790,17 @@
"updated_password": "รหัสผ่านเปลี่ยนแล้ว",
"upload": "อัปโหลด",
"upload_concurrency": "อัปโหลดพร้อมกัน",
"upload_dialog_info": "คุณต้องการอัพโหลดทรัพยากรดังกล่าวบนเซิร์ฟเวอร์หรือไม่?",
"upload_dialog_title": "อัปโหลดทรัพยากร",
"upload_status_duplicates": "รวมเข้าด้วยกัน",
"upload_status_errors": "ข้อผิดพลาด",
"upload_status_uploaded": "อัปโหลดแล้ว",
"upload_success": "อัปโหลดสำเร็จ, รีเฟรชหน้านี้ใหม่คุณจะเห็นสื่อที่เพิ่มล่าสุด",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "การใช้งาน",
"use_current_connection": "use current connection",
"use_custom_date_range": "ใช้การปรับแต่งช่วงเวลา",
"user": "ผู้ใช้",
"user_id": "ไอดีผู้ใช้",
@@ -1320,9 +1814,15 @@
"users": "ผู้ใช้",
"utilities": "เครื่องมือ",
"validate": "ตรวจสอบ",
"validate_endpoint_error": "Please enter a valid URL",
"variables": "ตัวแปร",
"version": "รุ่น",
"version_announcement_message": "สวัสดี! Immich เวอร์ชันใหม่พร้อมให้ใช้งานแล้ว โปรดใช้เวลาสักครู่เพื่ออ่าน <link>หมายเหตุการเผยแพร่</link> เพื่อให้แน่ใจว่าการตั้งค่าของคุณได้รับการอัปเดตแล้ว เพื่อป้องกันการกำหนดค่าผิดพลาด โดยเฉพาะอย่างยิ่งหากคุณใช้ WatchTower หรือกลไกอื่นๆ ที่จัดการการอัปเดตอินสแตนซ์ Immich ของคุณโดยอัตโนมัติ",
"version_announcement_overlay_release_notes": "รายงานการอัพเดท",
"version_announcement_overlay_text_1": "สวัสดีเพื่อน ขณะนี้มีเวอร์ชั้นใหม่ของ",
"version_announcement_overlay_text_2": "กรุณาใช้เวลาดู",
"version_announcement_overlay_text_3": "และรับรองว่าการติดตั้ง docker-compose และ .env เป็นปัจจุบันเพื่อไม่ให้เกิดการติดตั้งผิดพลาด โดยเฉพาะผู้ใช้ WatchTower หรือระบบอัพเดตแอปพลิเคชั่นเซิร์ฟเวอร์อัตโนมัติ",
"version_announcement_overlay_title": "มีเวอร์ชันใหม่สำหรับเซิร์ฟเวอร์ 🎉",
"version_history": "การเปลี่ยนแปลง",
"version_history_item": "ติดตั้ง {version} วันที่ {date}",
"video": "วิดีโอ",
@@ -1337,15 +1837,20 @@
"view_links": "ดูลิงก์",
"view_next_asset": "ดูสื่อถัดไป",
"view_previous_asset": "ดูสื่อก่อนหน้า",
"viewer_remove_from_stack": "เอาออกจากที่ซ้อน",
"viewer_stack_use_as_main_asset": "ใช้เป็นทรัพยากรหลัก",
"viewer_unstack": "หยุดซ้อน",
"visibility_changed": "เปลี่ยนแปลงการมองเห็นสำหรับ {count, plural, one {# บุคคล} other {# บุคคล}}",
"waiting": "กำลังรอ",
"warning": "คำเตือน",
"week": "สัปดาห์",
"welcome": "ยินดีต้อนรับ",
"welcome_to_immich": "ยินดีต้อนรับสู่ immich",
"wifi_name": "WiFi Name",
"year": "ปี",
"years_ago": "{years, plural, one {# ปี} other {# ปี}} ที่แล้ว",
"yes": "ใช่",
"you_dont_have_any_shared_links": "คุณไม่ได้มีลิงก์ที่แชร์",
"your_wifi_name": "Your WiFi name",
"zoom_image": "ซูมรูปภาพ"
}

View File

@@ -4,6 +4,7 @@
"account_settings": "Hesap Ayarları",
"acknowledge": "Onayla",
"action": "Eylem",
"action_common_update": "Güncelle",
"actions": "Eylemler",
"active": "Aktif",
"activity": "Etkinlik",
@@ -13,6 +14,7 @@
"add_a_location": "Lokasyon ekle",
"add_a_name": "İsim ekle",
"add_a_title": "Başlık ekle",
"add_endpoint": "Uç nokta ekle",
"add_exclusion_pattern": "Hariç tutma deseni ekle",
"add_import_path": "İçe aktarma yolu ekle",
"add_location": "Lokasyon ekle",
@@ -22,6 +24,8 @@
"add_photos": "Fotoğraf ekle",
"add_to": "Şuraya ekle…",
"add_to_album": "Albüme ekle",
"add_to_album_bottom_sheet_added": "{album} albümüne eklendi",
"add_to_album_bottom_sheet_already_exists": "Zaten {album} albümüne ekli",
"add_to_shared_album": "Paylaşılan albüme ekle",
"add_url": "URL ekle",
"added_to_archive": "Arşive eklendi",
@@ -162,7 +166,6 @@
"no_pattern_added": "Desen eklenmedi",
"note_apply_storage_label_previous_assets": "Not: Daha önce yüklenen varlıklara Depolama Etiketi uygulamak için şu komutu çalıştırın",
"note_cannot_be_changed_later": "NOT: Bu daha sonra değiştirilemez!",
"note_unlimited_quota": "NOT: Sınırsız kota için 0 yazın",
"notification_email_from_address": "Şu adresten",
"notification_email_from_address_description": "Göndericinin email adresi, örnek: \"Immich Fotoğraf Sunucusu <noreply@example.com>\"",
"notification_email_host_description": "E-posta sunucusunun ana bilgisayarı (örneğin, smtp.immich.app)",
@@ -363,6 +366,16 @@
"admin_password": "Yönetici Şifresi",
"administration": "Yönetim",
"advanced": "Gelişmiş",
"advanced_settings_log_level_title": "Günlük düzeyi: {}",
"advanced_settings_prefer_remote_subtitle": "Bazı cihazlar, cihazdaki öğelerin küçük resimlerini göstermekte çok yavaştır. Bunun yerine sunucudaki küçük resimleri göstermek için bu ayarı etkinleştirin.",
"advanced_settings_prefer_remote_title": "Uzak görüntüleri tercih et",
"advanced_settings_proxy_headers_subtitle": "Immich'in her ağ isteğiyle birlikte göndermesi gereken proxy header'ları tanımlayın",
"advanced_settings_proxy_headers_title": "Proxy Header'lar",
"advanced_settings_self_signed_ssl_subtitle": "Sunucu uç noktası için SSL sertifika doğrulamasını atlar. Kendinden imzalı sertifikalar için gereklidir.",
"advanced_settings_self_signed_ssl_title": "Kendi kendine imzalanmış SSL sertifikalarına izin ver",
"advanced_settings_tile_subtitle": "Gelişmiş kullanıcı ayarları",
"advanced_settings_troubleshooting_subtitle": "Sorun giderme için ek özellikleri etkinleştirin",
"advanced_settings_troubleshooting_title": "Sorun Giderme",
"age_months": "Yaş {months, plural, one {# ay} other {# ay}}",
"age_year_months": "1 yaş, {months, plural, one {# ay} other {# ay}}",
"age_years": "{years, plural, other {Yaş #}}",
@@ -371,6 +384,8 @@
"album_cover_updated": "Albüm Kapağı güncellendi",
"album_delete_confirmation": "{album} albümünü silmek istediğinize emin misiniz?",
"album_delete_confirmation_description": "Albüm paylaşılıyorsa, diğer kullanıcılar artık bu albüme erişemeyecektir.",
"album_info_card_backup_album_excluded": "HARİÇ",
"album_info_card_backup_album_included": "DAHİL",
"album_info_updated": "Albüm bilgisi güncellendi",
"album_leave": "Albümden Ayrıl?",
"album_leave_confirmation": "{album} albümünden ayrılmak istediğinize emin misiniz?",
@@ -379,10 +394,22 @@
"album_remove_user": "Kullanıcıyı kaldır?",
"album_remove_user_confirmation": "{user} kullanıcısını kaldırmak istediğinize emin misiniz?",
"album_share_no_users": "Görünüşe göre bu albümü tüm kullanıcılarla paylaştınız veya paylaşacak herhangi bir başka kullanıcınız yok.",
"album_thumbnail_card_item": "1 öğe",
"album_thumbnail_card_items": "{} öğe",
"album_thumbnail_card_shared": " · Paylaşıldı",
"album_thumbnail_shared_by": "{} tarafından paylaşıldı",
"album_updated": "Albüm güncellendi",
"album_updated_setting_description": "Paylaşılan bir albüme yeni bir varlık eklendiğinde email bildirimi alın",
"album_user_left": "{album}den ayrıldınız",
"album_user_removed": "{user} kaldırıldı",
"album_viewer_appbar_delete_confirm": "Bu albümü hesabınızdan silmek istediğinizden emin misiniz?",
"album_viewer_appbar_share_err_delete": "Albüm silinemedi",
"album_viewer_appbar_share_err_leave": "Albümden çıkılamadı",
"album_viewer_appbar_share_err_remove": "Albümden öğeleri kaldırmada sorunlar var",
"album_viewer_appbar_share_err_title": "Albüm başlığı değiştirilemedi",
"album_viewer_appbar_share_leave": "Albümden çık",
"album_viewer_appbar_share_to": "Paylaş:",
"album_viewer_page_share_add_users": "Kullanıcı ekle",
"album_with_link_access": "Link'e sahip olan herhangi bir kişinin bu albümdeki fotoğrafları ve kişileri görmesine izin ver.",
"albums": "Albümler",
"albums_count": "{count, plural, one {{count, number} Albüm} other {{count, number} Albüm}}",
@@ -400,42 +427,133 @@
"api_key_description": "Bu değer sadece bir kere gösterilecek. Lütfen bu pencereyi kapatmadan önce kopyaladığınıza emin olun.",
"api_key_empty": "Apı Anahtarı isminiz boş olmamalı",
"api_keys": "API Anahtarları",
"app_bar_signout_dialog_content": ıkış yapmak istediğinize emin misiniz?",
"app_bar_signout_dialog_ok": "Evet",
"app_bar_signout_dialog_title": ıkış",
"app_settings": "Uygulama Ayarları",
"appears_in": "Şurada görünür",
"archive": "Arşiv",
"archive_or_unarchive_photo": "Fotoğrafı arşivle/arşivden çıkar",
"archive_page_no_archived_assets": "Arşivlenmiş öğe bulunamadı",
"archive_page_title": "Arşiv ({})",
"archive_size": "Arşiv boyutu",
"archive_size_description": "İndirmeler için arşiv boyutunu yapılandırın (GiB cinsinden)",
"archived": "Arşivlenen",
"archived_count": "{count, plural, other {# arşivlendi}}",
"are_these_the_same_person": "Bunlar aynı kişi mi?",
"are_you_sure_to_do_this": "Bunu yapmak istediğinize emin misiniz?",
"asset_action_delete_err_read_only": "Salt okunur öğeler silinemez, atlanıyor",
"asset_action_share_err_offline": "Çevrimdışı öğeler alınamıyor, atlanıyor",
"asset_added_to_album": "Albüme eklendi",
"asset_adding_to_album": "Albüme ekleniyor…",
"asset_description_updated": "Varlık açıklaması güncellendi",
"asset_filename_is_offline": "Varlık {filename} çevrimdışı",
"asset_has_unassigned_faces": "Varlık, atanmamış yüzler içeriyor",
"asset_hashing": "Karma (hashleme) oluşturuluyor…",
"asset_list_group_by_sub_title": "Grupla",
"asset_list_layout_settings_dynamic_layout_title": "Dinamik düzen",
"asset_list_layout_settings_group_automatically": "Otomatik",
"asset_list_layout_settings_group_by": "Öğeleri grupla",
"asset_list_layout_settings_group_by_month_day": "Ay + gün",
"asset_list_layout_sub_title": "Düzen",
"asset_list_settings_subtitle": "Fotoğraf ızgara düzeni ayarları",
"asset_list_settings_title": "Fotoğraf Izgarası",
"asset_offline": "Varlık Çevrim Dışı",
"asset_offline_description": "Bu harici varlık artık diskte bulunmuyor. Yardım için lütfen Immich yöneticinizle iletişime geçin.",
"asset_restored_successfully": "Öğe başarıyla geri yüklendi",
"asset_skipped": "Atlandı",
"asset_skipped_in_trash": "Çöpte",
"asset_uploaded": "Yüklendi",
"asset_uploading": "Yükleniyor…",
"asset_viewer_settings_subtitle": "Galeri görüntüleyici ayarlarını düzenle",
"asset_viewer_settings_title": "İçerik Görüntüleyici",
"assets": "Varlıklar",
"assets_added_count": "{count, plural, one {# varlık eklendi} other {# varlık eklendi}}",
"assets_added_to_album_count": "{count, plural, one {# varlık} other {# varlık}} albüme eklendi",
"assets_added_to_name_count": "{count, plural, one {# varlık} other {# varlık}} {hasName, select, true {<b>{name}</b>} other {yeni albüm}} içine eklendi",
"assets_count": "{count, plural, one {# varlık} other {# varlıklar}}",
"assets_deleted_permanently": "{} öğe kalıcı olarak silindi",
"assets_deleted_permanently_from_server": "{} öğe kalıcı olarak Immich sunucusundan silindi",
"assets_moved_to_trash_count": "{count, plural, one {# varlık} other {# varlık}} çöpe taşındı",
"assets_permanently_deleted_count": "Kalıcı olarak silindi {count, plural, one {# varlık} other {# varlıklar}}",
"assets_removed_count": "Kaldırıldı {count, plural, one {# varlık} other {# varlıklar}}",
"assets_removed_permanently_from_device": "{} öğe cihazınızdan kalıcı olarak silindi",
"assets_restore_confirmation": "Tüm çöp kutusundaki varlıklarınızı geri yüklemek istediğinizden emin misiniz? Bu işlemi geri alamazsınız! Ayrıca, çevrim dışı olan varlıkların bu şekilde geri yüklenemeyeceğini unutmayın.",
"assets_restored_count": "{count, plural, one {# varlık} other {# varlıklar}} geri yüklendi",
"assets_restored_successfully": "{} öğe geri yüklendi",
"assets_trashed": "{} öğe çöpe atıldı",
"assets_trashed_count": "{count, plural, one {# varlık} other {# varlıklar}} çöp kutusuna taşındı",
"assets_trashed_from_server": "{} öğe Immich sunucusunda çöpe atıldı",
"assets_were_part_of_album_count": "{count, plural, one {Varlık zaten} other {Varlıklar zaten}} albümün parçasıydı",
"authorized_devices": "Yetki Verilmiş Cihazlar",
"automatic_endpoint_switching_subtitle": "Belirlenmiş Wi-Fi ağına bağlıyken yerel olarak bağlanıp başka yerlerde alternatif bağlantıyı kullan",
"automatic_endpoint_switching_title": "Otomatik URL değiştirme",
"back": "Geri",
"back_close_deselect": "Geri, kapat veya seçimi kaldır",
"background_location_permission": "Arka plan konum izni",
"background_location_permission_content": "Arka planda çalışırken ağ değiştirmek için Immich'in *her zaman* tam konum erişimine sahip olması gerekir, böylece uygulama Wi-Fi ağının adını okuyabilir",
"backup_album_selection_page_albums_device": "Cihazdaki albümler ({})",
"backup_album_selection_page_albums_tap": "Seçmek için dokunun, hariç tutmak için çift dokunun",
"backup_album_selection_page_assets_scatter": "Varlıklar birden fazla albüme dağılabilir. Bu nedenle, yedekleme işlemi sırasında albümler dahil edilebilir veya hariç tutulabilir.",
"backup_album_selection_page_select_albums": "Albüm seç",
"backup_album_selection_page_selection_info": "Seçim Bilgileri",
"backup_album_selection_page_total_assets": "Toplam eşsiz öğeler",
"backup_all": "Tümü",
"backup_background_service_backup_failed_message": "Yedekleme başarısız. Tekrar deneniyor...",
"backup_background_service_connection_failed_message": "Sunucuya bağlanılamadı. Tekrar deneniyor...",
"backup_background_service_current_upload_notification": "{} yükleniyor",
"backup_background_service_default_notification": "Yeni öğeler kontrol ediliyor…",
"backup_background_service_error_title": "Yedekleme hatası",
"backup_background_service_in_progress_notification": "Öğeleriniz yedekleniyor...",
"backup_background_service_upload_failure_notification": "{} yüklemesi başarısız oldu",
"backup_controller_page_albums": "Yedekleme Albümleri",
"backup_controller_page_background_app_refresh_disabled_content": "Arka planda yedeklemeyi kullanabilmek için Ayarlar > Genel > Arka Planda Uygulama Yenileme bölümünden arka planda uygulama yenilemeyi etkinleştirin.",
"backup_controller_page_background_app_refresh_disabled_title": "Arka planda uygulama yenileme devre dışı bırakıldı",
"backup_controller_page_background_app_refresh_enable_button_text": "Ayarlara git",
"backup_controller_page_background_battery_info_link": "Bana nasıl olduğunu göster",
"backup_controller_page_background_battery_info_message": "En iyi arka plan yedekleme deneyimi için lütfen Immich'in arka plan etkinliğini kısıtlayabilecek tüm pil optimizasyonlarını devre dışı bırakın.\n\nBu ayarın yeri cihaz modeline göre değişiklik gösterdiğinden cihazınızda nerede olduğunu lütfen araştırın.",
"backup_controller_page_background_battery_info_ok": "Tamam",
"backup_controller_page_background_battery_info_title": "Pil optimizasyonları",
"backup_controller_page_background_charging": "Sadece şarjda",
"backup_controller_page_background_configure_error": "Arka plan hizmeti yapılandırılamadı",
"backup_controller_page_background_delay": "Yeni öğelerin yedeklemesini geciktir: {}",
"backup_controller_page_background_description": "Uygulamayı açmaya gerek kalmadan yeni öğeleri otomatik olarak yedeklemek için arka plan hizmetini açın",
"backup_controller_page_background_is_off": "Otomatik arka planda yedekleme kapalı",
"backup_controller_page_background_is_on": "Otomatik arka planda yedekleme açık",
"backup_controller_page_background_turn_off": "Arka plan hizmetini kapat",
"backup_controller_page_background_turn_on": "Arka plan hizmetini aç",
"backup_controller_page_background_wifi": "Sadece Wi-Fi",
"backup_controller_page_backup": "Yedekle",
"backup_controller_page_backup_selected": "Seçili: ",
"backup_controller_page_backup_sub": "Yedeklenen öğeler",
"backup_controller_page_created": "Oluşturma tarihi: {}",
"backup_controller_page_desc_backup": "Uygulamayı açtığınızda yeni öğelerin sunucuya otomatik olarak yüklenmesi için ön planda yedeklemeyi açın.",
"backup_controller_page_excluded": "Hariç tutuldu: ",
"backup_controller_page_failed": "Başarısız ({})",
"backup_controller_page_filename": "Dosya adı: {} [{}]",
"backup_controller_page_id": "ID: {}",
"backup_controller_page_info": "Yedekleme bilgileri",
"backup_controller_page_none_selected": "Hiçbiri seçilmedi",
"backup_controller_page_remainder": "Kalan",
"backup_controller_page_remainder_sub": "Seçili albümlerden yedeklenecek kalan öğeler",
"backup_controller_page_server_storage": "Sunucu Depolama Alanı",
"backup_controller_page_start_backup": "Yedeklemeye Başla",
"backup_controller_page_status_off": "Otomatik ön planda yedekleme kapalı",
"backup_controller_page_status_on": "Otomatik ön planda yedekleme açık",
"backup_controller_page_storage_format": "{}/{} kullanılıyor",
"backup_controller_page_to_backup": "Yedeklenecek albümler",
"backup_controller_page_total_sub": "Seçili albümlerden tüm benzersiz öğeler",
"backup_controller_page_turn_off": "Ön planda yedeklemeyi kapat",
"backup_controller_page_turn_on": "Ön planda yedeklemeyi aç",
"backup_controller_page_uploading_file_info": "Dosya bilgisi yükleniyor",
"backup_err_only_album": "Tek albüm kaldırılamaz",
"backup_info_card_assets": "öğeler",
"backup_manual_cancelled": "İptal Edildi",
"backup_manual_in_progress": "Yükleme halihazırda devam ediyor. Bir süre sonra deneyin",
"backup_manual_success": "Başarılı",
"backup_manual_title": "Yükleme durumu",
"backup_options_page_title": "Yedekleme seçenekleri",
"backup_setting_subtitle": "Arka planda ve ön planda yükleme ayarlarını düzenle",
"backward": "Geriye doğru",
"birthdate_saved": "Doğum günü başarılı bir şekilde kaydedildi",
"birthdate_set_description": "Doğum günü, fotoğraftaki insanın fotoğraf çekildiği zamandaki yaşının hesaplanması için kullanılır.",
@@ -447,24 +565,52 @@
"bulk_keep_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} tutmak istediğinizden emin misiniz? Bu işlem, hiçbir şeyi silmeden tüm kopya gruplarını çözecektir.",
"bulk_trash_duplicates_confirmation": "{count, plural, one {# kopya öğeyi} other {# kopya öğeleri}} toplu olarak çöp kutusuna taşımak istediğinizden emin misiniz? Bu işlem, her grubun en büyük öğesini tutacak ve diğer tüm kopyaları çöp kutusuna taşıyacaktır.",
"buy": "Immich'i Satın Alın",
"cache_settings_album_thumbnails": "Kütüphane sayfası küçük resimleri ({} öğe)",
"cache_settings_clear_cache_button": "Önbelleği temizle",
"cache_settings_clear_cache_button_title": "Uygulamanın önbelleğini temizleyin. Önbellek yeniden oluşturulana kadar uygulamanın performansını önemli ölçüde etkileyecektir.",
"cache_settings_duplicated_assets_clear_button": "TEMİZLE",
"cache_settings_duplicated_assets_subtitle": "Uygulama tarafından kara listeye alınan öğeler",
"cache_settings_duplicated_assets_title": "Yinelenen Öğeler ({})",
"cache_settings_image_cache_size": "Görüntü önbellek boyutu ({} öğe)",
"cache_settings_statistics_album": "Kütüphane küçük resimleri",
"cache_settings_statistics_assets": "{} öğe ({})",
"cache_settings_statistics_full": "Tam çözünürlükte resimler",
"cache_settings_statistics_shared": "Paylaşılan albüm küçük resimleri",
"cache_settings_statistics_thumbnail": "Küçük resimler",
"cache_settings_statistics_title": "Önbellek kullanımı",
"cache_settings_subtitle": "Immich mobil uygulamasının önbelleğe alma davranışını kontrol edin",
"cache_settings_thumbnail_size": "Küçük resim önbellek boyutu ({} öğe)",
"cache_settings_tile_subtitle": "Yerel depolama davranışını kontrol et",
"cache_settings_tile_title": "Yerel Depolama",
"cache_settings_title": "Önbellek Ayarları",
"camera": "Kamera",
"camera_brand": "Kamera markası",
"camera_model": "Kamera modeli",
"cancel": "İptal",
"cancel_search": "Aramayı iptal et",
"canceled": "Canceled",
"cannot_merge_people": "Kişiler birleştirilemiyor",
"cannot_undo_this_action": "Bu işlem geri alınamaz!",
"cannot_update_the_description": "Açıklama güncellenemiyor",
"change_date": "Tarihi değiştir",
"change_display_order": "Görüntüleme sırasını değiştir",
"change_expiration_time": "Son kullanma süresini değiştir",
"change_location": "Konumu değiştir",
"change_name": "İsim değiştir",
"change_name_successfully": "İsim başarıyla değiştirildi",
"change_password": "Şifre Değiştir",
"change_password_description": "Bu ya sistemdeki ilk oturum açışınız ya da şifre değişikliği için bir talepte bulunuldu. Lütfen yeni şifreyi aşağıya yazınız.",
"change_password_form_confirm_password": "Parola Onayı",
"change_password_form_description": "Merhaba {name},\n\nBu sisteme ilk kez giriş yaptınız veya parolanızı değiştirmeniz için bir talepte bulunuldu. Lütfen aşağıya yeni parolanızı girin.",
"change_password_form_new_password": "Yeni Parola",
"change_password_form_password_mismatch": "Parolalar eşleşmiyor",
"change_password_form_reenter_new_password": "Tekrar Yeni Parola",
"change_your_password": "Şifreni değiştir",
"changed_visibility_successfully": "Görünürlük başarıyla değiştirildi",
"check_all": "Tümünü Seç",
"check_corrupt_asset_backup": "Bozuk yedek dosyalarını kontrol et",
"check_corrupt_asset_backup_button": "Kontrol et",
"check_corrupt_asset_backup_description": "Bu kontrolü yalnızca Wi-Fi üzerinden ve tüm dosyalar yedeklendikten sonra çalıştırın. İşlem birkaç dakika sürebilir.",
"check_logs": "Günlükleri Kontrol Et",
"choose_matching_people_to_merge": "Birleştirmek için eşleşen kişileri seçiniz",
"city": "Şehir",
@@ -473,6 +619,14 @@
"clear_all_recent_searches": "Son aramaların hepsini temizle",
"clear_message": "Mesajı Temizle",
"clear_value": "Değeri Temizle",
"client_cert_dialog_msg_confirm": "Tamam",
"client_cert_enter_password": "Parola Gir",
"client_cert_import": "İçe Aktar",
"client_cert_import_success_msg": "İstemci sertifikası içe aktarıldı",
"client_cert_invalid_msg": "Geçersiz sertifika dosyası veya yanlış parola",
"client_cert_remove_msg": "İstemci sertifikası kaldırıldı",
"client_cert_subtitle": "Yalnızca PKCS12 (.p12, .pfx) biçimini destekler. Sertifika İçe Aktarma/Kaldırma yalnızca oturum açmadan önce kullanılabilir",
"client_cert_title": "SSL İstemci Sertifikası",
"clockwise": "Saat yönü",
"close": "Kapat",
"collapse": "Daralt",
@@ -483,6 +637,9 @@
"comment_options": "Yorum seçenekleri",
"comments_and_likes": "Yorumlar & beğeniler",
"comments_are_disabled": "Yorumlar devre dışı",
"common_create_new_album": "Yeni Albüm",
"common_server_error": "Lütfen ağ bağlantınızı kontrol edin, sunucunun erişilebilir olduğundan ve uygulama/sunucu sürümlerinin uyumlu olduğundan emin olun.",
"completed": "Completed",
"confirm": "Onayla",
"confirm_admin_password": "Yönetici Şifresini Onayla",
"confirm_delete_face": "Varlıktan {name} yüzünü silmek istediğinizden emin misiniz?",
@@ -492,6 +649,15 @@
"contain": "İçermek",
"context": "Bağlam",
"continue": "Devam et",
"control_bottom_app_bar_album_info_shared": "{} öğe · Paylaşılan",
"control_bottom_app_bar_create_new_album": "Yeni albüm",
"control_bottom_app_bar_delete_from_immich": "Immich'ten sil",
"control_bottom_app_bar_delete_from_local": "Cihazdan sil",
"control_bottom_app_bar_edit_location": "Konumu Düzenle",
"control_bottom_app_bar_edit_time": "Tarih ve Saati Düzenle",
"control_bottom_app_bar_share_link": "Share Link",
"control_bottom_app_bar_share_to": "Paylaş:",
"control_bottom_app_bar_trash_from_immich": "Çöp Kutusuna At",
"copied_image_to_clipboard": "Resim, panoya kopyalandı.",
"copied_to_clipboard": "Panoya kopyalandı!",
"copy_error": "Kopyalama hatası",
@@ -506,24 +672,34 @@
"covers": "Kaplar",
"create": "Oluştur",
"create_album": "Albüm oluştur",
"create_album_page_untitled": "Başlıksız",
"create_library": "Kütüphane Oluştur",
"create_link": "Link oluştur",
"create_link_to_share": "Paylaşmak için link oluştur",
"create_link_to_share_description": "Bağlantıya sahip olan herkesin seçilen fotoğrafları görmesine izin ver",
"create_new": "YENİ OLUŞTUR",
"create_new_person": "Yeni kişi oluştur",
"create_new_person_hint": "Seçili varlıkları yeni bir kişiye atayın",
"create_new_user": "Yeni kullanıcı oluştur",
"create_shared_album_page_share_add_assets": "İÇERİK EKLE",
"create_shared_album_page_share_select_photos": "Fotoğrafları Seç",
"create_tag": "Etiket oluştur",
"create_tag_description": "Yeni bir etiket oluşturun. İç içe geçmiş etiketler için, etiketi tam yolu ve eğik çizgileri de dahil ederek giriniz.",
"create_user": "Kullanıcı oluştur",
"created": "Oluşturuldu",
"crop": "Kes",
"curated_object_page_title": "Nesneler",
"current_device": "Mevcut cihaz",
"current_server_address": "Mevcut sunucu adresi",
"custom_locale": "Özel Yerel Ayar",
"custom_locale_description": "Tarihleri ve sayıları dile ve bölgeye göre biçimlendirin",
"daily_title_text_date": "dd MMM E",
"daily_title_text_date_year": "dd MMM yyyy E",
"dark": "Koyu",
"date_after": "Sonraki tarih",
"date_and_time": "Tarih ve Zaman",
"date_before": "Önceki tarih",
"date_format": "LLL d, y E • H:mm",
"date_of_birth_saved": "Doğum günü başarı ile kaydedildi",
"date_range": "Tarih aralığı",
"day": "Gün",
@@ -537,19 +713,30 @@
"delete": "Sil",
"delete_album": "Albümü sil",
"delete_api_key_prompt": "Bu API anahtarını silmek istediğinizden emin misiniz?",
"delete_dialog_alert": "Bu öğeler cihazınızdan ve Immich'ten kalıcı olarak silinecektir",
"delete_dialog_alert_local": "Bu öğeler cihazınızdan kalıcı olarak silinecek ancak Immich sunucusunda mevcut kalacaklardır",
"delete_dialog_alert_local_non_backed_up": "Bazı öğeler Immich'e yedeklenmemiş ve cihazınızdan kalıcı olarak silinecek",
"delete_dialog_alert_remote": "Bu öğeler Immich sunucusundan kalıcı olarak silinecektir",
"delete_dialog_ok_force": "Yine de Sil",
"delete_dialog_title": "Kalıcı Olarak Sil",
"delete_duplicates_confirmation": "Bu kopyaları kalıcı olarak silmek istediğinizden emin misiniz?",
"delete_face": "Yüzü sil",
"delete_key": "Anahtarı sil",
"delete_library": "Kütüphaneyi sil",
"delete_link": "Bağlantıyı sil",
"delete_local_dialog_ok_backed_up_only": "Sadece Yedeklenmişleri Sil",
"delete_local_dialog_ok_force": "Yine de Sil",
"delete_others": "Diğerlerini sil",
"delete_shared_link": "Paylaşılmış linki sil",
"delete_shared_link_dialog_title": "Paylaşılan Bağlantı Sil",
"delete_tag": "Etiketi sil",
"delete_tag_confirmation_prompt": "{tagName} etiketini silmek istediğinizden emin misiniz?",
"delete_user": "Kullanıcıyı sil",
"deleted_shared_link": "Paylaşılan bağlantı silindi",
"deletes_missing_assets": "Diskte eksik olan varlıkları siler",
"description": "Açıklama",
"description_input_hint_text": "Açıklama ekle...",
"description_input_submit_error": "Açıklama güncellenirken hata oluştu, daha fazla ayrıntı için günlüğü kontrol edin",
"details": "Detaylar",
"direction": "Yön",
"disabled": "Devre dışı bırakıldı",
@@ -566,12 +753,26 @@
"documentation": "Dokümantasyon",
"done": "Bitti",
"download": "İndir",
"download_canceled": "İndirme iptal edildi",
"download_complete": "İndirme tamamlandı",
"download_enqueue": "İndirme sıraya alındı",
"download_error": "İndirme Hatası",
"download_failed": "İndirme başarısız oldu",
"download_filename": "dosya: {}",
"download_finished": "İndirme tamamlandı",
"download_include_embedded_motion_videos": "Gömülü videolar",
"download_include_embedded_motion_videos_description": "Görsel hareketli fotoğraflarda yer alan gömülü videoları ayrı bir dosya olarak dahil et",
"download_notfound": "İndirme bulunamadı",
"download_paused": "İndirme duraklatıldı",
"download_settings": "İndir",
"download_settings_description": "Varlık indirme ile ilgili ayarları yönetin",
"download_started": "İndirme başladı",
"download_sucess": "İndirme başarılı",
"download_sucess_android": "Medya DCIM/Immich klasörüne indirildi",
"download_waiting_to_retry": "Yeniden denemek için bekleniyor",
"downloading": "İndiriliyor",
"downloading_asset_filename": "Varlık indiriliyor {filename}",
"downloading_media": "Medya indiriliyor",
"drop_files_to_upload": "Dosyaları yüklemek için herhangi bir yere bırakın",
"duplicates": "Kopyalar",
"duplicates_description": "Her grubu çözmek için, varsa hangilerinin kopya olduğunu belirtin",
@@ -588,6 +789,7 @@
"edit_key": "Anahtarı düzenle",
"edit_link": "Bağlantıyı düzenle",
"edit_location": "Lokasyonu düzenleyin",
"edit_location_dialog_title": "Konum",
"edit_name": "İsmi düzenleyin",
"edit_people": "Kişileri düzenle",
"edit_tag": "Etiketi düzenle",
@@ -600,14 +802,19 @@
"editor_crop_tool_h2_aspect_ratios": "En boy oranları",
"editor_crop_tool_h2_rotation": "Rotasyon",
"email": "E-posta",
"empty_folder": "This folder is empty",
"empty_trash": "Çöpü boşalt",
"empty_trash_confirmation": "Çöp kutusunu boşaltmak istediğinizden emin misiniz? Bu işlem, Immich'teki çöp kutusundaki tüm varlıkları kalıcı olarak silecektir.\nBu işlemi geri alamazsınız!",
"enable": "Etkinleştir",
"enabled": "Etkinleştirildi",
"end_date": "Bitiş tarihi",
"enqueued": "Enqueued",
"enter_wifi_name": "Wi-Fi adını girin",
"error": "Hata",
"error_change_sort_album": "Albüm sıralama düzeni değiştirilemedi",
"error_delete_face": "Yüzü varlıktan silme hatası",
"error_loading_image": "Resim yüklenirken hata oluştu",
"error_saving_image": "Hata: {}",
"error_title": "Bir Hata Oluştu - Bir şeyler ters gitti",
"errors": {
"cannot_navigate_next_asset": "Sonraki varlığa geçiş yapılamıyor",
@@ -736,8 +943,21 @@
"unable_to_upload_file": "Dosya yüklenemiyor"
},
"exif": "EXIF",
"exif_bottom_sheet_description": "Açıklama Ekle...",
"exif_bottom_sheet_details": "DETAYLAR",
"exif_bottom_sheet_location": "KONUM",
"exif_bottom_sheet_people": "KİŞİLER",
"exif_bottom_sheet_person_add_person": "İsim ekle",
"exif_bottom_sheet_person_age": "Age {}",
"exif_bottom_sheet_person_age_months": "Age {} months",
"exif_bottom_sheet_person_age_year_months": "Age 1 year, {} months",
"exif_bottom_sheet_person_age_years": "Age {}",
"exit_slideshow": "Slayt gösterisinden çık",
"expand_all": "Hepsini genişlet",
"experimental_settings_new_asset_list_subtitle": "Çalışmalar devam ediyor",
"experimental_settings_new_asset_list_title": "Deneysel fotoğraf ızgarasını etkinleştir",
"experimental_settings_subtitle": "Riskleri kabul ederek kullanın!",
"experimental_settings_title": "Deneysel",
"expire_after": "Sonlanma süresi",
"expired": "Süresi dolmuş",
"expires_date": "{date} tarihinde sona eriyor",
@@ -748,11 +968,16 @@
"extension": "Uzantı",
"external": "Harici",
"external_libraries": "Harici kütüphaneler",
"external_network": "Harici ağlar",
"external_network_sheet_info": "Belirlenmiş WiFi ağına bağlı olmadığında uygulama, yukarıdan aşağıya doğru ulaşabileceği aşağıdaki URL'lerden ilki aracılığıyla sunucuya bağlanacaktır",
"face_unassigned": "Yüz atanmadı",
"failed": "Failed",
"failed_to_load_assets": "Varlıklar yüklenemedi",
"failed_to_load_folder": "Failed to load folder",
"favorite": "Favori",
"favorite_or_unfavorite_photo": "Favoriye ekle veya çıkar",
"favorites": "Favoriler",
"favorites_page_no_favorites": "Favori öğe bulunamadı",
"feature_photo_updated": "Özellikli fotoğraf güncellendi",
"features": "Özellikler",
"features_setting_description": "Uygulamanın özelliklerini yönet",
@@ -760,25 +985,38 @@
"file_name_or_extension": "Dosya adı veya uzantı",
"filename": "Dosya adı",
"filetype": "Dosya tipi",
"filter": "Filtre",
"filter_people": "Kişileri filtrele",
"find_them_fast": "Adlarına göre hızlıca bul",
"fix_incorrect_match": "Yanlış eşleştirmeyi düzelt",
"folder": "Folder",
"folder_not_found": "Folder not found",
"folders": "Klasörler",
"folders_feature_description": "Dosya sistemindeki fotoğraf ve videoları klasör görünümüyle keşfedin",
"forward": "İleri",
"general": "Genel",
"get_help": "Yardım Al",
"get_wifiname_error": "Wi-Fi adı alınamadı. Gerekli izinleri verdiğinizden ve bir Wi-Fi ağına bağlı olduğunuzdan emin olun",
"getting_started": "Başlarken",
"go_back": "Geri git",
"go_to_folder": "Klasöre git",
"go_to_search": "Aramaya git",
"grant_permission": "İzin ver",
"group_albums_by": "Albümleri gruplandır...",
"group_country": "Ülkeye göre grupla",
"group_no": "Gruplama yok",
"group_owner": "Sahibe göre gruplandır",
"group_places_by": "Yerleri gruplandır...",
"group_year": "Yıla göre grupla",
"haptic_feedback_switch": "Dokunsal geri bildirimi aç",
"haptic_feedback_title": "Dokunsal Geri Bildirim (Haptic Feedback)",
"has_quota": "Kota var",
"header_settings_add_header_tip": "Header Ekle",
"header_settings_field_validator_msg": "Değer boş olamaz",
"header_settings_header_name_input": "Header adı",
"header_settings_header_value_input": "Header değeri",
"headers_settings_tile_subtitle": "Uygulamanın her ağ isteğiyle birlikte göndermesi gereken proxy header'ları tanımlayın",
"headers_settings_tile_title": "Özel proxy headers",
"hi_user": "Merhaba {name} {email}",
"hide_all_people": "Tüm kişileri gizle",
"hide_gallery": "Galeriyi gizle",
@@ -786,8 +1024,24 @@
"hide_password": "Şifreyi gizle",
"hide_person": "Kişiyi gizle",
"hide_unnamed_people": "İsimsiz kişileri gizle",
"home_page_add_to_album_conflicts": "{album} albümüne {added} öğe eklendi. {failed} varlık zaten albümdeydi.",
"home_page_add_to_album_err_local": "Yerel öğeler henüz albümlere eklenemiyor, atlanıyor",
"home_page_add_to_album_success": "{album} albümüne {added} öğe eklendi.",
"home_page_album_err_partner": "Partner öğeleri henüz bir albüme eklenemiyor, atlanıyor",
"home_page_archive_err_local": "Yerel öğeler henüz arşivlenemiyor, atlanıyor",
"home_page_archive_err_partner": "Partner öğeleri henüz arşivlenemiyor, atlanıyor",
"home_page_building_timeline": "Zaman çizelgesi oluşturuluyor",
"home_page_delete_err_partner": "Partner öğeleri silinemez, atlanıyor",
"home_page_delete_remote_err_local": "Uzaktan silme seçimindeki yerel öğeler atlanıyor",
"home_page_favorite_err_local": "Yerel öğeler henüz favorilere eklenemiyor, atlanıyor",
"home_page_favorite_err_partner": "Partner öğeleri henüz favorilere eklenemiyor, atlanıyor",
"home_page_first_time_notice": "Uygulamayı ilk kez kullanıyorsanız, zaman çizelgesinin albümlerdeki fotoğraf ve videolar ile oluşturulabilmesi için lütfen yedekleme için albüm(ler) seçtiğinizden emin olun.",
"home_page_share_err_local": "Yerel öğeler bağlantı ile paylaşılamaz, atlanıyor",
"home_page_upload_err_limit": "Aynı anda en fazla 30 öğe yüklenebilir, atlanabilir",
"host": "Host",
"hour": "Saat",
"ignore_icloud_photos": "iCloud Fotoğraflarını Yok Say",
"ignore_icloud_photos_description": "iCloud'a yüklenmiş fotoğraflar Immich sunucusuna yüklenmesin",
"image": "Resim",
"image_alt_text_date": "{isVideo, select, true {Video} other {Fotoğraf}} {date} tarihinde çekildi",
"image_alt_text_date_1_person": "{isVideo, select, true {Video} other {Fotoğraf}} {person1} ile {date} tarihinde çekildi",
@@ -799,6 +1053,10 @@
"image_alt_text_date_place_2_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1} ve {person2} ile {date} tarihinde çekildi",
"image_alt_text_date_place_3_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1}, {person2} ve {person3} ile {date} tarihinde çekildi",
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Video} other {Fotoğraf}} {city}, {country} şehrinde {person1}, {person2} ve diğer {additionalCount, number} kişi ile {date} tarihinde çekildi",
"image_saved_successfully": "Resim kaydedildi",
"image_viewer_page_state_provider_download_started": "İndirme Başladı",
"image_viewer_page_state_provider_download_success": "İndirme Başarılı",
"image_viewer_page_state_provider_share_error": "Paylaşım Hatası",
"immich_logo": "Immich Logosu",
"immich_web_interface": "Immich Web Arayüzü",
"import_from_json": "JSON'dan İçe Aktar",
@@ -817,6 +1075,8 @@
"night_at_midnight": "Her akşam geceyarısında",
"night_at_twoam": "Her gün gece 2:00'de"
},
"invalid_date": "Geçersiz tarih",
"invalid_date_format": "Geçersiz tarih formatı",
"invite_people": "Kişileri Davet Et",
"invite_to_album": "Albüme davet et",
"items_count": "{count, plural, one {# Öğe} other {# Öğe}}",
@@ -837,6 +1097,12 @@
"level": "Seviye",
"library": "Kütüphane",
"library_options": "Kütüphane ayarları",
"library_page_device_albums": "Cihazdaki Albümler",
"library_page_new_album": "Yeni albüm",
"library_page_sort_asset_count": "Öğe sayısı",
"library_page_sort_created": "Oluşturma tarihi",
"library_page_sort_last_modified": "Son düzenleme",
"library_page_sort_title": "Albüm başlığı",
"light": "Açık",
"like_deleted": "Beğeni silindi",
"link_motion_video": "Hareket videosunu bağla",
@@ -846,12 +1112,42 @@
"list": "Liste",
"loading": "Yükleniyor",
"loading_search_results_failed": "Arama sonuçları yüklenemedi",
"local_network": "Yerel Wi-Fi",
"local_network_sheet_info": "Uygulama belirlenmiş Wi-Fi ağını kullanırken bu URL üzerinden sunucuya bağlanacaktır",
"location_permission": "Konum izni",
"location_permission_content": "Otomatik geçiş özelliğinin çalışabilmesi için Immich'in mevcut Wi-Fi ağının adını bilmesi, bunu sağlamak için de tam konum iznine ihtiyacı vardır.",
"location_picker_choose_on_map": "Haritada seç",
"location_picker_latitude_error": "Geçerli bir enlem yazın",
"location_picker_latitude_hint": "Buraya enlem yazın",
"location_picker_longitude_error": "Geçerli bir boylam yazın",
"location_picker_longitude_hint": "Buraya boylam yazın",
"log_out": "Oturumu kapat",
"log_out_all_devices": "Tüm Cihazlarda Oturumu Kapat",
"logged_out_all_devices": "Tüm cihazlarda oturum kapatıldı",
"logged_out_device": "Oturum kapatılmış cihaz",
"login": "Giriş yap",
"login_disabled": "Giriş devre dışı bırakıldı",
"login_form_api_exception": "API hatası. Lütfen sunucu URL'sini kontrol edin ve tekrar deneyin.",
"login_form_back_button_text": "Geri",
"login_form_email_hint": "mail@adresiniz.com",
"login_form_endpoint_hint": "http://sunucu-ip:port",
"login_form_endpoint_url": "Sunucu Uç Nokta URL",
"login_form_err_http": "Lütfen http:// veya https:// olarak belirtin",
"login_form_err_invalid_email": "Geçersiz E-posta",
"login_form_err_invalid_url": "Geçersiz URL",
"login_form_err_leading_whitespace": "Baştaki boşluk",
"login_form_err_trailing_whitespace": "Sondaki boşluk",
"login_form_failed_get_oauth_server_config": "OAuth kullanırken bir hata oluştu, sunucu URL'sini kontrol edin",
"login_form_failed_get_oauth_server_disable": "OAuth özelliği bu sunucuda mevcut değil",
"login_form_failed_login": "Giriş yaparken hata oluştu, sunucu URL'sini, e-postayı ve parolayı kontrol edin",
"login_form_handshake_exception": "Sunucuda bir El Sıkışma İstisnası vardı. Kendi kendine imzalanmış bir sertifika kullanıyorsanız, ayarlar menüsünden kendi kendine imzalanmış sertifikalara izin verin.",
"login_form_password_hint": "parola",
"login_form_save_login": "Oturum açık kalsın",
"login_form_server_empty": "Sunucu URL'si girin",
"login_form_server_error": "Sunucuya bağlanılamadı.",
"login_has_been_disabled": "Giriş devre dışı bırakıldı.",
"login_password_changed_error": "Parola güncellenirken bir hata oluştu.",
"login_password_changed_success": "Parola güncellendi",
"logout_all_device_confirmation": "Tüm cihazlarda oturum kapatmak istediğinizden emin misiniz?",
"logout_this_device_confirmation": "Bu cihazda oturum kapatmak istediğinizden emin misiniz?",
"longitude": "Boylam",
@@ -868,13 +1164,40 @@
"manage_your_devices": "Cihazlarınızı yönetin",
"manage_your_oauth_connection": "OAuth bağlantınızı yönetin",
"map": "Harita",
"map_assets_in_bound": "{} fotoğraf",
"map_assets_in_bounds": "{} fotoğraf",
"map_cannot_get_user_location": "Kullanıcının konumu alınamıyor",
"map_location_dialog_yes": "Evet",
"map_location_picker_page_use_location": "Bu konumu kullan",
"map_location_service_disabled_content": "Mevcut konumunuzdan öğeleri görüntülemek için konum hizmetinin etkinleştirilmesi gerekiyor. Şimdi etkinleştirmek istiyor musunuz?",
"map_location_service_disabled_title": "Konum hizmeti devre dışı bırakıldı",
"map_marker_for_images": "{city}, {country} şehrinde çekilen fotoğraflar için harita işaretleyicisi",
"map_marker_with_image": "Resimli harita işaretleyicisi",
"map_no_assets_in_bounds": "Bu alanda fotoğraf yok",
"map_no_location_permission_content": "Mevcut konumunuzdan öğeleri görüntülemek için konum iznine ihtiyaç var. Şimdi izin vermek istiyor musunuz?",
"map_no_location_permission_title": "Konum izni reddedildi",
"map_settings": "Harita ayarları",
"map_settings_dark_mode": "Koyu tema",
"map_settings_date_range_option_day": "Son 24 saat",
"map_settings_date_range_option_days": "Son {} gün",
"map_settings_date_range_option_year": "Son yıl",
"map_settings_date_range_option_years": "Son {} yıl",
"map_settings_dialog_title": "Harita Ayarları",
"map_settings_include_show_archived": "Arşivdekileri dahil et",
"map_settings_include_show_partners": "Partnerleri Dahil Et",
"map_settings_only_show_favorites": "Sadece Favorileri Göster",
"map_settings_theme_settings": "Harita Teması",
"map_zoom_to_see_photos": "Fotoğrafları görmek için uzaklaştırın",
"matches": "Eşleşenler",
"media_type": "Medya türü",
"memories": "Anılar",
"memories_all_caught_up": "Tümü görüldü",
"memories_check_back_tomorrow": "Daha fazla anı için yarın tekrar ziyaret edin",
"memories_setting_description": "Anılarınızda görmek istediklerinizi yönetin",
"memories_start_over": "Baştan Başla",
"memories_swipe_to_close": "Kapatmak için yukarı kaydırın",
"memories_year_ago": "Bir yıl önce",
"memories_years_ago": "{} yıl önce",
"memory": "Anı",
"memory_lane_title": "Anılara Yolculuk {title}",
"menu": "Menü",
@@ -889,12 +1212,17 @@
"missing": "Eksik",
"model": "Model",
"month": "Ay",
"monthly_title_text_date_format": "MMMM y",
"more": "Daha fazla",
"moved_to_trash": "Çöp kutusuna taşındı",
"multiselect_grid_edit_date_time_err_read_only": "Salt okunur öğelerin tarihi düzenlenemedi, atlanıyor",
"multiselect_grid_edit_gps_err_read_only": "Salt okunur öğelerin konumu düzenlenemedi, atlanıyor",
"mute_memories": "Anıları sessize al",
"my_albums": "Albümlerim",
"name": "İsim",
"name_or_nickname": "İsim veya takma isim",
"networking_settings": "Ağ Ayarları",
"networking_subtitle": "Sunucu uç nokta ayarlarını düzenle",
"never": "Asla",
"new_album": "Yeni albüm",
"new_api_key": "Yeni API Anahtarı",
@@ -911,6 +1239,7 @@
"no_albums_yet": "Henüz albüm oluşturmadınız.",
"no_archived_assets_message": "Fotoğraf görünümünüzden kaldırmak için fotoğrafları ve videoları arşivleyin",
"no_assets_message": "İLK FOTOĞRAFINIZI YÜKLEMEK İÇİN TIKLAYIN",
"no_assets_to_show": "Gösterilecek öğe yok",
"no_duplicates_found": "Çift bulunamadı.",
"no_exif_info_available": "EXIF bilgisi mevcut değil",
"no_explore_results_message": "Koleksiyonunuzu keşfetmek için daha fazla fotoğraf yükleyin.",
@@ -922,9 +1251,13 @@
"no_results_description": "Eş anlamlı ya da daha genel anlamlı bir kelime deneyin",
"no_shared_albums_message": "Fotoğrafları ve videolarıınızdaki kişilerle paylaşmak için bir albüm oluşturun",
"not_in_any_album": "Hiçbir albümde değil",
"not_selected": "Not selected",
"note_apply_storage_label_to_previously_uploaded assets": "Not: Daha önce yüklenen varlıklar için bir depolama yolu etiketi uygulamak üzere şunu başlatın",
"note_unlimited_quota": "Not: Sınırsız kota için 0 yazın",
"notes": "Notlar",
"notification_permission_dialog_content": "Bildirimleri etkinleştirmek için cihaz ayarlarına gidin ve izin verin.",
"notification_permission_list_tile_content": "Bildirimleri etkinleştirmek için izin verin.",
"notification_permission_list_tile_enable_button": "Bildirimleri Etkinleştir",
"notification_permission_list_tile_title": "Bildirim İzni",
"notification_toggle_setting_description": "E-posta bildirimlerine izin ver",
"notifications": "Bildirimler",
"notifications_setting_description": "Bildirimleri yönetin",
@@ -935,6 +1268,7 @@
"offline_paths_description": "Bu sonuçlar, harici bir kütüphaneye ait olmayan dosyaların elle silinmesinden kaynaklanıyor olabilir.",
"ok": "Tamam",
"oldest_first": "Eski olan önce",
"on_this_device": "Bu cihazda",
"onboarding": "Uyum Süreci",
"onboarding_privacy_description": "Şu (isteğe bağlı) özellikler harici hizmetlere dayanır ve yönetim ayarlarından herhangi bir zamanda devre dışı bırakılabilir.",
"onboarding_theme_description": "İnstanceınız için bir renk teması seçin. Bunu daha sonra ayarlarınızdan değiştirebilirsiniz.",
@@ -958,6 +1292,14 @@
"partner_can_access": "{partner} erişebilir",
"partner_can_access_assets": "Arşivlenenler ve Silinenler dışındaki tüm fotoğraf ve videolarınız",
"partner_can_access_location": "Fotoğraf ve videolarınızın çekildiği konum",
"partner_list_user_photos": "{user} fotoğrafları",
"partner_list_view_all": "Tümünü gör",
"partner_page_empty_message": "Fotoğraflarınız henüz hiçbir partnerle paylaşılmadı.",
"partner_page_no_more_users": "Eklenecek başka kullanıcı yok",
"partner_page_partner_add_failed": "Partner eklenemedi",
"partner_page_select_partner": "Partner seç",
"partner_page_shared_to_title": "Paylaşıldı:",
"partner_page_stop_sharing_content": "{} artık fotoğraflarınıza erişemeyecek.",
"partner_sharing": "Ortak paylaşımı",
"partners": "Ortaklar",
"password": "Şifre",
@@ -986,6 +1328,14 @@
"permanently_delete_assets_prompt": "Bu {count, plural, one {dosyayı} other {<b>#</b> dosyaları}} kalıcı olarak silmek istediğinizden emin misiniz? Bu işlem {count, plural, one {bu dosyayı} other {bu dosyaları}} albümlerinizden de kaldırır.",
"permanently_deleted_asset": "Kalıcı olarak silinmiş ögeler",
"permanently_deleted_assets_count": "{count, plural, one {# dosya} other {# dosya}} kalıcı olarak silindi",
"permission_onboarding_back": "Geri",
"permission_onboarding_continue_anyway": "Yine de devam et",
"permission_onboarding_get_started": "Haydi başlayalım",
"permission_onboarding_go_to_settings": "Ayarlara git",
"permission_onboarding_permission_denied": "İzin reddedildi. Immich'i kullanmak için Ayarlar'da fotoğraf ve video izinlerini verin.",
"permission_onboarding_permission_granted": "İzin verildi. Artık hazırsınız!",
"permission_onboarding_permission_limited": "Sınırlı izin. Immich'in tüm fotoğrav ve videolarınızı yedeklemesine ve yönetmesine izin vermek için Ayarlar'da fotoğraf ve video izinlerini verin.",
"permission_onboarding_request": "Immich'in fotoğraflarınızı ve videolarınızı görüntüleyebilmesi için izne ihtiyacı var.",
"person": "Kişi",
"person_hidden": "{name}{hidden, select, true { (gizli)} other {}}",
"photo_shared_all_users": "Fotoğraflarınızı tüm kullanıcılarla paylaştınız gibi görünüyor veya paylaşacak kullanıcı bulunmuyor.",
@@ -1002,6 +1352,8 @@
"play_motion_photo": "Hareketli fotoğrafı oynat",
"play_or_pause_video": "Videoyu oynat ya da durdur",
"port": "Port",
"preferences_settings_subtitle": "Uygulama tercihlerini düzenle",
"preferences_settings_title": "Tercihler",
"preset": "Ön ayar",
"preview": "Önizleme",
"previous": "Önceki",
@@ -1009,6 +1361,13 @@
"previous_or_next_photo": "Önceki ya da sonraki fotoğraf",
"primary": "Birincil",
"privacy": "Gizlilik",
"profile_drawer_app_logs": "Günlükler",
"profile_drawer_client_out_of_date_major": "Mobil uygulama güncel değil. Lütfen en son ana sürüme güncelleyin.",
"profile_drawer_client_out_of_date_minor": "Mobil uygulama güncel değil. Lütfen en son sürüme güncelleyin.",
"profile_drawer_client_server_up_to_date": "Uygulama ve sunucu güncel",
"profile_drawer_github": "GitHub",
"profile_drawer_server_out_of_date_major": "Sunucu güncel değil. Lütfen en son ana sürüme güncelleyin.",
"profile_drawer_server_out_of_date_minor": "Sunucu güncel değil. Lütfen en son sürüme güncelleyin.",
"profile_image_of_user": "{user} kullanıcısının profil resmi",
"profile_picture_set": "Profil resmi ayarlandı.",
"public_album": "Herkese açık albüm",
@@ -1058,6 +1417,8 @@
"recent": "Son",
"recent-albums": "Son kaydedilen albümler",
"recent_searches": "Son aramalar",
"recently_added": "Son eklenenler",
"recently_added_page_title": "Son Eklenenler",
"refresh": "Yenile",
"refresh_encoded_videos": "Kodlanmış videoları yenile",
"refresh_faces": "Yüzleri yenile",
@@ -1112,10 +1473,12 @@
"role_editor": "Düzenleyici",
"role_viewer": "Görüntüleyici",
"save": "Kaydet",
"save_to_gallery": "Fotoğraflar'a kaydet",
"saved_api_key": "API anahtarı kaydedildi",
"saved_profile": "Profil kaydedildi",
"saved_settings": "Kaydedilen ayarlar",
"say_something": "Bir şey söyle",
"scaffold_body_error_occurred": "Bir hata meydana geldi",
"scan_all_libraries": "Tüm Kütüphaneleri Tara",
"scan_library": "Kütüphaneyi tara",
"scan_settings": "Ayarları Tara",
@@ -1131,16 +1494,45 @@
"search_camera_model": "Kamera modeline göre ara...",
"search_city": "Şehre göre ara...",
"search_country": "Ülkeye göre ara...",
"search_filter_apply": "Filtreyi uygula",
"search_filter_camera_title": "Kamera tipi seç",
"search_filter_date": "Tarih",
"search_filter_date_interval": "{start} -> {end}",
"search_filter_date_title": "Tarih aralığı seç",
"search_filter_display_option_not_in_album": "Albümde değil",
"search_filter_display_options": "Görüntü Seçenekleri",
"search_filter_filename": "Search by file name",
"search_filter_location": "Konum",
"search_filter_location_title": "Konum seç",
"search_filter_media_type": "Medya Türü",
"search_filter_media_type_title": "Medya türü seç",
"search_filter_people_title": "Kişi seç",
"search_for": "Araştır",
"search_for_existing_person": "Mevcut bir kişiyi ara",
"search_no_more_result": "No more results",
"search_no_people": "Kişi yok",
"search_no_people_named": "\"{name}\" isimli bir kişi yok",
"search_no_result": "No results found, try a different search term or combination",
"search_options": "Arama seçenekleri",
"search_page_categories": "Kategoriler",
"search_page_motion_photos": "Canlı Fotoğraflar",
"search_page_no_objects": "Hiçbir Nesne Bilgisi Mevcut Değil",
"search_page_no_places": "Konum Bilgisi Bulunamadı",
"search_page_screenshots": "Ekran görüntüleri",
"search_page_search_photos_videos": "Fotoğraf ve videolarda ara",
"search_page_selfies": "Selfie'ler",
"search_page_things": "Nesneler",
"search_page_view_all_button": "Tümü",
"search_page_your_activity": "Etkinliğiniz",
"search_page_your_map": "Haritanız",
"search_people": "Kişilere göre ara",
"search_places": "Yerleri ara",
"search_rating": "Derecelendirerek arayın...",
"search_result_page_new_search_hint": "Yeni Arama",
"search_settings": "Ayarları ara",
"search_state": "Eyalet/İl ara...",
"search_suggestion_list_smart_search_hint_1": "Akıllı arama varsayılan olarak etkindir, meta verileri aramak için syntax kullanın",
"search_suggestion_list_smart_search_hint_2": "m:meta-veri-araması",
"search_tags": "Etiketleri ara...",
"search_timezone": "Saat dilimi ara...",
"search_type": "Arama türü",
@@ -1160,10 +1552,14 @@
"select_new_face": "Yeni yüz seç",
"select_photos": "Fotoğrafları seç",
"select_trash_all": "Hepsini çöpe at",
"select_user_for_sharing_page_err_album": "Albüm oluşturulamadı",
"selected": "Seçildi",
"selected_count": "{count, plural, other {# seçildi}}",
"send_message": "Mesaj gönder",
"send_welcome_email": "Hoş geldin e-postası gönder",
"server_endpoint": "Sunucu Uç Noktası",
"server_info_box_app_version": "Uygulama Sürümü",
"server_info_box_server_url": "Sunucu URL",
"server_offline": "Sunucu çevrimdışı",
"server_online": "Sunucu çevrimiçi",
"server_stats": "Sunucu istatistikleri",
@@ -1175,22 +1571,91 @@
"set_date_of_birth": "Doğum tarihini ayarla",
"set_profile_picture": "Profil resmini ayarla",
"set_slideshow_to_fullscreen": "Slayt gösterisini tam ekran yap",
"setting_image_viewer_help": "Görüntüleyici önce küçük resmi gösterir, ardından orta boy önizlemeyi (etkinleştirilmişse) ve son olarak orijinali (etkinleştirilmişse) gösterir.",
"setting_image_viewer_original_subtitle": "Orijinal tam çözünürlüklü görüntüyü göstermek için etkinleştirin. Veri kullanımını azaltmak için devre dışı bırakın (hem ağ hem de cihaz önbelleği).",
"setting_image_viewer_original_title": "Orijinal görüntüyü göster",
"setting_image_viewer_preview_subtitle": "Orta çözünürlüklü bir görüntü göstermek için etkinleştirin. Orijinali doğrudan göstermek veya yalnızca küçük resmi kullanmak için devre dışı bırakın.",
"setting_image_viewer_preview_title": "Önizleme görüntüsü göster",
"setting_image_viewer_title": "Resimler",
"setting_languages_apply": "Uygula",
"setting_languages_subtitle": "Uygulama dilini değiştir",
"setting_languages_title": "Diller",
"setting_notifications_notify_failures_grace_period": "Arka plan yedekleme hatalarını bildir: {}",
"setting_notifications_notify_hours": "{} saat",
"setting_notifications_notify_immediately": "hemen",
"setting_notifications_notify_minutes": "{} dakika",
"setting_notifications_notify_never": "hiçbir zaman",
"setting_notifications_notify_seconds": "{} saniye",
"setting_notifications_single_progress_subtitle": "Öğe başına ayrıntılı yükleme ilerleme bilgisi",
"setting_notifications_single_progress_title": "Arkaplan yedeklemesi ayrıntılı ilerlemesini göster",
"setting_notifications_subtitle": "Bildirim tercihlerinizi düzenleyin",
"setting_notifications_total_progress_subtitle": "Toplam yükleme ilerlemesi (tamamlanan/toplam)",
"setting_notifications_total_progress_title": "Arkaplan yedeklemesi toplam ilerlemesini göster",
"setting_video_viewer_looping_title": "Döngü",
"setting_video_viewer_original_video_subtitle": "When streaming a video from the server, play the original even when a transcode is available. May lead to buffering. Videos available locally are played in original quality regardless of this setting.",
"setting_video_viewer_original_video_title": "Force original video",
"settings": "Ayarlar",
"settings_require_restart": "Bu ayarı uygulamak için lütfen Immich'i yeniden başlatın",
"settings_saved": "Ayarlar kaydedildi",
"share": "Paylaş",
"share_add_photos": "Fotoğraf ekle",
"share_assets_selected": "{} seçili",
"share_dialog_preparing": "Hazırlanıyor...",
"shared": "Paylaşılan",
"shared_album_activities_input_disable": "Yoruma kapalı",
"shared_album_activity_remove_content": "Bu etkinliği silmek istiyor musunuz?",
"shared_album_activity_remove_title": "Etkinlik Sil",
"shared_album_section_people_action_error": "Albümden ayrılırken/kaldırılırken hata oluştu",
"shared_album_section_people_action_leave": "Kullanıcıyı albümden kaldır",
"shared_album_section_people_action_remove_user": "Kullanıcıyı albümden kaldır",
"shared_album_section_people_title": "KİŞİLER",
"shared_by": "Tarafından paylaşılan",
"shared_by_user": "{user} tarafından paylaşıldı",
"shared_by_you": "Senin tarafından paylaşıldı",
"shared_from_partner": "{partner} tarafından paylaşılan fotoğraflar",
"shared_intent_upload_button_progress_text": "{} / {} Uploaded",
"shared_link_app_bar_title": "Paylaşılan Bağlantılar",
"shared_link_clipboard_copied_massage": "Panoya kopyalandı",
"shared_link_clipboard_text": "Bağlantı: {}\nParola: {}",
"shared_link_create_error": "Paylaşım bağlantısı oluşturulurken hata oluştu",
"shared_link_edit_description_hint": "Açıklama yazın",
"shared_link_edit_expire_after_option_day": "1 gün",
"shared_link_edit_expire_after_option_days": "{} gün",
"shared_link_edit_expire_after_option_hour": "1 saat",
"shared_link_edit_expire_after_option_hours": "{} saat",
"shared_link_edit_expire_after_option_minute": "1 dakika",
"shared_link_edit_expire_after_option_minutes": "{} dakika",
"shared_link_edit_expire_after_option_months": "{} ay",
"shared_link_edit_expire_after_option_year": "{} yıl",
"shared_link_edit_password_hint": "Paylaşım parolasını girin",
"shared_link_edit_submit_button": "Bağlantıyı güncelle",
"shared_link_error_server_url_fetch": "Sunucu URL'si alınamadı",
"shared_link_expires_day": "Süresi {} gün içinde doluyor",
"shared_link_expires_days": "Süresi {} gün içinde doluyor",
"shared_link_expires_hour": "Süresi {} saat içinde doluyor",
"shared_link_expires_hours": "Süresi {} saat içinde doluyor",
"shared_link_expires_minute": "Süresi {} dakika içinde doluyor",
"shared_link_expires_minutes": "{} dakika içinde süresi doluyor",
"shared_link_expires_never": "Süresiz",
"shared_link_expires_second": "Süresi {} saniye içinde doluyor",
"shared_link_expires_seconds": "{} sanyei içinde süresi doluyor",
"shared_link_individual_shared": "Bireysel paylaşımlı",
"shared_link_info_chip_metadata": "EXIF",
"shared_link_manage_links": "Paylaşılan Bağlantıları Yönet",
"shared_link_options": "Paylaşılan bağlantı seçenekleri",
"shared_links": "Paylaşılan bağlantılar",
"shared_links_description": "Fotoğraf ve videoları bir bağlantı ile paylaş",
"shared_photos_and_videos_count": "{assetCount, plural, one {# paylaşılan fotoğraf veya video.} other {# paylaşılan fotoğraf & video.}}",
"shared_with_me": "Benimle paylaşılanlar",
"shared_with_partner": "{partner} ile paylaşıldı",
"sharing": "Paylaşılıyor",
"sharing_enter_password": "Bu sayfayı görebilmek için lütfen şifreyi giriniz.",
"sharing_page_album": "Paylaşılan albümler",
"sharing_page_description": "Ağınızdaki kişilerle fotoğraf ve video paylaşmak için paylaşımlı albümler oluşturun.",
"sharing_page_empty_list": "LİSTEYİ BOŞALT",
"sharing_sidebar_description": "Yan panelde paylaşılanlara kısa yol göster",
"sharing_silver_appbar_create_shared_album": "Yeni paylaşılan albüm",
"sharing_silver_appbar_share_partner": "Partnerle paylaş",
"shift_to_permanent_delete": "Dosyayı kalıcı olarak silmek için ⇧ tuşuna basın",
"show_album_options": "Albüm ayarlarını göster",
"show_albums": "Albümleri göster",
@@ -1257,6 +1722,9 @@
"support_third_party_description": "Immich kurulumu üçüncü bir tarafça yapıldı. Yaşadığınız sorunlar bu paketle ilgili olabilir. Lütfen öncelikli olarak aşağıdaki bağlantıları kullanarak bu sağlayıcıyla iletişime geçin.",
"swap_merge_direction": "Birleştirme yönünü değiştir",
"sync": "Senkronize et",
"sync_albums": "Albümleri eşzamanla",
"sync_albums_manual_subtitle": "Yüklenmiş fotoğraf ve videoları yedekleme için seçili albümler ile eşzamanlayın",
"sync_upload_album_setting_subtitle": "Seçili albümleri Immich'te oluşturun ve içindekileri Immich'e yükleyin.",
"tag": "Etiket",
"tag_assets": "Dosyaları etiketle",
"tag_created": "Etiket oluşturuldu: {tag}",
@@ -1270,6 +1738,19 @@
"theme": "Tema",
"theme_selection": "Tema seçimi",
"theme_selection_description": "Temayı otomatik olarak tarayıcınızın sistem tercihine göre açık veya koyu ayarlayın",
"theme_setting_asset_list_storage_indicator_title": "Öğelerin küçük resimlerinde depolama göstergesini göster",
"theme_setting_asset_list_tiles_per_row_title": "Satır başına öğe sayısı ({})",
"theme_setting_colorful_interface_subtitle": "Birincil rengi arka plan yüzeylerine uygulayın.",
"theme_setting_colorful_interface_title": "Renkli arayüz",
"theme_setting_image_viewer_quality_subtitle": "Ayrıntılı görüntüleyicinin kalitesini ayarla",
"theme_setting_image_viewer_quality_title": "Fotoğraf görüntüleyici kalite ayarı",
"theme_setting_primary_color_subtitle": "Birincil eylemler ve vurgular için bir renk seçin.",
"theme_setting_primary_color_title": "Ana renk",
"theme_setting_system_primary_color_title": "Sistem rengini kullan",
"theme_setting_system_theme_switch": "Otomatik (sistem ayarına göre)",
"theme_setting_theme_subtitle": "Uygulama teması seç",
"theme_setting_three_stage_loading_subtitle": "Üç aşamalı yükleme yükleme performansını artırabilir ancak önemli ölçüde daha yüksek ağ yüküne sebep olur.",
"theme_setting_three_stage_loading_title": "Üç aşamalı yüklemeyi etkinleştir",
"they_will_be_merged_together": "Birlikte birleştirilecekler",
"third_party_resources": "Üçüncü taraf kaynaklar",
"time_based_memories": "Zaman bazlı anılar",
@@ -1289,7 +1770,15 @@
"trash_all": "Hepsini sil",
"trash_count": "Çöp kutusu {count, number}",
"trash_delete_asset": "Ögeyi Sil/Çöpe gönder",
"trash_emptied": "Çöp kutusu temizlendi",
"trash_no_results_message": "Silinen fotoğraf ve videolar burada listelenecektir.",
"trash_page_delete_all": "Tümünü Sil",
"trash_page_empty_trash_dialog_content": "Çöp kutusuna atılmış öğeleri silmek istediğinize emin misiniz? Bu öğeler Immich'ten kalıcı olarak silinecek",
"trash_page_info": "Çöp kutusuna atılan öğeler {} gün sonra kalıcı olarak silinecektir",
"trash_page_no_assets": "Çöp kutusu boş",
"trash_page_restore_all": "Tümünü geri yükle",
"trash_page_select_assets_btn": "İçerik seç",
"trash_page_title": "Çöp Kutusu ({})",
"trashed_items_will_be_permanently_deleted_after": "Silinen öğeler {days, plural, one {# gün} other {# gün}} sonra kalıcı olarak silinecek.",
"type": "Tür",
"unarchive": "Arşivden çıkar",
@@ -1318,6 +1807,8 @@
"updated_password": "Şifreyi güncelle",
"upload": "Yükle",
"upload_concurrency": "Yükleme eşzamanlılığı",
"upload_dialog_info": "Seçili öğeleri sunucuya yedeklemek istiyor musunuz?",
"upload_dialog_title": "Öğe Yükle",
"upload_errors": "{count, plural, one {# hata} other {# hatayla}} yükleme tamamlandı, yeni yüklenen dosyaları görmek için sayfayı güncelleyin.",
"upload_progress": "{remaining, number} kalan - {processed, number}/{total, number} işlendi",
"upload_skipped_duplicates": "{count, plural, one {# çift dosya} other {# çift dosya}} atlandı",
@@ -1325,8 +1816,11 @@
"upload_status_errors": "Hatalar",
"upload_status_uploaded": "Yüklendi",
"upload_success": "Yükleme başarılı, yüklenen yeni ögeleri görebilmek için sayfayı yenileyin.",
"upload_to_immich": "Upload to Immich ({})",
"uploading": "Uploading",
"url": "URL",
"usage": "Kullanım",
"use_current_connection": "mevcut bağlantıyı kullan",
"use_custom_date_range": "Bunun yerine özel tarih aralığını kullan",
"user": "Kullanıcı",
"user_id": "Kullanıcı ID",
@@ -1341,10 +1835,16 @@
"users": "Kullanıcılar",
"utilities": "Yardımcılar",
"validate": "Doğrula",
"validate_endpoint_error": "Lütfen geçerli bir URL girin",
"variables": "Değişkenler",
"version": "Versiyon",
"version_announcement_closing": "Arkadaşınız, Alex",
"version_announcement_message": "Merhaba! Immich'in yeni bir sürümü mevcut. Lütfen yapılandırmanızın güncel olduğundan emin olmak için <link>sürüm notlarını</link> okumak için biraz zaman ayırın, özellikle WatchTower veya Immich kurulumunuzu otomatik olarak güncelleyen bir mekanizma kullanıyorsanız yanlış yapılandırmaların önüne geçmek adına bu önemlidir.",
"version_announcement_overlay_release_notes": "sürüm notları",
"version_announcement_overlay_text_1": "Merhaba arkadaşım, yeni bir sürüm mevcut",
"version_announcement_overlay_text_2": "lütfen biraz zaman ayırın ve inceleyin: ",
"version_announcement_overlay_text_3": "ve özellikle WatchTower veya sunucu uygulamanızı otomatik olarak güncelleyen herhangi bir mekanizma kullanıyorsanız, herhangi bir yanlış yapılandırmayı önlemek için docker-compose ve .env kurulumunuzun güncel olduğundan emin olun.",
"version_announcement_overlay_title": "Yeni Sunucu Sürümü Mevcut 🎉",
"version_history": "Versiyon geçmişi",
"version_history_item": "{version}, {date} tarihinde kuruldu",
"video": "Video",
@@ -1363,15 +1863,20 @@
"view_next_asset": "Sonraki dosyayı görüntüle",
"view_previous_asset": "Önceki dosyayı görüntüle",
"view_stack": "Yığını görüntüle",
"viewer_remove_from_stack": "Yığından Kaldır",
"viewer_stack_use_as_main_asset": "Ana fotoğraf olarak kullan",
"viewer_unstack": "Yığını Kaldır",
"visibility_changed": "Görünürlük {count, plural, one {# kişi} other {# kişi}} için değiştirildi",
"waiting": "Bekleniyor",
"warning": "Uyarı",
"week": "Hafta",
"welcome": "Hoş geldiniz",
"welcome_to_immich": "Immich'e hoş geldiniz",
"wifi_name": "Wi-Fi Adı",
"year": "Yıl",
"years_ago": "{years, plural, one {bir yıl} other {# yıl}} önce",
"yes": "Evet",
"you_dont_have_any_shared_links": "Herhangi bir paylaşılan bağlantınız yok",
"your_wifi_name": "Wi-Fi Adınız",
"zoom_image": "Görüntüyü yakınlaştır"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,104 +0,0 @@
config_version: 1.0
project_id: ead34689-ec52-41d9-b675-09bc85a6cbd7
file_type: json
branch: main
upload:
files:
- file: mobile/assets/i18n/en-US.json
locale_code: en-US
download:
params:
export_empty_as: main
files:
- file: mobile/assets/i18n/en-US.json
locale_code: en-US
- file: mobile/assets/i18n/de-DE.json
locale_code: de-DE
- file: mobile/assets/i18n/da-DK.json
locale_code: da-DK
- file: mobile/assets/i18n/it-IT.json
locale_code: it-IT
- file: mobile/assets/i18n/es-ES.json
locale_code: es-ES
- file: mobile/assets/i18n/vi-VN.json
locale_code: vi-VN
- file: mobile/assets/i18n/fr-FR.json
locale_code: fr-FR
- file: mobile/assets/i18n/ja-JP.json
locale_code: ja-JP
- file: mobile/assets/i18n/pl-PL.json
locale_code: pl-PL
- file: mobile/assets/i18n/fi-FI.json
locale_code: fi-FI
- file: mobile/assets/i18n/pt-PT.json
locale_code: pt-PT
- file: mobile/assets/i18n/pt-BR.json
locale_code: pt-BR
- file: mobile/assets/i18n/cs-CZ.json
locale_code: cs-CZ
- file: mobile/assets/i18n/uk-UA.json
locale_code: uk-UA
- file: mobile/assets/i18n/ru-RU.json
locale_code: ru-RU
- file: mobile/assets/i18n/zh-CN.json
locale_code: zh-CN
- file: mobile/assets/i18n/sk-SK.json
locale_code: sk-SK
- file: mobile/assets/i18n/nl-NL.json
locale_code: nl-NL
- file: mobile/assets/i18n/nb-NO.json
locale_code: nb-NO
- file: mobile/assets/i18n/sv-SE.json
locale_code: sv-SE
- file: mobile/assets/i18n/mn-MN.json
locale_code: mn
- file: mobile/assets/i18n/ko-KR.json
locale_code: ko-KR
- file: mobile/assets/i18n/sr-Latn.json
locale_code: sr-Latn
- file: mobile/assets/i18n/sr-Cyrl.json
locale_code: sr-Cyrl
- file: mobile/assets/i18n/hi-IN.json
locale_code: hi-IN
- file: mobile/assets/i18n/es-PE.json
locale_code: es-PE
- file: mobile/assets/i18n/es-MX.json
locale_code: es-MX
- file: mobile/assets/i18n/sv-FI.json
locale_code: sv-FI
- file: mobile/assets/i18n/ca.json
locale_code: ca
- file: mobile/assets/i18n/hu-HU.json
locale_code: hu-HU
- file: mobile/assets/i18n/lv-LV.json
locale_code: lv-LV
- file: mobile/assets/i18n/zh-Hans.json
locale_code: zh-Hans
- file: mobile/assets/i18n/zh-TW.json
locale_code: zh-TW
- file: mobile/assets/i18n/th-TH.json
locale_code: th-TH
- file: mobile/assets/i18n/lt-LT.json
locale_code: lt-LT
- file: mobile/assets/i18n/el-GR.json
locale_code: el-GR
- file: mobile/assets/i18n/fr-CA.json
locale_code: fr-CA
- file: mobile/assets/i18n/es-US.json
locale_code: es-US
- file: mobile/assets/i18n/sl-SI.json
locale_code: sl-SI
- file: mobile/assets/i18n/ar-JO.json
locale_code: ar-JO
- file: mobile/assets/i18n/he-IL.json
locale_code: he-IL
- file: mobile/assets/i18n/ro-RO.json
locale_code: ro-RO
- file: mobile/assets/i18n/id-ID.json
locale_code: id-ID
- file: mobile/assets/i18n/gl-ES.json
locale_code: gl-ES
- file: mobile/assets/i18n/ga.json
locale_code: ga
- file: mobile/assets/i18n/tr-TR.json
locale_code: tr-TR

View File

@@ -1,6 +1,6 @@
ARG DEVICE=cpu
FROM python:3.11-bookworm@sha256:0a9d314ae6e976351bd37b702bf6b0a89bb58e6304e5df35b960059b12531419 AS builder-cpu
FROM python:3.11-bookworm@sha256:a3e280261e448b95d49423532ccd6e5329c39d171c10df1457891ff7c5e2301b AS builder-cpu
FROM builder-cpu AS builder-openvino
@@ -54,7 +54,7 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
RUN apt-get update && apt-get install -y --no-install-recommends g++
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:0b6dc79013b689f3bc0cbf12807cb1c901beaafe80f2ee10a1d76aa3842afb92 /uv /uvx /bin/
COPY --from=ghcr.io/astral-sh/uv:latest@sha256:db305ce8edc1c2df4988b9d23471465d90d599cc55571e6501421c173a33bb0b /uv /uvx /bin/
RUN --mount=type=cache,target=/root/.cache/uv \
--mount=type=bind,source=uv.lock,target=uv.lock \
--mount=type=bind,source=pyproject.toml,target=pyproject.toml \
@@ -63,11 +63,11 @@ RUN if [ "$DEVICE" = "rocm" ]; then \
uv pip install /opt/onnxruntime_rocm-*.whl; \
fi
FROM python:3.11-slim-bookworm@sha256:49d73c49616929b0a4f37c50fee0056eb4b0f15de624591e8d9bf84b4dfdd3ce AS prod-cpu
FROM python:3.11-slim-bookworm@sha256:82c07f2f6e35255b92eb16f38dbd22679d5e8fb523064138d7c6468e7bf0c15b AS prod-cpu
ENV LD_PRELOAD=/usr/lib/libmimalloc.so.2
FROM python:3.11-slim-bookworm@sha256:49d73c49616929b0a4f37c50fee0056eb4b0f15de624591e8d9bf84b4dfdd3ce AS prod-openvino
FROM python:3.11-slim-bookworm@sha256:82c07f2f6e35255b92eb16f38dbd22679d5e8fb523064138d7c6468e7bf0c15b AS prod-openvino
RUN apt-get update && \
apt-get install --no-install-recommends -yqq ocl-icd-libopencl1 wget && \

2759
machine-learning/uv.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,3 @@
{
"flutter": "3.29.2"
"flutter": "3.29.3"
}

5
mobile/.gitignore vendored
View File

@@ -56,4 +56,7 @@ default.isar.lock
libisar.so
# FVM Version
.fvm/
.fvm/
# Translation file
lib/generated/codegen_loader.g.dart

View File

@@ -4,7 +4,18 @@ The Immich mobile app is a Flutter-based solution leveraging the Isar Database f
## Setup
You must set up Flutter toolchain in your machine before you can perform any of the development.
1. Setup Flutter toolchain using FVM.
2. Run `flutter pub get` to install the dependencies.
3. Run `make translation` to generate the translation file.
4. Run `fvm flutter run` to start the app.
## Translation
To add a new translation text, enter the key-value pair in the `i18n/en.json` in the root of the immich project. Then, from the `mobile/` directory, run
```bash
make translation
```
## Immich-Flutter Directory Structure
@@ -15,6 +26,7 @@ Below are the directory inside the `lib` directory:
- `extensions`: Extensions enhancing various existing functionalities within the app, such as asset_extensions.dart, string_extensions.dart, and more.
- `module_template`: Provides a template structure for different modules within the app, including subdivisions like models, providers, services, UI, and views.
- `models`: Placeholder for storing module-specific models.
- `providers`: Section to define module-specific Riverpod providers.
- `services`: Houses services tailored to the module's functionality.

View File

@@ -35,6 +35,7 @@ linter:
analyzer:
exclude:
- openapi/**
- build/**
- lib/generated_plugin_registrant.dart
- lib/**/*.g.dart
- lib/**/*.drift.dart
@@ -92,6 +93,9 @@ custom_lint:
allowed:
# required / wanted
- lib/repositories/*_api.repository.dart
- lib/domain/models/sync_event.model.dart
- lib/{domain,infrastructure}/**/sync_stream.*
- lib/{domain,infrastructure}/**/sync_api.*
- lib/infrastructure/repositories/*_api.repository.dart
- lib/infrastructure/utils/*.converter.dart
# acceptable exceptions for the time being
@@ -144,7 +148,9 @@ dart_code_metrics:
- avoid-global-state
- avoid-inverted-boolean-checks
- avoid-late-final-reassignment
- avoid-local-functions
- avoid-local-functions:
exclude:
- test/**.dart
- avoid-negated-conditions
- avoid-nested-streams-and-futures
- avoid-referencing-subclasses

View File

@@ -35,8 +35,8 @@ platform :android do
task: 'bundle',
build_type: 'Release',
properties: {
"android.injected.version.code" => 193,
"android.injected.version.name" => "1.131.3",
"android.injected.version.code" => 194,
"android.injected.version.name" => "1.132.0",
}
)
upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab')

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