1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

Merge remote-tracking branch 'origin' into feat/inline-offline-check

This commit is contained in:
Jonathan Jogenfors 2024-12-08 22:56:11 +01:00
commit 02c5765565
233 changed files with 6587 additions and 1853 deletions

8
cli/package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "@immich/cli",
"version": "2.2.32",
"version": "2.2.34",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@immich/cli",
"version": "2.2.32",
"version": "2.2.34",
"license": "GNU Affero General Public License version 3",
"dependencies": {
"fast-glob": "^3.3.2",
@ -31,7 +31,7 @@
"byte-size": "^9.0.0",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"eslint": "9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^55.0.0",
@ -52,7 +52,7 @@
},
"../open-api/typescript-sdk": {
"name": "@immich/sdk",
"version": "1.121.0",
"version": "1.122.1",
"dev": true,
"license": "GNU Affero General Public License version 3",
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "@immich/cli",
"version": "2.2.32",
"version": "2.2.34",
"description": "Command Line Interface (CLI) for Immich",
"type": "module",
"exports": "./dist/index.js",

View file

@ -103,7 +103,7 @@ services:
command: ['./run.sh', '-disable-reporting']
ports:
- 3000:3000
image: grafana/grafana:11.3.0-ubuntu@sha256:51587e148ac0214d7938e7f3fe8512182e4eb6141892a3ffb88bba1901b49285
image: grafana/grafana:11.3.1-ubuntu@sha256:7ca40d20250157abd70a907a93617a70c9b0ad9d7e59e8e6b5c8140781350d6a
volumes:
- grafana-data:/var/lib/grafana

View file

@ -19,3 +19,9 @@ You can use [this guide](/docs/guides/smtp-gmail) to use Gmail's SMTP server.
Users can manage their email notification settings from their account settings page on the web. They can choose to turn email notifications on or off for the following events:
<img src={require('./img/user-notifications-settings.png').default} width="80%" title="User notification settings" />
## Notification templates
You can override the default notification text with custom templates in HTML format. You can use tags to show dynamic tags in your templates.
<img src={require('./img/user-notifications-templates.png').default} width="80%" title="User notification templates" />

Binary file not shown.

After

Width:  |  Height:  |  Size: 195 KiB

View file

@ -157,6 +157,10 @@ Immich supports [Reverse Geocoding](/docs/features/reverse-geocoding) using data
SMTP server setup, for user creation notifications, new albums, etc. More information can be found [here](/docs/administration/email-notification)
## Notification Templates
Override the default notifications text with notification templates. More information can be found [here](/docs/administration/email-notification)
## Server Settings
### External Domain

View file

@ -1,18 +1,20 @@
# Remote Machine Learning
To alleviate [performance issues on low-memory systems](/docs/FAQ.mdx#why-is-immich-slow-on-low-memory-systems-like-the-raspberry-pi) like the Raspberry Pi, you may also host Immich's machine-learning container on a more powerful system (e.g. your laptop or desktop computer):
- Set the URL in Machine Learning Settings on the Admin Settings page to point to the designated ML system, e.g. `http://workstation:3003`.
- Copy the following `docker-compose.yml` to your ML system.
- If using [hardware acceleration](/docs/features/ml-hardware-acceleration), the [hwaccel.ml.yml](https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml) file also needs to be added
- Start the container by running `docker compose up -d`.
To alleviate [performance issues on low-memory systems](/docs/FAQ.mdx#why-is-immich-slow-on-low-memory-systems-like-the-raspberry-pi) like the Raspberry Pi, you may also host Immich's machine learning container on a more powerful system, such as your laptop or desktop computer. The server container will send requests containing the image preview to the remote machine learning container for processing. The machine learning container does not persist this data or associate it with a particular user.
:::info
Smart Search and Face Detection will use this feature, but Facial Recognition is handled in the server.
Smart Search and Face Detection will use this feature, but Facial Recognition will not. This is because Facial Recognition uses the _outputs_ of these models that have already been saved to the database. As such, its processing is between the server container and the database.
:::
:::danger
When using remote machine learning, the thumbnails are sent to the remote machine learning container. Use this option carefully when running this on a public computer or a paid processing cloud.
Image previews are sent to the remote machine learning container. Use this option carefully when running this on a public computer or a paid processing cloud. Additionally, as an internal service, the machine learning container has no security measures whatsoever. Please be mindful of where it's deployed and who can access it.
:::
1. Ensure the remote server has Docker installed
2. Copy the following `docker-compose.yml` to the remote server
:::info
If using hardware acceleration, the [hwaccel.ml.yml](https://github.com/immich-app/immich/releases/latest/download/hwaccel.ml.yml) file also needs to be added and the `docker-compose.yml` needs to be configured as described in the [hardware acceleration documentation](/docs/features/ml-hardware-acceleration)
:::
```yaml
@ -37,8 +39,26 @@ volumes:
model-cache:
```
Please note that version mismatches between both hosts may cause instabilities and bugs, so make sure to always perform updates together.
3. Start the remote machine learning container by running `docker compose up -d`
:::caution
As an internal service, the machine learning container has no security measures whatsoever. Please be mindful of where it's deployed and who can access it.
:::info
Version mismatches between both hosts may cause bugs and instability, so remember to update this container as well when updating the local Immich instance.
:::
4. Navigate to the [Machine Learning Settings](https://my.immich.app/admin/system-settings?isOpen=machine-learning)
5. Click _Add URL_
6. Fill the new field with the URL to the remote machine learning container, e.g. `http://ip:port`
## Forcing remote processing
Adding a new URL to the settings is recommended over replacing the existing URL. This is because it will allow machine learning tasks to be processed successfully when the remote server is down by falling back to the local machine learning container. If you do not want machine learning tasks to be processed locally when the remote server is not available, you can instead replace the existing URL and only provide the remote container's URL. If doing this, you can remove the `immich-machine-learning` section of the local `docker-compose.yml` file to save resources, as this service will never be used.
Do note that this will mean that Smart Search and Face Detection jobs will fail to be processed when the remote instance is not available. This in turn means that tasks dependent on these features—Duplicate Detection and Facial Recognition—will not run for affected assets. If this occurs, you must manually click the _Missing_ button next to Smart Search and Face Detection in the [Job Status](http://my.immich.app/admin/jobs-status) page for the jobs to be retried.
## Load balancing
While several URLs can be provided in the settings, they are tried sequentially; there is no attempt to distribute load across multiple containers. It is recommended to use a dedicated load balancer for such use-cases and specify it as the only URL. Among other things, it may enable the use of different APIs on the same server by running multiple containers with different configurations. For example, one might run an OpenVINO container in addition to a CUDA container, or run a standard release container to maximize both CPU and GPU utilization.
:::tip
The machine learning container can be shared among several Immich instances regardless of the models a particular instance uses. However, using different models will lead to higher peak memory usage.
:::

View file

@ -83,7 +83,7 @@ The default configuration looks like this:
},
"machineLearning": {
"enabled": true,
"url": "http://immich-machine-learning:3003",
"url": ["http://immich-machine-learning:3003"],
"clip": {
"enabled": true,
"modelName": "ViT-B-32__openai"

View file

@ -1,4 +1,12 @@
[
{
"label": "v1.122.1",
"url": "https://v1.122.1.archive.immich.app"
},
{
"label": "v1.122.0",
"url": "https://v1.122.0.archive.immich.app"
},
{
"label": "v1.121.0",
"url": "https://v1.121.0.archive.immich.app"

16
e2e/package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "immich-e2e",
"version": "1.121.0",
"version": "1.122.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "immich-e2e",
"version": "1.121.0",
"version": "1.122.1",
"license": "GNU Affero General Public License version 3",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
@ -23,7 +23,7 @@
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^55.0.0",
@ -45,7 +45,7 @@
},
"../cli": {
"name": "@immich/cli",
"version": "2.2.32",
"version": "2.2.34",
"dev": true,
"license": "GNU Affero General Public License version 3",
"dependencies": {
@ -65,13 +65,13 @@
"@types/lodash-es": "^4.17.12",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/coverage-v8": "^2.0.5",
"byte-size": "^9.0.0",
"cli-progress": "^3.12.0",
"commander": "^12.0.0",
"eslint": "^9.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^55.0.0",
@ -92,7 +92,7 @@
},
"../open-api/typescript-sdk": {
"name": "@immich/sdk",
"version": "1.121.0",
"version": "1.122.1",
"dev": true,
"license": "GNU Affero General Public License version 3",
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "immich-e2e",
"version": "1.121.0",
"version": "1.122.1",
"description": "",
"main": "index.js",
"type": "module",

View file

@ -499,7 +499,7 @@ describe('/libraries', () => {
expect(newAssets.items).toEqual([]);
});
it('should set an asset offline its file is not in any import path', async () => {
it('should set an asset offline if its file is not in any import path', async () => {
utils.createImageFile(`${testAssetDir}/temp/offline/offline.png`);
const library = await utils.createLibrary(admin.accessToken, {

View file

@ -1 +1,57 @@
{}
{
"about": "Verfris",
"account": "Rekening",
"account_settings": "Rekeninginstellings",
"acknowledge": "Erken",
"action": "Aksie",
"actions": "Aksies",
"active": "Aktief",
"activity": "Aktiwiteite",
"activity_changed": "Aktiwiteit is {enabled, select, true {aangeskakel} other {afgeskakel}}",
"add": "Voegby",
"add_a_description": "Voeg 'n beskrywing by",
"add_a_location": "Voeg 'n ligging by",
"add_a_name": "Voeg 'n naam by",
"add_a_title": "Voeg 'n titel by",
"add_exclusion_pattern": "Voeg uitsgluitingspatrone by",
"add_import_path": "Voeg invoerpad by",
"add_location": "Voeg ligging by",
"add_more_users": "Voeg meer gebruikers by",
"add_partner": "Voeg vennoot by",
"add_path": "Voeg pad by",
"add_photos": "Voeg foto's by",
"add_to": "Voeg na...",
"add_to_album": "Voeg na album",
"add_to_shared_album": "Voeg na gedeelde album",
"added_to_archive": "By argief gevoeg",
"added_to_favorites": "By gunstelinge gevoeg",
"added_to_favorites_count": "Het {count, number} by gunstelinge gevoeg",
"admin": {
"add_exclusion_pattern_description": "Voeg uitsluitingspatrone by. Globbing met *, ** en ? word ondersteun. Om alle lêers in enige lêergids genaamd \"Raw\" te ignoreer, gebruik \"**/Raw/**\". Om alle lêers wat op \".tif\" eindig, te ignoreer, gebruik \"**/*.tif\". Om 'n absolute pad te ignoreer, gebruik \"/path/to/ignore/**\".",
"asset_offline_description": "Hierdie eksterne biblioteekbate word nie meer op skyf gevind nie en is na die asblik geskuif. As die lêer binne die biblioteek geskuif is, gaan jou tydlyn na vir die nuwe ooreenstemmende bate. Om hierdie bate te herstel, maak asseblief seker dat die lêerpad hieronder deur Immich verkry kan word en skandeer die biblioteek.",
"authentication_settings": "Verifikasie instellings",
"authentication_settings_description": "Bestuur wagwoord, OAuth en ander verifikasie instellings",
"authentication_settings_disable_all": "Is jy seker jy wil alle aanmeldmetodes deaktiveer? Aanmelding sal heeltemal gedeaktiveer word.",
"authentication_settings_reenable": "Om te heraktiveer, gebruik 'n <link>Server Command</link>.",
"background_task_job": "Agtergrondtake",
"backup_database": "Rugsteun databasis",
"backup_database_enable_description": "Aktiveer databasisrugsteun",
"backup_keep_last_amount": "Aantal vorige rugsteune om te hou",
"backup_settings": "Rugsteun instellings",
"backup_settings_description": "Bestuur databasis rugsteun instellings",
"check_all": "Kies Alles",
"cleared_jobs": "Poste gevee vir: {job}",
"config_set_by_file": "Config word tans deur 'n konfigurasielêer gestel",
"confirm_delete_library": "Is jy seker jy wil {library}-biblioteek uitvee?",
"confirm_delete_library_assets": "Is jy seker jy wil hierdie biblioteek uitvee? Dit sal {count, plural, one {# bevatte base} other {# bevatte bates}} uit Immich uitvee en kan nie ongedaan gemaak word nie. Lêers sal op skyf bly.",
"confirm_email_below": "Om te bevestig, tik \"{email}\" hieronder",
"confirm_reprocess_all_faces": "Is jy seker jy wil alle gesigte herverwerk? Dit sal ook genoemde mense skoonmaak.",
"confirm_user_password_reset": "Is jy seker jy wil {user} se wagwoord terugstel?",
"create_job": "Skep werk",
"cron_expression": "Cron uitdrukking",
"cron_expression_description": "Stel die skanderingsinterval in met die cron-formaat. Vir meer inligting verwys asseblief na bv. <link>Crontab Guru</link>",
"cron_expression_presets": "Cron uitdrukking voorafinstellings",
"disable_login": "Deaktiveer aanmelding",
"duplicate_detection_job_description": "Begin masjienleer op bates om soortgelyke beelde op te spoor. Maak staat op Smart Search"
}
}

View file

@ -1,5 +1,5 @@
{
"about": "حول",
"about": "تحديث",
"account": "الحساب",
"account_settings": "إعدادات الحساب",
"acknowledge": "أُدرك ذلك",
@ -222,6 +222,8 @@
"send_welcome_email": "إرسال بريد ترحيبي",
"server_external_domain_settings": "إسم النطاق الخارجي",
"server_external_domain_settings_description": "إسم النطاق لروابط المشاركة العامة، بما في ذلك http(s)://",
"server_public_users": "المستخدمون العامون",
"server_public_users_description": "يتم إدراج جميع المستخدمين (الاسم والبريد الإلكتروني) عند إضافة مستخدم إلى الألبومات المشتركة. عند تعطيل هذه الميزة، ستكون قائمة المستخدمين متاحة فقط لمستخدمي الإدارة.",
"server_settings": "إعدادات الخادم",
"server_settings_description": "إدارة إعدادات الخادم",
"server_welcome_message": "الرسالة الترحيبية",
@ -465,6 +467,7 @@
"confirm": "تأكيد",
"confirm_admin_password": "تأكيد كلمة مرور المسؤول",
"confirm_delete_shared_link": "هل أنت متأكد أنك تريد حذف هذا الرابط المشترك؟",
"confirm_keep_this_delete_others": "سيتم حذف جميع الأصول الأخرى في المجموعة باستثناء هذا الأصل. هل أنت متأكد من أنك تريد المتابعة؟",
"confirm_password": "تأكيد كلمة المرور",
"contain": "محتواة",
"context": "السياق",
@ -514,6 +517,7 @@
"delete_key": "حذف المفتاح",
"delete_library": "حذف المكتبة",
"delete_link": "حذف الرابط",
"delete_others": "حذف الأخرى",
"delete_shared_link": "حذف الرابط المشترك",
"delete_tag": "حذف العلامة",
"delete_tag_confirmation_prompt": "هل أنت متأكد أنك تريد حذف العلامة {tagName}؟",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "فشل إنشاء رابط مشترك",
"failed_to_edit_shared_link": "فشل تعديل الرابط المشترك",
"failed_to_get_people": "فشل في الحصول على الناس",
"failed_to_keep_this_delete_others": "فشل في الاحتفاظ بهذا الأصل وحذف الأصول الأخرى",
"failed_to_load_asset": "فشل تحميل المحتوى",
"failed_to_load_assets": "فشل تحميل المحتويات",
"failed_to_load_people": "فشل تحميل الأشخاص",
@ -787,6 +792,8 @@
"jobs": "الوظائف",
"keep": "احتفظ",
"keep_all": "احتفظ بالكل",
"keep_this_delete_others": "احتفظ بهذا، واحذف الآخرين",
"kept_this_deleted_others": "تم الاحتفاظ بهذا الأصل وحذف {count, plural, one {# asset} other {# assets}}",
"keyboard_shortcuts": "اختصارات لوحة المفاتيح",
"language": "اللغة",
"language_setting_description": "اختر لغتك المفضلة",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "سيتم دمجهم معًا",
"third_party_resources": "موارد الطرف الثالث",
"time_based_memories": "ذكريات استنادًا للوقت",
"timeline": "الخط الزمني",
"timezone": "المنطقة الزمنية",
"to_archive": "أرشفة",
"to_change_password": "تغيير كلمة المرور",
@ -1227,6 +1235,7 @@
"to_trash": "حذف",
"toggle_settings": "الإعدادات",
"toggle_theme": "تبديل المظهر الداكن",
"total": "الإجمالي",
"total_usage": "الاستخدام الإجمالي",
"trash": "المهملات",
"trash_all": "نقل الكل إلى سلة المهملات",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "إدارة عملية الشراء الخاصة بك",
"user_role_set": "قم بتعيين {user} كـ {role}",
"user_usage_detail": "تفاصيل استخدام المستخدم",
"user_usage_stats": "إحصائيات استخدام الحساب",
"user_usage_stats_description": "عرض إحصائيات استخدام الحساب",
"username": "اسم المستخدم",
"users": "المستخدمين",
"utilities": "أدوات",
@ -1283,7 +1294,7 @@
"variables": "المتغيرات",
"version": "الإصدار",
"version_announcement_closing": "صديقك، أليكس",
"version_announcement_message": "مرحباً يا صديقي، هنالك نسخة جديدة من التطبيق. خذ وقتك لزيارة <link>ملاحظات الإصدار</link> والتأكد من أن ملف <code>docker-compose.yml</code> وإعداد <code>.env</code> مُحدّثين لتجنب أي إعدادات خاطئة، خاصةً إذا كنت تستخدم WatchTower أو أي آلية تقوم بتحديث التطبيق تلقائياً.",
"version_announcement_message": "مرحبًا! يتوفر إصدار جديد من Immich. يُرجى تخصيص بعض الوقت لقراءة <link>ملاحظات الإصدار</link> للتأكد من تحديث إعداداتك لمنع أي أخطاء في التكوين، خاصة إذا كنت تستخدم WatchTower أو أي آلية تتولى تحديث مثيل Immich الخاص بك تلقائيًا.",
"version_history": "تاريخ الإصدار",
"version_history_item": "تم تثبيت {version} في {date}",
"video": "فيديو",
@ -1297,6 +1308,7 @@
"view_all_users": "عرض كافة المستخدمين",
"view_in_timeline": "عرض في الجدول الزمني",
"view_links": "عرض الروابط",
"view_name": "عرض",
"view_next_asset": "عرض المحتوى التالي",
"view_previous_asset": "عرض المحتوى السابق",
"view_stack": "عرض التكديس",

View file

@ -1,8 +1,10 @@
{
"about": "Haqqında",
"about": "Yenilə",
"account": "Hesab",
"account_settings": "Hesab parametrləri",
"acknowledge": "Təsdiq et",
"action": "Əməliyyat",
"actions": "Əməliyyatlar",
"active": "Aktiv",
"activity": "Fəaliyyət",
"add": "Əlavə et",
@ -10,9 +12,12 @@
"add_a_location": "Məkan əlavə et",
"add_a_name": "Ad əlavə et",
"add_a_title": "Başlıq əlavə et",
"add_exclusion_pattern": "İstisna nümunəsi əlavə et",
"add_import_path": "Import yolunu əlavə et",
"add_location": "Məkanı əlavə et",
"add_more_users": "Daha çox istifadəçi əlavə et",
"add_partner": "Partnyor əlavə et",
"add_path": "Yol əlavə et",
"add_photos": "Şəkilləri əlavə et",
"add_to": "... əlavə et",
"add_to_album": "Albom əlavə et",
@ -26,7 +31,11 @@
"authentication_settings_disable_all": "Bütün giriş etmə metodlarını söndürmək istədiyinizdən əminsinizmi? Giriş etmə funksiyası tamamilə söndürüləcəkdir.",
"authentication_settings_reenable": "Yenidən aktiv etmək üçün <link> Server Əmri</link> -ni istifadə edin.",
"background_task_job": "Arxa plan tapşırıqları",
"backup_database_enable_description": "Verilənlər bazasının ehtiyat nüsxələrini aktiv et",
"backup_settings": "Ehtiyat Nüsxə Parametrləri",
"backup_settings_description": "Verilənlər bazasının ehtiyat nüsxə parametrlərini idarə et",
"check_all": "Hamısını yoxla",
"config_set_by_file": "Konfiqurasiya hal-hazırda konfiqurasiya faylı ilə təyin olunub",
"confirm_delete_library": "{library} kitabxanasını silmək istədiyinizdən əminmisiniz?",
"confirm_email_below": "Təsdiqləmək üçün aşağıya {email} yazın",
"confirm_user_password_reset": "{user} adlı istifadəçinin şifrəsini sıfırlamaq istədiyinizdən əminmisiniz?",

View file

@ -1,7 +1,7 @@
{
"about": "Пра праграму",
"about": "Аднавіць",
"account": "Уліковы запіс",
"account_settings": "Налады акаўнта",
"account_settings": "Налады ўліковага запісу",
"acknowledge": "Пацвердзіць",
"action": "Дзеянне",
"actions": "Дзеянні",
@ -27,6 +27,57 @@
"added_to_favorites": "Дададзена ў абраныя",
"added_to_favorites_count": "Дададзена {count, number} да абранага",
"admin": {
"add_exclusion_pattern_description": "Дадайце шаблоны выключэнняў. Падтрымліваецца выкарыстанне сімвалаў * , ** і ?. Каб ігнараваць усе файлы ў любой дырэкторыі з назвай \"Raw\", выкарыстоўвайце \"**/Raw/**\". Каб ігнараваць усе файлы, якія заканчваюцца на \".tif\", выкарыстоўвайце \"**/.tif\". Каб ігнараваць абсолютны шлях, выкарыстоўвайце \"/path/to/ignore/**\"."
}
"add_exclusion_pattern_description": "Дадайце шаблоны выключэнняў. Падтрымліваецца выкарыстанне сімвалаў * , ** і ?. Каб ігнараваць усе файлы ў любой дырэкторыі з назвай \"Raw\", выкарыстоўвайце \"**/Raw/**\". Каб ігнараваць усе файлы, якія заканчваюцца на \".tif\", выкарыстоўвайце \"**/.tif\". Каб ігнараваць абсолютны шлях, выкарыстоўвайце \"/path/to/ignore/**\".",
"authentication_settings": "Налады праверкі сапраўднасці",
"authentication_settings_description": "Кіраванне паролямі, OAuth, і іншыя налады праверкі сапраўднасці",
"authentication_settings_disable_all": "Вы ўпэўнены, што жадаеце адключыць усе спосабы логіну? Логін будзе цалкам адключаны.",
"authentication_settings_reenable": "Каб зноў уключыць, выкарыстайце <link>Каманду сервера</link>.",
"background_task_job": "Фонавыя заданні",
"backup_database": "Рэзервовая копія базы даных",
"backup_database_enable_description": "Уключыць рэзерваванне базы даных",
"backup_settings": "Налады рэзервовага капіявання",
"check_all": "Праверыць усе",
"confirm_delete_library": "Вы ўпэўнены што жадаеце выдаліць {library} бібліятэку?",
"confirm_email_below": "Каб пацвердзіць, увядзіце \"{email}\" ніжэй",
"confirm_user_password_reset": "Вы ўпэўнены ў тым, што жадаеце скінуць пароль {user}?",
"disable_login": "Адключыць уваход",
"force_delete_user_warning": "ПАПЯРЭДЖАННЕ: Гэта дзеянне неадкладна выдаліць карыстальніка і ўсе аб'екты. Гэта дзеянне не можа быць адроблена і файлы немагчыма будзе аднавіць.",
"image_format": "Фармат",
"image_preview_title": "Налады папярэдняга прагляду",
"image_quality": "Якасць",
"image_resolution": "Раздзяляльнасць",
"image_settings": "Налады відарыса",
"image_settings_description": "Кіруйце якасцю і раздзяляльнасцю сгенерыраваных відарысаў"
},
"timeline": "Хроніка",
"total": "Усяго",
"user": "Карыстальнік",
"user_id": "ID карыстальніка",
"user_usage_stats": "Статыстыка карыстання ўліковага запісу",
"user_usage_stats_description": "Прагледзець статыстыку карыстання ўліковага запісу",
"username": "Імя карыстальніка",
"users": "Карыстальнікі",
"utilities": "Утыліты",
"validate": "Праверыць",
"variables": "Пераменныя",
"version": "Версія",
"video": "Відэа",
"videos": "Відэа",
"view": "Прагляд",
"view_album": "Праглядзець альбом",
"view_all": "Праглядзець усё",
"view_all_users": "Праглядзець усех карыстальнікаў",
"view_in_timeline": "Паглядзець на хроніцы",
"view_links": "Праглядзець спасылкі",
"view_name": "Прагледзець",
"waiting": "Чакаюць",
"warning": "Папярэджанне",
"week": "Тыдзень",
"welcome": "Вітаем",
"welcome_to_immich": "Вітаем у Immich",
"year": "Год",
"years_ago": "{years, plural, one {# год} other {# гадоў}} таму",
"yes": "Так",
"you_dont_have_any_shared_links": "У вас няма абагуленых спасылак",
"zoom_image": "Павелічэнне відарыса"
}

View file

@ -1,5 +1,5 @@
{
"about": "За Immich",
"about": "Обновяване",
"account": "Акаунт",
"account_settings": "Настройки на профила",
"acknowledge": "Потвърждавам",
@ -1059,6 +1059,8 @@
"user_purchase_settings_description": "Управлявай покупката си",
"user_role_set": "Задай {user} като {role}",
"user_usage_detail": "Подробности за използването на потребителя",
"user_usage_stats": "Статистика за използването на акаунта",
"user_usage_stats_description": "Преглед на статистиката за използването на акаунта",
"username": "Потребителско име",
"users": "Потребители",
"utilities": "Инструменти",

View file

@ -465,6 +465,7 @@
"confirm": "Confirmar",
"confirm_admin_password": "Confirmeu la contrasenya d'administrador",
"confirm_delete_shared_link": "Esteu segurs que voleu eliminar aquest enllaç compartit?",
"confirm_keep_this_delete_others": "Excepte aquest element, tots els altres de la pila se suprimiran. Esteu segur que voleu continuar?",
"confirm_password": "Confirmació de contrasenya",
"contain": "Contingut",
"context": "Context",
@ -514,6 +515,7 @@
"delete_key": "Suprimeix la clau",
"delete_library": "Suprimeix la Llibreria",
"delete_link": "Esborra l'enllaç",
"delete_others": "Suprimeix altres",
"delete_shared_link": "Odstranit sdílený odkaz",
"delete_tag": "Eliminar etiqueta",
"delete_tag_confirmation_prompt": "Estàs segur que vols eliminar l'etiqueta {tagName}?",
@ -604,6 +606,7 @@
"failed_to_create_shared_link": "No s'ha pogut crear l'enllaç compartit",
"failed_to_edit_shared_link": "No s'ha pogut editar l'enllaç compartit",
"failed_to_get_people": "No s'han pogut aconseguir persones",
"failed_to_keep_this_delete_others": "No s'ha pogut conservar aquest element i suprimir els altres",
"failed_to_load_asset": "No s'ha pogut carregar l'element",
"failed_to_load_assets": "No s'han pogut carregar els elements",
"failed_to_load_people": "No s'han pogut carregar les persones",
@ -787,6 +790,8 @@
"jobs": "Tasques",
"keep": "Mantenir",
"keep_all": "Mantenir-ho tot",
"keep_this_delete_others": "Conserveu-ho, suprimiu-ne els altres",
"kept_this_deleted_others": "S'ha conservat aquest element i s'han suprimit {count, plural, one {# asset} other {# assets}}",
"keyboard_shortcuts": "Dreceres de teclat",
"language": "Idioma",
"language_setting_description": "Seleccioneu el vostre idioma",

View file

@ -23,6 +23,7 @@
"add_to": "Přidat do...",
"add_to_album": "Přidat do alba",
"add_to_shared_album": "Přidat do sdíleného alba",
"add_url": "Přidat URL",
"added_to_archive": "Přidáno do archivu",
"added_to_favorites": "Přidáno do oblíbených",
"added_to_favorites_count": "Přidáno {count, number} do oblíbených",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Sémantické vyhledávání obrázků pomocí CLIP embeddings",
"machine_learning_smart_search_enabled": "Povolit chytré vyhledávání",
"machine_learning_smart_search_enabled_description": "Pokud je vypnuto, obrázky nebudou kódovány pro inteligentní vyhledávání.",
"machine_learning_url_description": "URL serveru pro strojové učení",
"machine_learning_url_description": "URL serveru strojového učení. Pokud je zadáno více URL adres, budou jednotlivé servery zkoušeny postupně, dokud jeden z nich neodpoví úspěšně, a to v pořadí od prvního k poslednímu.",
"manage_concurrency": "Správa souběžnosti",
"manage_log_settings": "Správa nastavení protokolu",
"map_dark_style": "Tmavý motiv",
@ -222,6 +223,8 @@
"send_welcome_email": "Odeslat uvítací e-mail",
"server_external_domain_settings": "Externí doména",
"server_external_domain_settings_description": "Doména pro veřejně sdílené odkazy, včetně http(s)://",
"server_public_users": "Veřejní uživatelé",
"server_public_users_description": "Všichni uživatelé (jméno a e-mail) jsou uvedeni při přidávání uživatele do sdílených alb. Pokud je tato funkce vypnuta, bude seznam uživatelů dostupný pouze uživatelům z řad správců.",
"server_settings": "Server",
"server_settings_description": "Správa nastavení serveru",
"server_welcome_message": "Uvítací zpráva",
@ -247,6 +250,16 @@
"storage_template_user_label": "<code>{label}</code> je štítek úložiště uživatele",
"system_settings": "Systémová nastavení",
"tag_cleanup_job": "Promazání značek",
"template_email_available_tags": "V šabloně můžete použít následující proměnné: {tags}",
"template_email_if_empty": "Pokud je šablona prázdná, použije se výchozí e-mail.",
"template_email_invite_album": "Šablona pozvánky do alba",
"template_email_preview": "Náhled",
"template_email_settings": "Šablony e-mailů",
"template_email_settings_description": "Správa vlastních šablon e-mailových oznámení",
"template_email_update_album": "Aktualizace šablony alba",
"template_email_welcome": "Šablona uvítacího e-mailu",
"template_settings": "Šablony oznámení",
"template_settings_description": "Správa vlastních šablon oznámení.",
"theme_custom_css_settings": "Vlastní CSS",
"theme_custom_css_settings_description": "Kaskádové styly umožňují přizpůsobit design aplikace Immich.",
"theme_settings": "Motivy",
@ -721,6 +734,7 @@
"external": "Externí",
"external_libraries": "Externí knihovny",
"face_unassigned": "Nepřiřazena",
"failed_to_load_assets": "Nepodařilo se načíst položky",
"favorite": "Oblíbit",
"favorite_or_unfavorite_photo": "Oblíbit nebo zrušit oblíbení fotky",
"favorites": "Oblíbené",
@ -1020,6 +1034,7 @@
"reassigned_assets_to_new_person": "{count, plural, one {Přeřazena # položka} few {Přeřazeny # položky} other {Přeřazeno # položek}} na novou osobu",
"reassing_hint": "Přiřazení vybraných položek existující osobě",
"recent": "Nedávné",
"recent-albums": "Nedávná alba",
"recent_searches": "Nedávná vyhledávání",
"refresh": "Obnovit",
"refresh_encoded_videos": "Obnovit kódovaná videa",
@ -1041,6 +1056,7 @@
"remove_from_album": "Odstranit z alba",
"remove_from_favorites": "Odstranit z oblíbených",
"remove_from_shared_link": "Odstranit ze sdíleného odkazu",
"remove_url": "Odstranit URL",
"remove_user": "Odebrat uživatele",
"removed_api_key": "Odstraněn API klíč: {name}",
"removed_from_archive": "Odstraněno z archivu",
@ -1223,6 +1239,7 @@
"they_will_be_merged_together": "Budou sloučeny dohromady",
"third_party_resources": "Zdroje třetích stran",
"time_based_memories": "Časové vzpomínky",
"timeline": "Časová osa",
"timezone": "Časové pásmo",
"to_archive": "Archivovat",
"to_change_password": "Změnit heslo",
@ -1232,6 +1249,7 @@
"to_trash": "Vyhodit",
"toggle_settings": "Přepnout nastavení",
"toggle_theme": "Přepnout tmavý motiv",
"total": "Celkem",
"total_usage": "Celkové využití",
"trash": "Koš",
"trash_all": "Vyhodit vše",
@ -1281,6 +1299,8 @@
"user_purchase_settings_description": "Správa vašeho nákupu",
"user_role_set": "Uživatel {user} nastaven jako {role}",
"user_usage_detail": "Podrobnosti využití uživatelů",
"user_usage_stats": "Statistiky používání účtu",
"user_usage_stats_description": "Zobrazit statistiky používání účtu",
"username": "Uživateleské jméno",
"users": "Uživatelé",
"utilities": "Nástroje",
@ -1302,6 +1322,7 @@
"view_all_users": "Zobrazit všechny uživatele",
"view_in_timeline": "Zobrazit na časové ose",
"view_links": "Zobrazit odkazy",
"view_name": "Zobrazit",
"view_next_asset": "Zobrazit další položku",
"view_previous_asset": "Zobrazit předchozí položku",
"view_stack": "Zobrazit seskupení",

View file

@ -23,6 +23,7 @@
"add_to": "Мӗн те пулин хуш...",
"add_to_album": "Альбома хуш",
"add_to_shared_album": "Пӗрлехи альбома хуш",
"add_url": "URL хушӑр",
"added_to_archive": "Архива хушнӑ",
"added_to_favorites": "Суйласа илнине хушнӑ",
"added_to_favorites_count": "Суйласа илнине {count, number} хушнӑ",
@ -45,5 +46,7 @@
"image_preview_title": "Малтанлӑха пӑхмалли ӗнерлевсем",
"image_quality": "Пахалӑх",
"image_resolution": "Виҫе"
}
},
"user_usage_stats": "Шута ҫырни усӑ курмалли статистика",
"user_usage_stats_description": "Шута ҫырни усӑ курмалли статистикӑна пӑхасси"
}

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Begrüssungsmail senden",
"server_external_domain_settings": "Externe Domain",
"server_external_domain_settings_description": "Domäne für öffentlich freigegebene Links, einschließlich http(s)://",
"server_public_users": "Öffentliche Benutzer",
"server_public_users_description": "Beim hinzufügen eines benutzers zu freigegebenen alben werden alle benutzer (name und e-mail) aufgelistet. Wenn diese option deaktiviert ist, steht die benutzerliste nur administratorbenutzern zur verfügung.",
"server_settings": "Servereinstellungen",
"server_settings_description": "Servereinstellungen verwalten",
"server_welcome_message": "Willkommensnachricht",
@ -406,7 +408,7 @@
"assets_added_to_name_count": "{count, plural, one {# Element} other {# Elemente}} zu {hasName, select, true {<b>{name}</b>} other {neuem Album}} hinzugefügt",
"assets_count": "{count, plural, one {# Datei} other {# Dateien}}",
"assets_moved_to_trash_count": "{count, plural, one {# Datei} other {# Dateien}} in den Papierkorb verschoben",
"assets_permanently_deleted_count": "{count, plural, one {# Datei} other {# Dateien}} dauerhaft gelöscht",
"assets_permanently_deleted_count": "{count, plural, one {# Datei} other {# Dateien}} endgültig gelöscht",
"assets_removed_count": "{count, plural, one {# Datei} other {# Dateien}} entfernt",
"assets_restore_confirmation": "Bist du sicher, dass du alle Dateien aus dem Papierkorb wiederherstellen willst? Diese Aktion kann nicht rückgängig gemacht werden! Beachte, dass Offline-Dateien auf diese Weise nicht wiederhergestellt werden können.",
"assets_restored_count": "{count, plural, one {# Datei} other {# Dateien}} wiederhergestellt",
@ -422,7 +424,7 @@
"bugs_and_feature_requests": "Fehler & Verbesserungsvorschläge",
"build": "Build",
"build_image": "Build Abbild",
"bulk_delete_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} löschen möchtest? Dabei wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate dauerhaft gelöscht. Diese Aktion kann nicht rückgängig gemacht werden!",
"bulk_delete_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} löschen möchtest? Dabei wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate endgültig gelöscht. Diese Aktion kann nicht rückgängig gemacht werden!",
"bulk_keep_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien}} behalten möchtest? Dies wird alle Duplikat-Gruppen auflösen ohne etwas zu löschen.",
"bulk_trash_duplicates_confirmation": "Bist du sicher, dass du {count, plural, one {# duplizierte Datei} other {# duplizierte Dateien gemeinsam}} in den Papierkorb verschieben möchtest? Dies wird die größte Datei jeder Gruppe behalten und alle anderen Duplikate in den Papierkorb verschieben.",
"buy": "Immich erwerben",
@ -465,6 +467,7 @@
"confirm": "Bestätigen",
"confirm_admin_password": "Administrator Passwort bestätigen",
"confirm_delete_shared_link": "Bist du sicher, dass du diesen geteilten Link löschen willst?",
"confirm_keep_this_delete_others": "Alle anderen Dateien im Stapel bis auf diese werden gelöscht. Bist du sicher, dass du fortfahren möchten?",
"confirm_password": "Passwort bestätigen",
"contain": "Vollständig",
"context": "Kontext",
@ -510,10 +513,11 @@
"delete": "Löschen",
"delete_album": "Album löschen",
"delete_api_key_prompt": "Bist du sicher, dass du diesen API-Schlüssel löschen willst?",
"delete_duplicates_confirmation": "Bist du sicher, dass du diese Duplikate dauerhaft löschen willst?",
"delete_duplicates_confirmation": "Bist du sicher, dass du diese Duplikate endgültig löschen willst?",
"delete_key": "Schlüssel löschen",
"delete_library": "Bibliothek löschen",
"delete_link": "Link löschen",
"delete_others": "Andere löschen",
"delete_shared_link": "geteilten Link löschen",
"delete_tag": "Tag löschen",
"delete_tag_confirmation_prompt": "Bist du sicher, dass der Tag {tagName} gelöscht werden soll?",
@ -572,7 +576,7 @@
"editor_crop_tool_h2_rotation": "Drehung",
"email": "E-Mail",
"empty_trash": "Papierkorb leeren",
"empty_trash_confirmation": "Bist du sicher, dass du den Papierkorb leeren willst?\nDies entfernt alle Dateien im Papierkorb permanent aus Immich und kann nicht rückgängig gemacht werden!",
"empty_trash_confirmation": "Bist du sicher, dass du den Papierkorb leeren willst?\nDies entfernt alle Dateien im Papierkorb endgültig aus Immich und kann nicht rückgängig gemacht werden!",
"enable": "Aktivieren",
"enabled": "Aktiviert",
"end_date": "Enddatum",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Geteilter Link konnte nicht erstellt werden",
"failed_to_edit_shared_link": "Geteilter Link konnte nicht bearbeitet werden",
"failed_to_get_people": "Personen konnten nicht abgerufen werden",
"failed_to_keep_this_delete_others": "Fehler beim Löschen der anderen Dateien",
"failed_to_load_asset": "Fehler beim Laden der Datei",
"failed_to_load_assets": "Fehler beim Laden der Dateien",
"failed_to_load_people": "Fehler beim Laden von Personen",
@ -787,6 +792,8 @@
"jobs": "Aufgaben",
"keep": "Behalten",
"keep_all": "Alle behalten",
"keep_this_delete_others": "Dieses behalten, andere löschen",
"kept_this_deleted_others": "Diese Datei behalten und {count, plural, one {# Datei} other {# Dateien}} gelöscht",
"keyboard_shortcuts": "Tastenkürzel",
"language": "Sprache",
"language_setting_description": "Wähle deine bevorzugte Sprache",
@ -940,12 +947,12 @@
"people_feature_description": "Fotos und Videos nach Personen gruppiert durchsuchen",
"people_sidebar_description": "Eine Verknüpfung zu Personen in der Seitenleiste anzeigen",
"permanent_deletion_warning": "Warnung vor endgültiger Löschung",
"permanent_deletion_warning_setting_description": "Anzeige einer Warnung beim permanenten Löschen von Objekten",
"permanently_delete": "Dauerhaft löschen",
"permanently_delete_assets_count": "{count, plural, one {Datei} other {Dateien}} dauerhaft gelöscht",
"permanently_delete_assets_prompt": "Bist du sicher, dass {count, plural, one {diese Datei} other {diese <b>#</b> Dateien}} dauerhaft gelöscht werden soll? Dadurch {count, plural, one {wird} other {werden}} diese auch aus deinen Alben entfernt.",
"permanently_deleted_asset": "Dauerhaft gelöschtes Objekt",
"permanently_deleted_assets_count": "{count, plural, one {# Datei} other {# Dateien}} dauerhaft gelöscht",
"permanent_deletion_warning_setting_description": "Anzeige einer Warnung beim endgültigen Löschen von Objekten",
"permanently_delete": "Endgültig löschen",
"permanently_delete_assets_count": "{count, plural, one {Datei} other {Dateien}} endgültig löschen",
"permanently_delete_assets_prompt": "Bist du sicher, dass {count, plural, one {diese Datei} other {diese <b>#</b> Dateien}} endgültig gelöscht werden soll? Dadurch {count, plural, one {wird} other {werden}} diese auch aus deinen Alben entfernt.",
"permanently_deleted_asset": "Endgültig gelöschtes Objekt",
"permanently_deleted_assets_count": "{count, plural, one {# Datei} other {# Dateien}} endgültig gelöscht",
"person": "Person",
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
"photo_shared_all_users": "Es sieht so aus, als hättest du deine Fotos mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Sie werden zusammengeführt",
"third_party_resources": "Drittanbieter-Quellen",
"time_based_memories": "Zeitbasierte Erinnerungen",
"timeline": "Zeitleiste",
"timezone": "Zeitzone",
"to_archive": "Archivieren",
"to_change_password": "Passwort ändern",
@ -1227,6 +1235,7 @@
"to_trash": "In den Papierkorb verschieben",
"toggle_settings": "Einstellungen umschalten",
"toggle_theme": "Dunkles Theme umschalten",
"total": "Gesamt",
"total_usage": "Gesamtnutzung",
"trash": "Papierkorb",
"trash_all": "Alle löschen",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Kauf verwalten",
"user_role_set": "{user} als {role} festlegen",
"user_usage_detail": "Nutzungsdetails der Nutzer",
"user_usage_stats": "Statistiken über die Kontonutzung",
"user_usage_stats_description": "Statistiken über die Kontonutzung anzeigen",
"username": "Nutzername",
"users": "Benutzer",
"utilities": "Hilfsmittel",
@ -1297,6 +1308,7 @@
"view_all_users": "Alle Nutzer anzeigen",
"view_in_timeline": "In Zeitleiste anzeigen",
"view_links": "Links anzeigen",
"view_name": "Ansicht",
"view_next_asset": "Nächste Datei anzeigen",
"view_previous_asset": "Vorherige Datei anzeigen",
"view_stack": "Stapel anzeigen",

View file

@ -5,7 +5,7 @@
"acknowledge": "Έλαβα γνώση",
"action": "Ενέργεια",
"actions": "Ενέργειες",
"active": "Ενεργές",
"active": "Ενεργά",
"activity": "Δραστηριότητα",
"activity_changed": "Η δραστηριότητα είναι {enabled, select, true {ενεργοποιημένη} other {απενεργοποιημένη}}",
"add": "Προσθήκη",
@ -23,6 +23,7 @@
"add_to": "Προσθήκη σε...",
"add_to_album": "Προσθήκη σε άλμπουμ",
"add_to_shared_album": "Προσθήκη σε κοινόχρηστο άλμπουμ",
"add_url": "Προσθήκη Συνδέσμου",
"added_to_archive": "Προστέθηκε στο αρχείο",
"added_to_favorites": "Προστέθηκε στα αγαπημένα",
"added_to_favorites_count": "Προστέθηκαν {count, number} στα αγαπημένα",
@ -50,7 +51,7 @@
"create_job": "Δημιουργία εργασίας",
"cron_expression": "Σύνταξη Cron",
"cron_expression_description": "Ορίστε το διάστημα σάρωσης χρησιμοποιώντας τη μορφή cron. Για περισσότερες πληροφορίες, ανατρέξτε π.χ. στο <link>Crontab Guru</link>",
"cron_expression_presets": "Προεπιλεγμένες εκφράσεις Cron",
"cron_expression_presets": "Προκαθορισμένες εκφράσεις cron",
"disable_login": "Απενεργοποίηση σύνδεσης",
"duplicate_detection_job_description": "Εκτελέστε μηχανική μάθηση σε στοιχεία για να εντοπίσετε παρόμοιες εικόνες. Βασίζεται στην Έξυπνη Αναζήτηση",
"exclusion_pattern_description": "Τα μοτίβα αποκλεισμού σας επιτρέπουν να αγνοείται αρχεία και φακέλους κατά τη σάρωση της βιβλιοθήκης σας. Αυτό είναι χρήσιμο εάν εχετε φακέλους που περιέχουν αρχεία που δεν θέλετε να εισάγετε, όπως αρχεία RAW.",
@ -67,7 +68,7 @@
"image_prefer_embedded_preview": "Προτίμηση ενσωματωμένης προεπισκόπησης",
"image_prefer_embedded_preview_setting_description": "Χρήση ενσωματωμένων προεπισκοπίσεων σε RAW εικόνες ως είσοδο για την επεξεργασία εικόνας εφόσον είναι διαθέσιμες. Αυτό μπορεί να δημιουργήσει πιο ακριβή χρώματα για κάποιες εικόνες, αλλά η ποιότητα των προεπισκοπίσεων εξαρτάται από την κάμερα και ενδέχεται να υπάρχουν περισσότερες αλλοιώσεις στην εικόνα λόγω συμπίεσης.",
"image_prefer_wide_gamut": "Προτίμηση ευρέος φάσματος",
"image_prefer_wide_gamut_setting_description": "Χρησιμοποιήστε Display P3 για τις μικρογραφίες. Αυτό διατηρεί καλύτερα την ζωντάνια των χρωμάτων σε εικόνες μεγάλου χρωματικού εύρους, αλλά ενδέχεται να εμφανίζονται αλλιώς σε παλαιότερες συσκευές με παλαιότερες εκδόσεις περιηγητών. Οι εικόνες sRGB μένουν ως έχουν για να αποφευχθούν χρωματικές αλλαγές.",
"image_prefer_wide_gamut_setting_description": "Χρήση Display P3 για τις μικρογραφίες. Αυτό διατηρεί καλύτερα την ζωντάνια των χρωμάτων σε εικόνες μεγάλου χρωματικού εύρους, αλλά ενδέχεται να εμφανίζονται αλλιώς σε παλαιότερες συσκευές με παλαιότερες εκδόσεις περιηγητών. Οι εικόνες sRGB μένουν ως έχουν για να αποφευχθούν χρωματικές αλλαγές.",
"image_preview_description": "Μεσαίου μεγέθους εικόνες, χωρίς μεταδεδομένα, οι οποίες χρησιμοποιούνται στην προβολή ενός αντικειμένου και για μηχανική μάθηση",
"image_preview_quality_description": "Ποιότητα προεπισκόπησης από 1 έως 100. Όσο μεγαλύτερη τιμή τόσο καλύτερη η ποιότητα, αλλά παράγονται μεγαλύτερα αρχεία που ενδέχεται να μειώσουν την ταχύτητα απόκρισης της εφαρμογής. Οι χαμηλές τιμές μπορεί να επηρεάσουν τη ποιότητα της μηχανικής μάθησης.",
"image_preview_title": "Ρυθμίσεις Προεπισκόπισης",
@ -82,9 +83,9 @@
"job_concurrency": "Ταυτόχρονη εκτέλεση {job}",
"job_created": "Εργασία δημιουργήθηκε",
"job_not_concurrency_safe": "Αυτή η εργασία δεν είναι ασφαλής για ταυτόχρονη εκτέλεση.",
"job_settings": "Ρυθμίσεις Εργασιών",
"job_settings_description": "Διαχείριση ταυτόχρονων εργασιών",
"job_status": "Κατάσταση Εργασιών",
"job_settings": "Ρυθμίσεις Εργασίας",
"job_settings_description": "Διαχείριση ταυτόχρονης εκτέλεσης εργασίας",
"job_status": "Κατάσταση Εργασίας",
"jobs_delayed": "{jobCount, plural, one {# καθυστέρησε} other {# καθυστέρησαν}}",
"jobs_failed": "{jobCount, plural, one {# απέτυχε} other {# απέτυχαν}}",
"library_created": "Δημιουργήθηκε η βιβλιοθήκη: {library}",
@ -95,23 +96,23 @@
"library_scanning_enable_description": "Ενεργοποίηση περιοδικής σάρωσης βιβλιοθήκης",
"library_settings": "Εξωτερική Βιβλιοθήκη",
"library_settings_description": "Διαχείριση ρυθμίσεων εξωτερικής βιβλιοθήκης",
"library_tasks_description": "Εκτέλεση εργασιών βιβλιοθήκης",
"library_tasks_description": "Εκτελούν εργασίες της βιβλιοθήκης",
"library_watching_enable_description": "Παρακολούθηση εξωτερικών βιβλιοθηκών για τροποποιήσεις αρχείων",
"library_watching_settings": "Παρακολούθηση βιβλιοθήκης (ΠΕΙΡΑΜΑΤΙΚΟ)",
"library_watching_settings_description": "Αυτόματη παρακολούθηση για τροποποιημένα αρχεία",
"logging_enable_description": "Ενεργοποίηση καταγραφής",
"logging_level_description": "Το επίπεδο καταγραφής που θα εφαρμοστεί, όταν αυτή είναι ενεργοποιημένη.",
"logging_settings": "Καταγραφή",
"logging_enable_description": "Ενεργοποίηση καταγραφής συμβάντων",
"logging_level_description": "Το επίπεδο καταγραφής συμβάντων που θα εφαρμοστεί, όταν αυτή είναι ενεργοποιημένη.",
"logging_settings": "Καταγραφή Συμβάντων",
"machine_learning_clip_model": "Μοντέλο CLIP",
"machine_learning_clip_model_description": "Το όνομα ενός μοντέλου CLIP που καταγράφεται <link>εδώ</link>. Σημειώστε ότι πρέπει να εκτελέσετε ξανά τη εργασία 'Έξυπνη Αναζήτηση' για όλες τις εικόνες μετά την αλλαγή του μοντέλου.",
"machine_learning_clip_model_description": "Το όνομα ενός μοντέλου CLIP που αναφέρεται <link>εδώ</link>. Σημειώστε ότι πρέπει να επανεκτελέσετε την εργασία 'Έξυπνη Αναζήτηση' για όλες τις εικόνες μετά την αλλαγή μοντέλου.",
"machine_learning_duplicate_detection": "Εντοπισμός Διπλότυπων",
"machine_learning_duplicate_detection_enabled": "Ενεργοποίηση εντοπισμού διπλότυπων",
"machine_learning_duplicate_detection_enabled_description": "Εάν απενεργοποιηθεί, απολύτως παρόμοια στοιχεία θα συνεχίσουν να εκκαθαρίζονται από διπλότυπα.",
"machine_learning_duplicate_detection_setting_description": "Χρησιμοποιήστε τα ενσωματωμένα χαρακτηριστικά του CLIP για να βρείτε πιθανά διπλότυπα",
"machine_learning_enabled": "Ενεργοποίηση μηχανικής εκμάθησης",
"machine_learning_enabled_description": "Εάν απενεργοποιηθεί, όλες οι λειτουργίες μηχανικής εκμάθησης θα απενεργοποιηθούν, ανεξάρτητα από τις παρακάτω ρυθμίσεις.",
"machine_learning_facial_recognition": "Αναγνώριση προσώπου",
"machine_learning_facial_recognition_description": "Εντοπισμός, αναγνώριση και ομαδοποίηση προσώπων σε εικόνες",
"machine_learning_duplicate_detection_setting_description": "Χρησιμοποιήστε τις ενσωματώσεις CLIP για να βρείτε πιθανά διπλότυπα",
"machine_learning_enabled": "Ενεργοποίηση μηχανικής μάθησης",
"machine_learning_enabled_description": "Εάν απενεργοποιηθεί, όλες οι λειτουργίες μηχανικής μάθησης θα απενεργοποιηθούν, ανεξάρτητα από τις παρακάτω ρυθμίσεις.",
"machine_learning_facial_recognition": "Αναγνώριση Προσώπου",
"machine_learning_facial_recognition_description": "Εντοπισμός, αναγνώριση και ομαδοποίηση προσώπων που υπάρχουν σε εικόνες",
"machine_learning_facial_recognition_model": "Μοντέλο αναγνώρισης προσώπου",
"machine_learning_facial_recognition_model_description": "Τα μοντέλα παρατίθενται με φθίνουσα σειρά μεγέθους. Τα μεγαλύτερα μοντέλα είναι πιο αργά και χρησιμοποιούν περισσότερη μνήμη, αλλά παράγουν καλύτερα αποτελέσματα. Σημειώστε ότι πρέπει να εκτελέσετε ξανά την εργασία Ανίχνευση προσώπου για όλες τις εικόνες κατά την αλλαγή ενός μοντέλου.",
"machine_learning_facial_recognition_setting": "Ενεργοποίηση αναγνώρισης προσώπου",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Αναζητήστε εικόνες σημασιολογικά χρησιμοποιώντας ενσωματώσεις CLIP",
"machine_learning_smart_search_enabled": "Ενεργοποίηση έξυπνης αναζήτησης",
"machine_learning_smart_search_enabled_description": "Αν απενεργοποιηθεί, οι εικόνες δεν θα κωδικοποιούνται για έξυπνη αναζήτηση.",
"machine_learning_url_description": "URL του διακομιστή μηχανικής εκμάθησης",
"machine_learning_url_description": "Η διεύθυνση URL του διακομιστή μηχανικής εκμάθησης. Αν παρέχονται περισσότερες από μία διευθύνσεις URL, τότε, κάθε διακομιστής θα προσπαθήσει να συνδεθεί διαδοχικά, από την πρώτη μέχρι την τελευταία, έως ότου απαντήσει επιτυχώς.",
"manage_concurrency": "Διαχείριση ταυτόχρονη εκτέλεσης",
"manage_log_settings": "Διαχείριση ρυθμίσεων αρχείου καταγραφής",
"map_dark_style": "Σκούρο Θέμα",
@ -222,6 +223,8 @@
"send_welcome_email": "Αποστολή email καλωσορίσματος",
"server_external_domain_settings": "Εξωτερική διεύθυνση τομέα",
"server_external_domain_settings_description": "Διεύθυνση τομέα για δημόσιους κοινούς συνδέσμους, περιλαμβανομένου του http(s)://",
"server_public_users": "Δημόσιοι Χρήστες",
"server_public_users_description": "Όλοι οι χρήστες (όνομα και email) εμφανίζονται κατά την προσθήκη ενός χρήστη σε κοινόχρηστα άλμπουμ. Όταν αυτή η επιλογή είναι απενεργοποιημένη, η λίστα χρηστών θα είναι διαθέσιμη μόνο στους διαχειριστές.",
"server_settings": "Ρυθμίσεις Διακομιστή",
"server_settings_description": "Διαχείριση ρυθμίσεων διακομιστή",
"server_welcome_message": "Μήνυμα καλωσορίσματος",
@ -247,6 +250,16 @@
"storage_template_user_label": "<code>{label}</code> είναι η Ετικέτα Αποθήκευσης του χρήστη",
"system_settings": "Ρυθμίσεις Συστήματος",
"tag_cleanup_job": "Καθαρισμός ετικετών",
"template_email_available_tags": "Μπορείτε να χρησιμοποιήσετε τις εξής μεταβλητές στο πρότυπό σας: {tags}",
"template_email_if_empty": "Αν το πρότυπο είναι κενό, θα χρησιμοποιηθεί το προεπιλεγμένο email.",
"template_email_invite_album": "Πρότυπο άλμπουμ πρόσκλησης",
"template_email_preview": "Προεπισκόπηση",
"template_email_settings": "Πρότυπα Email",
"template_email_settings_description": "Διαχείριση προσαρμοσμένων προτύπων ειδοποιήσεων email",
"template_email_update_album": "Ενημέρωση πρότυπου Άλμπουμ",
"template_email_welcome": "Πρότυπο email καλωσορίσματος",
"template_settings": "Πρότυπα ειδοποιήσεων",
"template_settings_description": "Διαχείριση προσαρμοσμένων προτύπων για ειδοποιήσεις.",
"theme_custom_css_settings": "Προσαρμοσμένο CSS",
"theme_custom_css_settings_description": "Τα Cascading Style Sheets(CSS) επιτρέπει την προσαρμογή του σχεδιασμού του Immich.",
"theme_settings": "Ρυθμίσεις Θέματος",
@ -527,7 +540,7 @@
"direction": "Κατεύθυνση",
"disabled": "Απενεργοποιημένο",
"disallow_edits": "Απαγόρευση επεξεργασιών",
"discord": "Διαφωνία",
"discord": "Discord",
"discover": "Ανίχνευση",
"dismiss_all_errors": "Παράβλεψη όλων των σφαλμάτων",
"dismiss_error": "Παράβλεψη σφάλματος",
@ -721,6 +734,7 @@
"external": "Εξωτερικός",
"external_libraries": "Εξωτερικές βιβλιοθήκες",
"face_unassigned": "Μη ανατεθειμένο",
"failed_to_load_assets": "Αποτυχία φόρτωσης στοιχείων",
"favorite": "Αγαπημένο",
"favorite_or_unfavorite_photo": "Ορίστε μία φωτογραφία ως αγαπημένη ή αφαιρέστε την από τα αγαπημένα",
"favorites": "Αγαπημένα",
@ -1020,6 +1034,7 @@
"reassigned_assets_to_new_person": "Η ανάθεση {count, plural, one {# αρχείου} other {# αρχείων}} σε νέο άτομο",
"reassing_hint": "Ανάθεση των επιλεγμένων στοιχείων σε υπάρχον άτομο",
"recent": "Πρόσφατα",
"recent-albums": "Πρόσφατα άλμπουμ",
"recent_searches": "Πρόσφατες αναζητήσεις",
"refresh": "Ανανέωση",
"refresh_encoded_videos": "Ανανέωση κωδικοποιημένων βίντεο",
@ -1041,6 +1056,7 @@
"remove_from_album": "Αφαίρεση από το άλμπουμ",
"remove_from_favorites": "Αφαίρεση από τα αγαπημένα",
"remove_from_shared_link": "Αφαίρεση από τον κοινόχρηστο σύνδεσμο",
"remove_url": "Αφαίρεση Συνδέσμου",
"remove_user": "Αφαίρεση χρήστη",
"removed_api_key": "Αφαιρέθηκε το API Key: {name}",
"removed_from_archive": "Αφαιρέθηκε/καν από το Αρχείο",
@ -1223,6 +1239,7 @@
"they_will_be_merged_together": "Θα συγχωνευθούν μαζί",
"third_party_resources": "Πόροι τρίτων",
"time_based_memories": "Μνήμες βασισμένες στο χρόνο",
"timeline": "Χρονολόγιο",
"timezone": "Ζώνη ώρας",
"to_archive": "Αρχειοθέτηση",
"to_change_password": "Αλλαγή κωδικού πρόσβασης",
@ -1232,6 +1249,7 @@
"to_trash": "Κάδος απορριμμάτων",
"toggle_settings": "Εναλλαγή ρυθμίσεων",
"toggle_theme": "Εναλλαγή θέματος",
"total": "Σύνολο",
"total_usage": "Συνολική χρήση",
"trash": "Κάδος απορριμμάτων",
"trash_all": "Διαγραφή Όλων",
@ -1281,6 +1299,8 @@
"user_purchase_settings_description": "Διαχείριση Αγοράς",
"user_role_set": "Ορισμός {user} ως {role}",
"user_usage_detail": "Λεπτομέρειες χρήσης του χρήστη",
"user_usage_stats": "Στατιστικά χρήσης λογαριασμού",
"user_usage_stats_description": "Προβολή στατιστικών χρήσης λογαριασμού",
"username": "Όνομα Χρήστη",
"users": "Χρήστες",
"utilities": "Βοηθητικά προγράμματα",
@ -1302,6 +1322,7 @@
"view_all_users": "Προβολή όλων των χρηστών",
"view_in_timeline": "Προβολή στο χρονοδιάγραμμα",
"view_links": "Προβολή συνδέσμων",
"view_name": "Προβολή",
"view_next_asset": "Προβολή επόμενου στοιχείου",
"view_previous_asset": "Προβολή προηγούμενου στοιχείου",
"view_stack": "Προβολή της στοίβας",

View file

@ -25,6 +25,7 @@
"add_to": "Add to...",
"add_to_album": "Add to album",
"add_to_shared_album": "Add to shared album",
"add_url": "Add URL",
"added_to_archive": "Added to archive",
"added_to_favorites": "Added to favorites",
"added_to_favorites_count": "Added {count, number} to favorites",
@ -132,7 +133,7 @@
"machine_learning_smart_search_description": "Search for images semantically using CLIP embeddings",
"machine_learning_smart_search_enabled": "Enable smart search",
"machine_learning_smart_search_enabled_description": "If disabled, images will not be encoded for smart search.",
"machine_learning_url_description": "URL of the machine learning server",
"machine_learning_url_description": "The URL of the machine learning server. If more than one URL is provided, each server will be attempted one-at-a-time until one responds successfully, in order from first to last.",
"manage_concurrency": "Manage Concurrency",
"manage_log_settings": "Manage log settings",
"map_dark_style": "Dark style",
@ -251,6 +252,16 @@
"storage_template_user_label": "<code>{label}</code> is the user's Storage Label",
"system_settings": "System Settings",
"tag_cleanup_job": "Tag cleanup",
"template_email_preview": "Preview",
"template_email_settings": "Email Templates",
"template_email_settings_description": "Manage custom email notification templates",
"template_email_welcome": "Welcome email template",
"template_email_invite_album": "Invite Album Template",
"template_email_update_album": "Update Album Template",
"template_settings": "Notification Templates",
"template_settings_description": "Manage custom templates for notifications.",
"template_email_if_empty": "If the template is empty, the default email will be used.",
"template_email_available_tags": "You can use the following variables in your template: {tags}",
"theme_custom_css_settings": "Custom CSS",
"theme_custom_css_settings_description": "Cascading Style Sheets allow the design of Immich to be customized.",
"theme_settings": "Theme Settings",
@ -725,6 +736,7 @@
"external": "External",
"external_libraries": "External Libraries",
"face_unassigned": "Unassigned",
"failed_to_load_assets": "Failed to load assets",
"favorite": "Favorite",
"favorite_or_unfavorite_photo": "Favorite or unfavorite photo",
"favorites": "Favorites",
@ -1025,6 +1037,7 @@
"reassing_hint": "Assign selected assets to an existing person",
"recent": "Recent",
"recent_searches": "Recent searches",
"recent-albums": "Recent albums",
"refresh": "Refresh",
"refresh_encoded_videos": "Refresh encoded videos",
"refresh_faces": "Refresh faces",
@ -1045,6 +1058,7 @@
"remove_from_album": "Remove from album",
"remove_from_favorites": "Remove from favorites",
"remove_from_shared_link": "Remove from shared link",
"remove_url": "Remove URL",
"remove_user": "Remove user",
"removed_api_key": "Removed API Key: {name}",
"removed_from_archive": "Removed from archive",

View file

@ -23,6 +23,7 @@
"add_to": "Agregar a...",
"add_to_album": "Agregar a un álbum",
"add_to_shared_album": "Agregar a un álbum compartido",
"add_url": "Añadir URL",
"added_to_archive": "Archivado",
"added_to_favorites": "Agregado a favoritos",
"added_to_favorites_count": "Agregado {count, number} a favoritos",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Busque imágenes semánticamente utilizando incrustaciones CLIP",
"machine_learning_smart_search_enabled": "Habilitar búsqueda inteligente",
"machine_learning_smart_search_enabled_description": "Si está deshabilitado, las imágenes no se codificarán para la búsqueda inteligente.",
"machine_learning_url_description": "URL del servidor de aprendizaje automático",
"machine_learning_url_description": "La URL del servidor de aprendizaje automático. Si se proporciona más de una URL, se intentará acceder a cada servidor de uno en uno hasta que uno responda correctamente, en orden del primero al último.",
"manage_concurrency": "Ajustes de concurrencia",
"manage_log_settings": "Administrar la configuración de los registros",
"map_dark_style": "Estilo oscuro",
@ -222,6 +223,8 @@
"send_welcome_email": "Enviar correo de bienvenida",
"server_external_domain_settings": "Dominio externo",
"server_external_domain_settings_description": "Dominio para enlaces públicos compartidos, incluidos http(s)://",
"server_public_users": "Usuarios públicos",
"server_public_users_description": "Todos los usuarios (nombre y correo electrónico) aparecen en la lista cuando se añade un usuario a los álbumes compartidos. Si se desactiva, la lista de usuarios sólo estará disponible para los usuarios administradores.",
"server_settings": "Configuración del servidor",
"server_settings_description": "Administrar la configuración del servidor",
"server_welcome_message": "Mensaje de bienvenida",
@ -247,6 +250,16 @@
"storage_template_user_label": "<code>{label}</code> es la etiqueta de almacenamiento del usuario",
"system_settings": "Ajustes del Sistema",
"tag_cleanup_job": "Limpieza de etiquetas",
"template_email_available_tags": "Puede utilizar las siguientes variables en su plantilla: {tags}",
"template_email_if_empty": "Si la plantilla está vacía, se utilizará el correo electrónico predeterminado.",
"template_email_invite_album": "Plantilla de álbum de invitaciones",
"template_email_preview": "Vista previa",
"template_email_settings": "Modelos de correo electrónico",
"template_email_settings_description": "Gestionar plantillas de notificación por correo electrónico personalizadas",
"template_email_update_album": "Actualizar plantilla del álbum",
"template_email_welcome": "Plantilla de correo electrónico de bienvenida",
"template_settings": "Plantillas de notificación",
"template_settings_description": "Gestione plantillas personalizadas para las notificaciones.",
"theme_custom_css_settings": "CSS Personalizado",
"theme_custom_css_settings_description": "Las Hojas de Estilo (CSS) permiten personalizar el diseño de Immich.",
"theme_settings": "Ajustes Tema",
@ -721,6 +734,7 @@
"external": "Externo",
"external_libraries": "Bibliotecas Externas",
"face_unassigned": "Sin asignar",
"failed_to_load_assets": "Error al cargar los activos",
"favorite": "Favorito",
"favorite_or_unfavorite_photo": "Foto favorita o no favorita",
"favorites": "Favoritos",
@ -1020,6 +1034,7 @@
"reassigned_assets_to_new_person": "Reasignado {count, plural, one {# elemento} other {# elementos}} a un nuevo usuario",
"reassing_hint": "Asignar archivos seleccionados a una persona existente",
"recent": "Reciente",
"recent-albums": "Últimos álbumes",
"recent_searches": "Búsquedas recientes",
"refresh": "Actualizar",
"refresh_encoded_videos": "Recargar los vídeos codificados",
@ -1041,6 +1056,7 @@
"remove_from_album": "Eliminar del álbum",
"remove_from_favorites": "Quitar de favoritos",
"remove_from_shared_link": "Eliminar desde enlace compartido",
"remove_url": "Eliminar URL",
"remove_user": "Eliminar usuario",
"removed_api_key": "Clave API eliminada: {name}",
"removed_from_archive": "Eliminado del archivo",
@ -1223,6 +1239,7 @@
"they_will_be_merged_together": "Se fusionarán entre sí",
"third_party_resources": "Recursos de terceros",
"time_based_memories": "Recuerdos basados en tiempo",
"timeline": "Cronología",
"timezone": "Zona horaria",
"to_archive": "Archivar",
"to_change_password": "Cambiar contraseña",
@ -1232,6 +1249,7 @@
"to_trash": "Descartar",
"toggle_settings": "Alternar ajustes",
"toggle_theme": "Alternar tema oscuro",
"total": "Total",
"total_usage": "Uso total",
"trash": "Papelera",
"trash_all": "Descartar todo",
@ -1281,6 +1299,8 @@
"user_purchase_settings_description": "Gestiona tu compra",
"user_role_set": "Carbiar {user} a {role}",
"user_usage_detail": "Detalle del uso del usuario",
"user_usage_stats": "Estadísticas de uso de la cuenta",
"user_usage_stats_description": "Ver estadísticas de uso de la cuenta",
"username": "Nombre de usuario",
"users": "Usuarios",
"utilities": "Utilidades",
@ -1302,6 +1322,7 @@
"view_all_users": "Mostrar todos los usuarios",
"view_in_timeline": "Mostrar en la línea de tiempo",
"view_links": "Mostrar enlaces",
"view_name": "Ver",
"view_next_asset": "Mostrar siguiente elemento",
"view_previous_asset": "Mostrar elemento anterior",
"view_stack": "Ver Pila",

View file

@ -23,6 +23,7 @@
"add_to": "Lisa kohta...",
"add_to_album": "Lisa albumisse",
"add_to_shared_album": "Lisa jagatud albumisse",
"add_url": "Lisa URL",
"added_to_archive": "Lisatud arhiivi",
"added_to_favorites": "Lisatud lemmikutesse",
"added_to_favorites_count": "{count, number} pilti lisatud lemmikutesse",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Otsi pilte semantiliselt CLIP-manuste abil",
"machine_learning_smart_search_enabled": "Luba nutiotsing",
"machine_learning_smart_search_enabled_description": "Kui keelatud, siis ei kodeerita pilte nutiotsingu jaoks.",
"machine_learning_url_description": "Masinõppe serveri URL",
"machine_learning_url_description": "Masinõppe serveri URL. Kui ette on antud rohkem kui üks URL, proovitakse neid järjest ükshaaval, kuni üks edukalt vastab.",
"manage_concurrency": "Halda samaaegsust",
"manage_log_settings": "Halda logi seadeid",
"map_dark_style": "Tume stiil",
@ -222,6 +223,8 @@
"send_welcome_email": "Saada tervituskiri",
"server_external_domain_settings": "Väline domeen",
"server_external_domain_settings_description": "Domeen avalikult jagatud linkide jaoks, k.a. http(s)://",
"server_public_users": "Avalikud kasutajad",
"server_public_users_description": "Kasutaja jagatud albumisse lisamisel kuvatakse kõiki kasutajaid (nime ja e-posti aadressiga). Kui keelatud, kuvatakse kasutajate nimekirja ainult administraatoritele.",
"server_settings": "Serveri seaded",
"server_settings_description": "Halda serveri seadeid",
"server_welcome_message": "Tervitusteade",
@ -247,6 +250,16 @@
"storage_template_user_label": "<code>{label}</code> on kasutaja talletussilt",
"system_settings": "Süsteemi seaded",
"tag_cleanup_job": "Siltide korrastamine",
"template_email_available_tags": "Saad mallis kasutada järgmisi muutujaid: {tags}",
"template_email_if_empty": "Kui mall on tühi, kasutatakse vaikimisi e-kirja.",
"template_email_invite_album": "Albumisse kutse mall",
"template_email_preview": "Eelvaade",
"template_email_settings": "E-posti mallid",
"template_email_settings_description": "Halda e-posti teavitusmalle",
"template_email_update_album": "Albumi muutmise mall",
"template_email_welcome": "Tervituskirja mall",
"template_settings": "Teavituse mallid",
"template_settings_description": "Teavituste mallide haldamine.",
"theme_custom_css_settings": "Kohandatud CSS",
"theme_custom_css_settings_description": "Cascading Style Sheets lubab Immich'i kujunduse kohandamist.",
"theme_settings": "Teema seaded",
@ -719,6 +732,7 @@
"external": "Väline",
"external_libraries": "Välised kogud",
"face_unassigned": "Seostamata",
"failed_to_load_assets": "Üksuste laadimine ebaõnnestus",
"favorite": "Lemmik",
"favorites": "Lemmikud",
"feature_photo_updated": "Esiletõstetud foto muudetud",
@ -1011,6 +1025,7 @@
"reassigned_assets_to_existing_person": "{count, plural, one {# üksus} other {# üksust}} seostatud {name, select, null {olemasoleva isikuga} other {isikuga {name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# üksus} other {# üksust}} seostatud uue isikuga",
"reassing_hint": "Seosta valitud üksused olemasoleva isikuga",
"recent-albums": "Hiljutised albumid",
"recent_searches": "Hiljutised otsingud",
"refresh": "Värskenda",
"refresh_encoded_videos": "Värskenda kodeeritud videod",
@ -1032,6 +1047,7 @@
"remove_from_album": "Eemalda albumist",
"remove_from_favorites": "Eemalda lemmikutest",
"remove_from_shared_link": "Eemalda jagatud lingist",
"remove_url": "Eemalda URL",
"remove_user": "Eemalda kasutaja",
"removed_api_key": "API võti eemaldatud: {name}",
"removed_from_archive": "Arhiivist eemaldatud",
@ -1210,13 +1226,16 @@
"they_will_be_merged_together": "Nad ühendatakse kokku",
"third_party_resources": "Kolmanda osapoole ressursid",
"time_based_memories": "Ajapõhised mälestused",
"timeline": "Ajajoon",
"timezone": "Ajavöönd",
"to_archive": "Arhiivi",
"to_change_password": "Muuda parool",
"to_favorite": "Lemmik",
"to_login": "Logi sisse",
"to_trash": "Prügikasti",
"toggle_settings": "Kuva/peida seaded",
"toggle_theme": "Lülita tume teema",
"total": "Kokku",
"total_usage": "Kogukasutus",
"trash": "Prügikast",
"trash_all": "Kõik prügikasti",
@ -1262,6 +1281,8 @@
"user_purchase_settings_description": "Halda oma ostu",
"user_role_set": "Määra kasutajale {user} roll {role}",
"user_usage_detail": "Kasutajate kasutusandmed",
"user_usage_stats": "Konto kasutuse statistika",
"user_usage_stats_description": "Vaata konto kasutuse statistikat",
"username": "Kasutajanimi",
"users": "Kasutajad",
"utilities": "Tööriistad",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Lähetä tervetuloviesti",
"server_external_domain_settings": "Ulkoinen osoite",
"server_external_domain_settings_description": "Osoite julkisille linkeille, http(s):// mukaan lukien",
"server_public_users": "Julkiset käyttäjät",
"server_public_users_description": "Kaikki käyttäjät (nimi ja sähköpostiosoite) luetellaan, kun käyttäjä lisätään jaettuihin albumeihin. Kun toiminto on poistettu käytöstä, käyttäjäluettelo on vain pääkäyttäjien käytettävissä.",
"server_settings": "Palvelimen asetukset",
"server_settings_description": "Ylläpidä palvelimen asetuksia",
"server_welcome_message": "Tervetuloviesti",
@ -465,6 +467,7 @@
"confirm": "Vahvista",
"confirm_admin_password": "Vahvista ylläpitäjän salasana",
"confirm_delete_shared_link": "Haluatko varmasti poistaa tämän jaetun linkin?",
"confirm_keep_this_delete_others": "Kuvapinon muut kuvat tätä lukuunottamatta poistetaan. Oletko varma, että haluat jatkaa?",
"confirm_password": "Vahvista salasana",
"contain": "Mahduta",
"context": "Konteksti",
@ -514,6 +517,7 @@
"delete_key": "Poista avain",
"delete_library": "Poista kirjasto",
"delete_link": "Poista linkki",
"delete_others": "Poista muut",
"delete_shared_link": "Poista jaettu linkki",
"delete_tag": "Poista tunniste",
"delete_tag_confirmation_prompt": "Haluatko varmasti poistaa tunnisteen {tagName}?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Jaetun linkin luonti epäonnistui",
"failed_to_edit_shared_link": "Jaetun linkin muokkaus epäonnistui",
"failed_to_get_people": "Henkilöiden haku epäonnistui",
"failed_to_keep_this_delete_others": "Muiden kohteiden poisto epäonnistui",
"failed_to_load_asset": "Kohteen lataus epäonnistui",
"failed_to_load_assets": "Kohteiden lataus epäonnistui",
"failed_to_load_people": "Henkilöiden lataus epäonnistui",
@ -787,6 +792,8 @@
"jobs": "Taustatehtävät",
"keep": "Säilytä",
"keep_all": "Säilytä kaikki",
"keep_this_delete_others": "Säilytä tämä, poista muut",
"kept_this_deleted_others": "Tämä kohde säilytettiin. {count, plural, one {# asset} other {# assets}} poistettiin",
"keyboard_shortcuts": "Pikanäppäimet",
"language": "Kieli",
"language_setting_description": "Valitse suosimasi kieli",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Nämä tullaan yhdistämään",
"third_party_resources": "Kolmannen osapuolen resurssit",
"time_based_memories": "Aikaan perustuvat muistot",
"timeline": "Aikajana",
"timezone": "Aikavyöhyke",
"to_archive": "Arkistoi",
"to_change_password": "Vaihda salasana",
@ -1227,6 +1235,7 @@
"to_trash": "Roskakoriin",
"toggle_settings": "Määritä asetukset",
"toggle_theme": "Aseta tumma teema",
"total": "Yhteensä",
"total_usage": "Käyttö yhteensä",
"trash": "Roskakori",
"trash_all": "Vie kaikki roskakoriin",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Hallitse ostostasi",
"user_role_set": "Tee käyttäjästä {user} {role}",
"user_usage_detail": "Käyttäjän käytön tiedot",
"user_usage_stats": "Tilin käyttötilastot",
"user_usage_stats_description": "Näytä tilin käyttötilastot",
"username": "Käyttäjänimi",
"users": "Käyttäjät",
"utilities": "Apuohjelmat",
@ -1297,6 +1308,7 @@
"view_all_users": "Näytä kaikki käyttäjät",
"view_in_timeline": "Näytä aikajanalla",
"view_links": "Näytä linkit",
"view_name": "Näkymä",
"view_next_asset": "Näytä seuraava",
"view_previous_asset": "Näytä edellinen",
"view_stack": "Näytä pinona",

View file

@ -5,12 +5,12 @@
"acknowledge": "Compris",
"action": "Action",
"actions": "Actions",
"active": "En cours d'exécution",
"active": "En cours",
"activity": "Activité",
"activity_changed": "Activité {enabled, select, true {autorisée} other {interdite}}",
"add": "Ajouter",
"add_a_description": "Ajouter une description",
"add_a_location": "Ajouter un emplacement",
"add_a_location": "Ajouter une localisation",
"add_a_name": "Ajouter un nom",
"add_a_title": "Ajouter un titre",
"add_exclusion_pattern": "Ajouter un schéma d'exclusion",
@ -23,6 +23,7 @@
"add_to": "Ajouter à…",
"add_to_album": "Ajouter à l'album",
"add_to_shared_album": "Ajouter à l'album partagé",
"add_url": "Ajouter l'URL",
"added_to_archive": "Ajouté à l'archive",
"added_to_favorites": "Ajouté aux favoris",
"added_to_favorites_count": "{count, number} ajouté(s) aux favoris",
@ -30,7 +31,7 @@
"add_exclusion_pattern_description": "Ajouter des schémas d'exclusion. Les caractères génériques *, ** et? sont pris en charge. Pour ignorer tous les fichiers dans un répertoire nommé « Raw », utilisez « **/Raw/** ». Pour ignorer tous les fichiers se terminant par « .tif », utilisez « **/*.tif ». Pour ignorer un chemin absolu, utilisez « /chemin/à/ignorer/** ».",
"asset_offline_description": "Ce média de la bibliothèque externe n'est plus présent sur le disque et a été déplacé vers la corbeille. Si le fichier a été déplacé dans la bibliothèque, vérifiez votre chronologie pour le nouveau média correspondant. Pour restaurer ce média, veuillez vous assurer que le chemin du fichier ci-dessous peut être accédé par Immich et lancez l'analyse de la bibliothèque.",
"authentication_settings": "Paramètres d'authentification",
"authentication_settings_description": "Gérer le mot de passe, la délégation d'authentification OAuth et d'autres paramètres d'authentification",
"authentication_settings_description": "Gérer le mot de passe, l'authentification OAuth et d'autres paramètres d'authentification",
"authentication_settings_disable_all": "Êtes-vous sûr de vouloir désactiver toutes les méthodes de connexion? La connexion sera complètement désactivée.",
"authentication_settings_reenable": "Pour réactiver, utilisez une <link>Commande Serveur</link>.",
"background_task_job": "Tâches de fond",
@ -39,8 +40,8 @@
"backup_keep_last_amount": "Nombre de sauvegardes à conserver",
"backup_settings": "Paramètres de la sauvegarde",
"backup_settings_description": "Gérer les paramètres de la sauvegarde",
"check_all": "Vérifier tout",
"cleared_jobs": "Tâches supprimées pour: {job}",
"check_all": "Tout cocher",
"cleared_jobs": "Tâches supprimées pour : {job}",
"config_set_by_file": "La configuration est actuellement définie par un fichier de configuration",
"confirm_delete_library": "Êtes-vous sûr de vouloir supprimer la bibliothèque {library}?",
"confirm_delete_library_assets": "Êtes-vous sûr de vouloir supprimer cette bibliothèque? Cette opération supprimera d'Immich {count, plural, one {le média} other {les # médias}} qu'elle contient et ne pourra pas être annulée. Les fichiers resteront sur le disque.",
@ -50,14 +51,14 @@
"create_job": "Créer une tâche",
"cron_expression": "Expression cron",
"cron_expression_description": "Définir l'intervalle d'analyse à l'aide d'une expression cron. Pour plus d'informations, voir <link>Crontab Guru</link>",
"cron_expression_presets": "Préréglages expression cron",
"cron_expression_presets": "Préréglages d'expression cron",
"disable_login": "Désactiver la connexion",
"duplicate_detection_job_description": "Exécution de l'apprentissage automatique sur les médias pour détecter les images similaires. S'appuie sur la recherche intelligente",
"duplicate_detection_job_description": "Lancement de l'apprentissage automatique sur les médias pour détecter les images similaires. Se base sur la recherche intelligente",
"exclusion_pattern_description": "Les schémas d'exclusion vous permettent d'ignorer des fichiers et des dossiers lors de l'analyse de votre bibliothèque. Cette fonction est utile si des dossiers contiennent des fichiers que vous ne souhaitez pas importer, tels que des fichiers RAW.",
"external_library_created_at": "Bibliothèque externe (créée le {date})",
"external_library_management": "Gestion de la bibliothèque externe",
"face_detection": "Détection des visages",
"face_detection_description": "Détection des visages dans les médias à l'aide de l'apprentissage automatique. Pour les vidéos, seule la miniature est prise en compte. « Rafraichir» (re)traite tous les médias. « Réinitialise» met en file d'attente les médias qui n'ont pas encore été traités. Les visages détectés seront mis en file d'attente pour la reconnaissance faciale une fois la détection des visages terminée, les regroupant en personnes existantes ou nouvelles.",
"face_detection_description": "Détection des visages dans les médias à l'aide de l'apprentissage automatique. Pour les vidéos, seule la miniature est prise en compte. « Actualiser » (re)traite tous les médias. « Réinitialiser » efface en plus toutes les données actuelles de visages. « Manquants » Les visages détectés seront mis en file d'attente pour la reconnaissance faciale. Une fois la détection des visages terminée, les regroupant en personnes existantes ou nouvelles.",
"facial_recognition_job_description": "Regrouper les visages détectés en personnes. Cette étape est exécutée une fois la détection des visages terminée. « Rafraichir» (re)regroupe tous les visages. « Manquant» met en file d'attente les visages auxquels aucune personne n'a été attribuée.",
"failed_job_command": "La commande {command} a échoué pour la tâche: {job}",
"force_delete_user_warning": "ATTENTION: Cette opération entraîne la suppression immédiate de l'utilisateur et de tous ses médias. Cette opération ne peut être annulée et les fichiers ne peuvent être récupérés.",
@ -89,7 +90,7 @@
"jobs_failed": "{jobCount, plural, other {# en échec}}",
"library_created": "Bibliothèque créée: {library}",
"library_deleted": "Bibliothèque supprimée",
"library_import_path_description": "Spécifier un dossier à importer. Ce dossier, y compris les sous-dossiers, sera analysé à la recherche d'images et de vidéos.",
"library_import_path_description": "Spécifier un dossier à importer. Ce dossier, y compris ses sous-dossiers, sera analysé à la recherche d'images et de vidéos.",
"library_scanning": "Analyse périodique",
"library_scanning_description": "Configurer l'analyse périodique de la bibliothèque",
"library_scanning_enable_description": "Activer l'analyse périodique de la bibliothèque",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Rechercher des images de manière sémantique en utilisant les intégrations CLIP",
"machine_learning_smart_search_enabled": "Activer la recherche intelligente",
"machine_learning_smart_search_enabled_description": "Si cette option est désactivée, les images ne seront pas encodées pour la recherche intelligente.",
"machine_learning_url_description": "URL du serveur d'apprentissage automatique",
"machine_learning_url_description": "LURL du serveur d'apprentissage automatique. Si plusieurs URL sont fournies, chaque serveur sera essayé un par un jusquà ce que lun deux réponde avec succès, dans lordre de la première à la dernière.",
"manage_concurrency": "Gérer du multitâche",
"manage_log_settings": "Gérer les paramètres de journalisation",
"map_dark_style": "Thème sombre",
@ -189,7 +190,7 @@
"oauth_mobile_redirect_uri_override_description": "Activer quand le fournisseur d'OAuth ne permet pas un URI mobile, comme '{callback} '",
"oauth_profile_signing_algorithm": "Algorithme de signature de profil",
"oauth_profile_signing_algorithm_description": "Algorithme utilisé pour signer le profil utilisateur.",
"oauth_scope": "Portée",
"oauth_scope": "Périmètre",
"oauth_settings": "OAuth",
"oauth_settings_description": "Gérer les paramètres de connexion OAuth",
"oauth_settings_more_details": "Pour plus de détails sur cette fonctionnalité, consultez <link>ce lien</link>.",
@ -222,6 +223,8 @@
"send_welcome_email": "Envoyer un courriel de bienvenue",
"server_external_domain_settings": "Domaine externe",
"server_external_domain_settings_description": "Nom de domaine pour les liens partagés publics, y compris http(s)://",
"server_public_users": "Utilisateurs publics",
"server_public_users_description": "Tous les utilisateurs (nom et courriel) sont listés lors de l'ajout d'un utilisateur à des albums partagés. Quand cela est désactivé, la liste des utilisateurs est uniquement disponible pour les comptes administrateurs.",
"server_settings": "Paramètres du serveur",
"server_settings_description": "Gérer les paramètres du serveur",
"server_welcome_message": "Message de bienvenue",
@ -247,11 +250,21 @@
"storage_template_user_label": "<code>{label}</code> est l'étiquette de stockage de l'utilisateur",
"system_settings": "Paramètres du système",
"tag_cleanup_job": "Nettoyage des étiquettes",
"template_email_available_tags": "Vous pouvez utiliser les variables suivantes dans votre modèle : {tags}",
"template_email_if_empty": "Si le modèle est vide, le-mail par défaut sera utilisé.",
"template_email_invite_album": "Modèle d'invitation à un album",
"template_email_preview": "Prévisualiser",
"template_email_settings": "Modèles de courriel",
"template_email_settings_description": "Gérer les modèles de notifications par courriel personnalisés",
"template_email_update_album": "Mettre à jour le modèle dalbum",
"template_email_welcome": "Modèle de courriel de bienvenue",
"template_settings": "Modèles de notifications",
"template_settings_description": "Gérer les modèles personnalisés pour les notifications.",
"theme_custom_css_settings": "CSS personnalisé",
"theme_custom_css_settings_description": "Les feuilles de style en cascade (CSS) permettent de personnaliser l'apparence d'Immich.",
"theme_settings": "Paramètres du thème",
"theme_settings_description": "Gérer la personnalisation de l'interface web d'Immich",
"these_files_matched_by_checksum": "Ces fichiers correspondent par leur somme de contrôle",
"these_files_matched_by_checksum": "Ces fichiers sont identiques d'après leur somme de contrôle",
"thumbnail_generation_job": "Génération des miniatures",
"thumbnail_generation_job_description": "Génération des miniatures pour chaque média ainsi que pour les visages détectés",
"transcoding_acceleration_api": "API d'accélération",
@ -262,7 +275,7 @@
"transcoding_acceleration_vaapi": "VAAPI",
"transcoding_accepted_audio_codecs": "Codecs audio acceptés",
"transcoding_accepted_audio_codecs_description": "Sélectionnez les codecs audio qui n'ont pas besoin d'être transcodés. Utilisé uniquement pour certaines politiques de transcodage.",
"transcoding_accepted_containers": "Containers acceptés",
"transcoding_accepted_containers": "Conteneurs acceptés",
"transcoding_accepted_containers_description": "Sélectionnez les formats de conteneurs qui n'ont pas besoin d'être remuxés en MP4. Utilisé uniquement pour certaines politiques de transcodage.",
"transcoding_accepted_video_codecs": "Codecs vidéo acceptés",
"transcoding_accepted_video_codecs_description": "Sélectionnez les codecs vidéo qui n'ont pas besoin d'être transcodés. Utilisé uniquement pour certaines politiques de transcodage.",
@ -299,7 +312,7 @@
"transcoding_settings_description": "Gérer les informations de résolution et d'encodage des fichiers vidéo",
"transcoding_target_resolution": "Résolution cible",
"transcoding_target_resolution_description": "Des résolutions plus élevées peuvent préserver plus de détails, mais prennent plus de temps à encoder, ont de plus grandes tailles de fichiers, et peuvent réduire la réactivité de l'application.",
"transcoding_temporal_aq": "AQ temporelle",
"transcoding_temporal_aq": "Quantification adaptative temporelle (temporal AQ)",
"transcoding_temporal_aq_description": "S'applique uniquement à NVENC. Améliore la qualité des scènes riches en détails et à faible mouvement. Peut ne pas être compatible avec les anciens appareils.",
"transcoding_threads": "Processus",
"transcoding_threads_description": "Une valeur plus élevée entraîne un encodage plus rapide, mais laisse moins de place au serveur pour traiter d'autres tâches pendant son activité. Cette valeur ne doit pas être supérieure au nombre de cœurs de CPU. Une valeur égale à 0 maximise l'utilisation.",
@ -392,7 +405,7 @@
"asset_adding_to_album": "Ajout à l'album...",
"asset_description_updated": "La description du média a été mise à jour",
"asset_filename_is_offline": "Le média {filename} est hors ligne",
"asset_has_unassigned_faces": "Le média a des visages non assignés",
"asset_has_unassigned_faces": "Le média a des visages non attribués",
"asset_hashing": "Hachage...",
"asset_offline": "Média hors ligne",
"asset_offline_description": "Ce média externe n'est plus accessible sur le disque. Veuillez contacter votre administrateur Immich pour obtenir de l'aide.",
@ -465,6 +478,7 @@
"confirm": "Confirmer",
"confirm_admin_password": "Confirmer le mot de passe Admin",
"confirm_delete_shared_link": "Voulez-vous vraiment supprimer ce lien partagé?",
"confirm_keep_this_delete_others": "Tous les autres médias dans la pile seront supprimés sauf celui-ci. Êtes-vous sûr de vouloir continuer?",
"confirm_password": "Confirmer le mot de passe",
"contain": "Contenu",
"context": "Contexte",
@ -514,6 +528,7 @@
"delete_key": "Supprimer la clé",
"delete_library": "Supprimer la bibliothèque",
"delete_link": "Supprimer le lien",
"delete_others": "Supprimer les autres",
"delete_shared_link": "Supprimer le lien partagé",
"delete_tag": "Supprimer l'étiquette",
"delete_tag_confirmation_prompt": "Êtes-vous sûr de vouloir supprimer l'étiquette {tagName}?",
@ -532,12 +547,12 @@
"display_options": "Afficher les options",
"display_order": "Ordre d'affichage",
"display_original_photos": "Afficher les photos originales",
"display_original_photos_setting_description": "Préférer afficher la photo originale lors de la visualisation d'un média plutôt que sa miniature lorsque cela est possible. Cela peut entraîner des vitesses d'affichage plus lentes.",
"display_original_photos_setting_description": "Afficher de préférence la photo originale lors de la visualisation d'un média plutôt que sa miniature lorsque cela est possible. Cela peut entraîner des vitesses d'affichage plus lentes.",
"do_not_show_again": "Ne plus afficher ce message",
"documentation": "Documentation",
"done": "Terminé",
"download": "Télécharger",
"download_include_embedded_motion_videos": "Vidéos embarquées",
"download_include_embedded_motion_videos": "Vidéos intégrées",
"download_include_embedded_motion_videos_description": "Inclure des vidéos intégrées dans les photos de mouvement comme un fichier séparé",
"download_settings": "Télécharger",
"download_settings_description": "Gérer les paramètres de téléchargement des médias",
@ -562,7 +577,7 @@
"edit_name": "Modifier le nom",
"edit_people": "Modifier les personnes",
"edit_tag": "Modifier l'étiquette",
"edit_title": "Modifier le title",
"edit_title": "Modifier le titre",
"edit_user": "Modifier l'utilisateur",
"edited": "Modifié",
"editor": "Editeur",
@ -585,15 +600,15 @@
"cant_apply_changes": "Impossible d'appliquer les changements",
"cant_change_activity": "Impossible {enabled, select, true {d'interdire} other {d'autoriser}} l'activité",
"cant_change_asset_favorite": "Impossible de changer le favori du média",
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées de {count, plural, one {# média} other {# médias}}",
"cant_get_faces": "Impossible d'obtenir de visages",
"cant_change_metadata_assets_count": "Impossible de modifier les métadonnées {count, plural, one {d'un média} other {de # médias}}",
"cant_get_faces": "Impossible d'obtenir des visages",
"cant_get_number_of_comments": "Impossible d'obtenir le nombre de commentaires",
"cant_search_people": "Impossible de rechercher des personnes",
"cant_search_places": "Impossible de rechercher des lieux",
"cleared_jobs": "Tâches supprimées pour: {job}",
"error_adding_assets_to_album": "Erreur lors de l'ajout des médias à l'album",
"error_adding_users_to_album": "Erreur lors de l'ajout d'utilisateurs à l'album",
"error_deleting_shared_user": "Erreur lors de la suppression l'utilisateur partagé",
"error_deleting_shared_user": "Erreur lors de la suppression de l'utilisateur partagé",
"error_downloading": "Erreur lors du téléchargement de {filename}",
"error_hiding_buy_button": "Impossible de masquer le bouton d'achat",
"error_removing_assets_from_album": "Erreur lors de la suppression des médias de l'album, vérifier la console pour plus de détails",
@ -604,6 +619,7 @@
"failed_to_create_shared_link": "Impossible de créer le lien partagé",
"failed_to_edit_shared_link": "Impossible de modifier le lien partagé",
"failed_to_get_people": "Impossible d'obtenir les personnes",
"failed_to_keep_this_delete_others": "Impossible de conserver ce média et de supprimer les autres médias",
"failed_to_load_asset": "Impossible de charger le média",
"failed_to_load_assets": "Impossible de charger les médias",
"failed_to_load_people": "Impossible de charger les personnes",
@ -637,21 +653,21 @@
"unable_to_copy_to_clipboard": "Impossible de copier dans le presse-papiers, assurez-vous que vous accédez à la page via https",
"unable_to_create_admin_account": "Impossible de créer le compte administrateur",
"unable_to_create_api_key": "Impossible de créer une nouvelle clé API",
"unable_to_create_library": "Création de bibliothèque impossible",
"unable_to_create_user": "Création de l'utilisateur impossible",
"unable_to_delete_album": "Suppression de l'album impossible",
"unable_to_delete_asset": "Suppression du média impossible",
"unable_to_create_library": "Impossible de créer la bibliothèque",
"unable_to_create_user": "Impossible de créer l'utilisateur",
"unable_to_delete_album": "Impossible de supprimer l'album",
"unable_to_delete_asset": "Impossible de supprimer le média",
"unable_to_delete_assets": "Erreur lors de la suppression des médias",
"unable_to_delete_exclusion_pattern": "Suppression du modèle d'exclusion impossible",
"unable_to_delete_import_path": "Suppression du chemin d'importation impossible",
"unable_to_delete_shared_link": "Suppression du lien de partage impossible",
"unable_to_delete_user": "Suppression de l'utilisateur impossible",
"unable_to_delete_exclusion_pattern": "Impossible de supprimer le modèle d'exclusion",
"unable_to_delete_import_path": "Impossible de supprimer le chemin d'importation",
"unable_to_delete_shared_link": "Impossible de supprimer le lien de partage",
"unable_to_delete_user": "Impossible de supprimer l'utilisateur",
"unable_to_download_files": "Impossible de télécharger les fichiers",
"unable_to_edit_exclusion_pattern": "Modification du modèle d'exclusion impossible",
"unable_to_edit_import_path": "Modification du chemin d'importation impossible",
"unable_to_edit_exclusion_pattern": "Impossible de modifier le modèle d'exclusion",
"unable_to_edit_import_path": "Impossible de modifier le chemin d'importation",
"unable_to_empty_trash": "Impossible de vider la corbeille",
"unable_to_enter_fullscreen": "Mode plein écran indisponible",
"unable_to_exit_fullscreen": "Sortie du mode plein écran impossible",
"unable_to_exit_fullscreen": "Impossible de sortir du mode plein écran",
"unable_to_get_comments_number": "Impossible d'obtenir le nombre de commentaires",
"unable_to_get_shared_link": "Échec de la récupération du lien partagé",
"unable_to_hide_person": "Impossible de cacher la personne",
@ -665,8 +681,8 @@
"unable_to_log_out_device": "Impossible de déconnecter l'appareil",
"unable_to_login_with_oauth": "Impossible de se connecter avec OAuth",
"unable_to_play_video": "Impossible de jouer la vidéo",
"unable_to_reassign_assets_existing_person": "Incapable de réaffecter des médias à {name, select, null {une personne existante} other {{name}}}",
"unable_to_reassign_assets_new_person": "Impossible de réaffecter les médias à une nouvelle personne",
"unable_to_reassign_assets_existing_person": "Impossible de réattribuer les médias à {name, select, null {une personne existante} other {{name}}}",
"unable_to_reassign_assets_new_person": "Impossible de réattribuer les médias à une nouvelle personne",
"unable_to_refresh_user": "Impossible d'actualiser l'utilisateur",
"unable_to_remove_album_users": "Impossible de supprimer les utilisateurs de l'album",
"unable_to_remove_api_key": "Impossible de supprimer la clé API",
@ -685,7 +701,7 @@
"unable_to_save_api_key": "Impossible de sauvegarder la clé API",
"unable_to_save_date_of_birth": "Impossible de sauvegarder la date de naissance",
"unable_to_save_name": "Impossible de sauvegarder le nom",
"unable_to_save_profile": "Impossible de sauvegarder le profile",
"unable_to_save_profile": "Impossible de sauvegarder le profil",
"unable_to_save_settings": "Impossible d'enregistrer les préférences",
"unable_to_scan_libraries": "Impossible de scanner les bibliothèques",
"unable_to_scan_library": "Impossible de scanner la bibliothèque",
@ -716,8 +732,9 @@
"export_as_json": "Exporter en JSON",
"extension": "Extension",
"external": "Externe",
"external_libraries": "Bibliothèques ext.",
"external_libraries": "Bibliothèques externes",
"face_unassigned": "Non attribué",
"failed_to_load_assets": "Échec du chargement des ressources",
"favorite": "Favori",
"favorite_or_unfavorite_photo": "Ajouter ou supprimer des favoris",
"favorites": "Favoris",
@ -787,6 +804,8 @@
"jobs": "Tâches",
"keep": "Conserver",
"keep_all": "Les conserver tous",
"keep_this_delete_others": "Conserver celui-ci, supprimer les autres",
"kept_this_deleted_others": "Ce média a été conservé, et {count, plural, one {un autre a été supprimé} other {# autres ont été supprimés}}",
"keyboard_shortcuts": "Raccourcis clavier",
"language": "Langue",
"language_setting_description": "Sélectionnez votre langue préférée",
@ -836,7 +855,7 @@
"media_type": "Type de média",
"memories": "Souvenirs",
"memories_setting_description": "Gérer ce que vous voyez dans vos souvenirs",
"memory": "Mémoire",
"memory": "Souvenir",
"memory_lane_title": "Fil de souvenirs {title}",
"menu": "Menu",
"merge": "Fusionner",
@ -942,7 +961,7 @@
"permanent_deletion_warning": "Avertissement avant suppression définitive",
"permanent_deletion_warning_setting_description": "Afficher un avertissement avant la suppression définitive d'un média",
"permanently_delete": "Supprimer définitivement",
"permanently_delete_assets_count": "Suppression définitive de {count, plural, one {média} other {médias}}",
"permanently_delete_assets_count": "Suppression définitive {count, plural, one {du média} other {des médias}}",
"permanently_delete_assets_prompt": "Êtes-vous sûr de vouloir supprimer définitivement {count, plural, one {ce média?} other {ces <b>#</b> médias?}} Cela {count, plural, one {le} other {les}} supprimera aussi de {count, plural, one {son (ses)} other {leur(s)}} album(s).",
"permanently_deleted_asset": "Média supprimé définitivement",
"permanently_deleted_assets_count": "{count, plural, one {# média définitivement supprimé} other {# médias définitivement supprimés}}",
@ -973,7 +992,7 @@
"public_album": "Album public",
"public_share": "Partage public",
"purchase_account_info": "Contributeur",
"purchase_activated_subtitle": "Merci d'avoir apporté votre soutien à Immich et les logiciels open source",
"purchase_activated_subtitle": "Merci d'avoir apporté votre soutien à Immich et aux logiciels open source",
"purchase_activated_time": "Activé le {date, date}",
"purchase_activated_title": "Votre clé a été activée avec succès",
"purchase_button_activate": "Activer",
@ -983,7 +1002,7 @@
"purchase_button_reminder": "Me le rappeler dans 30 jours",
"purchase_button_remove_key": "Supprimer la clé",
"purchase_button_select": "Sélectionner",
"purchase_failed_activation": "Erreur à l'activation. Veuillez vérifier votre e-mail pour obtenir la clé du produit correcte!",
"purchase_failed_activation": "Erreur à l'activation. Veuillez vérifier votre courriel pour obtenir la clé du produit correcte!",
"purchase_individual_description_1": "Pour un utilisateur",
"purchase_individual_description_2": "Statut de contributeur",
"purchase_individual_title": "Utilisateur",
@ -992,14 +1011,14 @@
"purchase_lifetime_description": "Achat à vie",
"purchase_option_title": "OPTIONS D'ACHAT",
"purchase_panel_info_1": "Développer Immich nécessite du temps et de l'énergie, et nous avons des ingénieurs qui travaillent à plein temps pour en faire le meilleur produit possible. Notre mission est de générer, pour les logiciels open source et les pratiques de travail éthique, une source de revenus suffisante pour les développeurs et de créer un écosystème respectueux de la vie privée grâce a des alternatives crédibles aux services cloud peu scrupuleux.",
"purchase_panel_info_2": "Étant donné que nous nous engageons à ne pas ajouter de murs de paiement, cet achat ne vous donnera pas de fonctionnalités supplémentaires dans Immich. Nous comptons sur des utilisateurs comme vous pour soutenir le développement continu d'Immich.",
"purchase_panel_info_2": "Étant donné que nous nous engageons à ne pas ajouter de fonctionnalités payantes, cet achat ne vous donnera pas de fonctionnalités supplémentaires dans Immich. Nous comptons sur des utilisateurs comme vous pour soutenir le développement continu d'Immich.",
"purchase_panel_title": "Soutenir le projet",
"purchase_per_server": "Par serveur",
"purchase_per_user": "Par utilisateur",
"purchase_remove_product_key": "Supprimer la clé du produit",
"purchase_remove_product_key_prompt": "Êtes-vous sûr de vouloir supprimer la clé du produit?",
"purchase_remove_server_product_key": "Supprimer la clé du produit pour le Serveur",
"purchase_remove_server_product_key_prompt": "Êtes-vous sûr de vouloir supprimer la clé du produit pour le serveur?",
"purchase_remove_server_product_key_prompt": "Êtes-vous sûr de vouloir supprimer la clé du produit pour le Serveur?",
"purchase_server_description_1": "Pour l'ensemble du serveur",
"purchase_server_description_2": "Statut de contributeur",
"purchase_server_title": "Serveur",
@ -1010,23 +1029,24 @@
"rating_description": "Afficher l'évaluation EXIF dans le panneau d'information",
"reaction_options": "Options de réaction",
"read_changelog": "Lire les changements",
"reassign": "Réaffecter",
"reassigned_assets_to_existing_person": "{count, plural, one {# média réaffecté} other {# médias réaffectés}} à {name, select, null {une personne existante} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# média réassigné} other {# médias réassignés}} à une nouvelle personne",
"reassign": "Réattribuer",
"reassigned_assets_to_existing_person": "{count, plural, one {# média réattribué} other {# médias réattribués}} à {name, select, null {une personne existante} other {{name}}}",
"reassigned_assets_to_new_person": "{count, plural, one {# média réattribué} other {# médias réattribués}} à une nouvelle personne",
"reassing_hint": "Attribuer ces médias à une personne existante",
"recent": "Récent",
"recent-albums": "Albums récents",
"recent_searches": "Recherches récentes",
"refresh": "Actualiser",
"refresh_encoded_videos": "Actualiser les vidéos encodées",
"refresh_faces": "Mettre à jour les visages",
"refresh_faces": "Actualiser les visages",
"refresh_metadata": "Actualiser les métadonnées",
"refresh_thumbnails": "Actualiser les vignettes",
"refreshed": "Actualisé",
"refreshes_every_file": "Actualise tous les fichiers (existants et nouveaux)",
"refreshing_encoded_video": "Actualisation de la vidéo encodée",
"refreshing_faces": "Actualiser les visages",
"refreshing_faces": "Actualisation des visages",
"refreshing_metadata": "Actualisation des métadonnées",
"regenerating_thumbnails": "Régénération des vignettes",
"regenerating_thumbnails": "Regénération des vignettes",
"remove": "Supprimer",
"remove_assets_album_confirmation": "Êtes-vous sûr de vouloir supprimer {count, plural, one {# média} other {# médias}} de l'album?",
"remove_assets_shared_link_confirmation": "Êtes-vous sûr de vouloir supprimer {count, plural, one {# média} other {# médias}} de ce lien partagé?",
@ -1036,6 +1056,7 @@
"remove_from_album": "Supprimer de l'album",
"remove_from_favorites": "Supprimer des favoris",
"remove_from_shared_link": "Supprimer des liens partagés",
"remove_url": "Supprimer l'URL",
"remove_user": "Supprimer l'utilisateur",
"removed_api_key": "Clé API supprimée: {name}",
"removed_from_archive": "Supprimé de l'archive",
@ -1116,7 +1137,7 @@
"send_welcome_email": "Envoyer un courriel de bienvenue",
"server_offline": "Serveur hors ligne",
"server_online": "Serveur en ligne",
"server_stats": "Statistiques Serveur",
"server_stats": "Statistiques du serveur",
"server_version": "Version du serveur",
"set": "Définir",
"set_as_album_cover": "Définir comme couverture d'album",
@ -1138,14 +1159,14 @@
"shared_with_partner": "Partagé avec {partner}",
"sharing": "Partage",
"sharing_enter_password": "Veuillez saisir le mot de passe pour visualiser cette page.",
"sharing_sidebar_description": "Afficher un lien vers Partage dans la barre latérale",
"sharing_sidebar_description": "Afficher un lien vers Partager dans la barre latérale",
"shift_to_permanent_delete": "appuyez sur ⇧ pour supprimer définitivement le média",
"show_album_options": "Afficher les options de l'album",
"show_albums": "Montrer les albums",
"show_all_people": "Montrer toutes les personnes",
"show_and_hide_people": "Afficher / Masquer les personnes",
"show_file_location": "Afficher l'emplacement du fichier",
"show_gallery": "Afficher la gallerie",
"show_gallery": "Afficher la galerie",
"show_hidden_people": "Afficher les personnes masquées",
"show_in_timeline": "Afficher dans la vue chronologique",
"show_in_timeline_setting_description": "Afficher les photos et vidéos de cet utilisateur dans votre vue chronologique",
@ -1197,19 +1218,19 @@
"storage_usage": "{used} sur {available} utilisé",
"submit": "Soumettre",
"suggestions": "Suggestions",
"sunrise_on_the_beach": "Aurore sur la plage",
"sunrise_on_the_beach": "Lever de soleil sur la plage",
"support": "Support",
"support_and_feedback": "Support & Retours",
"support_third_party_description": "Votre installation d'Immich est packagée via une application tierce. Si vous rencontrez des anomalies, elles peuvent venir de ce packaging tiers, merci de créer les anomalies avec ces tiers en premier lieu en utilisant les liens ci-dessous.",
"swap_merge_direction": "Inverser la direction de fusion",
"sync": "Synchroniser",
"tag": "Tag",
"tag_assets": "Taguer les médias",
"tag": "Étiquette",
"tag_assets": "Étiqueter les médias",
"tag_created": "Étiquette créée: {tag}",
"tag_feature_description": "Parcourir les photos et vidéos groupées par thèmes logiques",
"tag_not_found_question": "Vous ne trouvez pas une étiquette? <link>Créer une nouvelle étiquette.</link>",
"tag_updated": "Étiquette mise à jour: {tag}",
"tagged_assets": "Tag ajouté à {count, plural, one {# média} other {# médias}}",
"tagged_assets": "Étiquette ajoutée à {count, plural, one {# média} other {# médias}}",
"tags": "Étiquettes",
"template": "Modèle",
"theme": "Thème",
@ -1218,6 +1239,7 @@
"they_will_be_merged_together": "Elles seront fusionnées ensemble",
"third_party_resources": "Ressources tierces",
"time_based_memories": "Souvenirs basés sur la date",
"timeline": "Vue chronologique",
"timezone": "Fuseau horaire",
"to_archive": "Archiver",
"to_change_password": "Modifier le mot de passe",
@ -1227,11 +1249,12 @@
"to_trash": "Corbeille",
"toggle_settings": "Inverser les paramètres",
"toggle_theme": "Inverser le thème sombre",
"total": "Total",
"total_usage": "Utilisation globale",
"trash": "Corbeille",
"trash_all": "Tout supprimer",
"trash_count": "Corbeille {count, number}",
"trash_delete_asset": "Corbeille/Suppression d'un média",
"trash_delete_asset": "Mettre à la corbeille/Supprimer un média",
"trash_no_results_message": "Les photos et vidéos supprimées s'afficheront ici.",
"trashed_items_will_be_permanently_deleted_after": "Les éléments dans la corbeille seront supprimés définitivement après {days, plural, one {# jour} other {# jours}}.",
"type": "Type",
@ -1276,6 +1299,8 @@
"user_purchase_settings_description": "Gérer votre achat",
"user_role_set": "Définir {user} comme {role}",
"user_usage_detail": "Détail de l'utilisation des utilisateurs",
"user_usage_stats": "Statistiques d'utilisation du compte",
"user_usage_stats_description": "Voir les statistiques d'utilisation du compte",
"username": "Nom d'utilisateur",
"users": "Utilisateurs",
"utilities": "Utilitaires",
@ -1297,6 +1322,7 @@
"view_all_users": "Voir tous les utilisateurs",
"view_in_timeline": "Voir dans la vue chronologique",
"view_links": "Voir les liens",
"view_name": "Vue",
"view_next_asset": "Voir le média suivant",
"view_previous_asset": "Voir le média précédent",
"view_stack": "Afficher la pile",
@ -1305,7 +1331,7 @@
"warning": "Attention",
"week": "Semaine",
"welcome": "Bienvenue",
"welcome_to_immich": "Bienvenue sur immich",
"welcome_to_immich": "Bienvenue sur Immich",
"year": "Année",
"years_ago": "Il y a {years, plural, one {# an} other {# ans}}",
"yes": "Oui",

View file

@ -1,5 +1,5 @@
{
"about": "אודות",
"about": "רענן",
"account": "חשבון",
"account_settings": "הגדרות חשבון",
"acknowledge": "הבנתי",
@ -23,6 +23,7 @@
"add_to": "הוסף ל..",
"add_to_album": "הוסף לאלבום",
"add_to_shared_album": "הוסף לאלבום משותף",
"add_url": "הוספת קישור",
"added_to_archive": "נוסף לארכיון",
"added_to_favorites": "נוסף למועדפים",
"added_to_favorites_count": "{count, number} נוספו למועדפים",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "חפש תמונות באופן סמנטי באמצעות הטמעות של CLIP",
"machine_learning_smart_search_enabled": "אפשר חיפוש חכם",
"machine_learning_smart_search_enabled_description": "אם מושבת, תמונות לא יקודדו לחיפוש חכם.",
"machine_learning_url_description": "כתובת האתר של שרת למידת המכונה",
"machine_learning_url_description": "כתובת האתר של שרת למידת המכונה. אם ניתן יותר מכתוובת אחת, כל שרת ינסה בתורו עד אשר יענה בחיוב, בסדר התחלתי.",
"manage_concurrency": "נהל בו-זמניות",
"manage_log_settings": "נהל הגדרות רישום ביומן",
"map_dark_style": "עיצוב כהה",
@ -222,6 +223,8 @@
"send_welcome_email": "שלח דוא\"ל ברוכים הבאים",
"server_external_domain_settings": "דומיין חיצוני",
"server_external_domain_settings_description": "דומיין עבור קישורים משותפים ציבוריים, כולל http(s)://",
"server_public_users": "משתמשים ציבוריים",
"server_public_users_description": "כל המשתמשים (שם ודוא\"ל) מופיעים בעת הוספת משתמש לאלבומים משותפים. כאשר התכונה מושבתת, רשימת המשתמשים תהיה זמינה רק למשתמשים בעלי הרשאות מנהל.",
"server_settings": "הגדרות שרת",
"server_settings_description": "נהל הגדרות שרת",
"server_welcome_message": "הודעת פתיחה",
@ -421,7 +424,7 @@
"blurred_background": "רקע מטושטש",
"bugs_and_feature_requests": "באגים & בקשות לתכונות",
"build": "Build",
"build_image": "Build Image",
"build_image": "בניית גרסה",
"bulk_delete_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך למחוק בכמות גדולה {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה ישמור על הנכס הכי גדול של כל קבוצה וימחק לצמיתות את כל שאר הכפילויות. את/ה לא יכול/ה לבטל את הפעולה הזו!",
"bulk_keep_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך להשאיר {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה יפתור את כל הקבוצות הכפולות מבלי למחוק דבר.",
"bulk_trash_duplicates_confirmation": "האם את/ה בטוח/ה שברצונך להעביר לאשפה בכמות גדולה {count, plural, one {נכס # כפול} other {# נכסים כפולים}}? זה ישמור על הנכס הגדול ביותר של כל קבוצה ויעביר לאשפה את כל שאר הכפילויות.",
@ -465,6 +468,7 @@
"confirm": "אישור",
"confirm_admin_password": "אשר סיסמת מנהל",
"confirm_delete_shared_link": "האם את/ה בטוח/ה שברצונך למחוק את הקישור המשותף הזה?",
"confirm_keep_this_delete_others": "כל שאר הנכסים בערימה יימחקו למעט נכס זה. האם את/ה בטוח/ה שברצונך להמשיך?",
"confirm_password": "אשר סיסמה",
"contain": "מכיל",
"context": "הקשר",
@ -514,6 +518,7 @@
"delete_key": "מחק מפתח",
"delete_library": "מחק ספרייה",
"delete_link": "מחק קישור",
"delete_others": "מחק אחרים",
"delete_shared_link": "מחק קישור משותף",
"delete_tag": "מחק תג",
"delete_tag_confirmation_prompt": "האם את/ה בטוח/ה שברצונך למחוק תג {tagName}?",
@ -604,6 +609,7 @@
"failed_to_create_shared_link": "יצירת קישור משותף נכשלה",
"failed_to_edit_shared_link": "עריכת קישור משותף נכשלה",
"failed_to_get_people": "קבלת אנשים נכשלה",
"failed_to_keep_this_delete_others": "נכשל לשמור את הנכס הזה ולמחוק את הנכסים האחרים",
"failed_to_load_asset": "טעינת נכס נכשלה",
"failed_to_load_assets": "טעינת נכסים נכשלה",
"failed_to_load_people": "נכשל באחזור אנשים",
@ -787,6 +793,8 @@
"jobs": "משימות",
"keep": "שמור",
"keep_all": "שמור הכל",
"keep_this_delete_others": "שמור על זה, מחק אחרים",
"kept_this_deleted_others": "נכס זה נשמר ונמחקו {count, plural, one {נכס #} other {# נכסים}}",
"keyboard_shortcuts": "קיצורי מקלדת",
"language": "שפה",
"language_setting_description": "בחר/י את השפה המועדפת עליך",
@ -1218,6 +1226,7 @@
"they_will_be_merged_together": "הם יתמזגו יחד",
"third_party_resources": "משאבי צד שלישי",
"time_based_memories": "זכרונות מבוססי זמן",
"timeline": "ציר זמן",
"timezone": "אזור זמן",
"to_archive": "העבר לארכיון",
"to_change_password": "שנה סיסמה",
@ -1227,6 +1236,7 @@
"to_trash": "אשפה",
"toggle_settings": "החלף מצב הגדרות",
"toggle_theme": "החלף ערכת נושא כהה",
"total": "סה\"כ",
"total_usage": "שימוש כולל",
"trash": "אשפה",
"trash_all": "העבר הכל לאשפה",
@ -1276,6 +1286,8 @@
"user_purchase_settings_description": "נהל את הרכישה שלך",
"user_role_set": "הגדר את {user} בתור {role}",
"user_usage_detail": "פרטי השימוש של המשתמש",
"user_usage_stats": "סטטיסטיקות שימוש בחשבון",
"user_usage_stats_description": "הצג סטטיסטיקות שימוש בחשבון",
"username": "שם משתמש",
"users": "משתמשים",
"utilities": "כלים",
@ -1297,6 +1309,7 @@
"view_all_users": "הצג את כל המשתמשים",
"view_in_timeline": "ראה בציר הזמן",
"view_links": "הצג קישורים",
"view_name": "לצפות",
"view_next_asset": "הצג את הנכס הבא",
"view_previous_asset": "הצג את הנכס הקודם",
"view_stack": "הצג ערימה",

View file

@ -34,6 +34,11 @@
"authentication_settings_disable_all": "Jeste li sigurni da želite onemogućenit sve načine prijave? Prijava će biti potpuno onemogućena.",
"authentication_settings_reenable": "Za ponovno uključivanje upotrijebite <link>naredbu poslužitelja</link>.",
"background_task_job": "Pozadinski zadaci",
"backup_database": "Sigurnosna kopija baze podataka",
"backup_database_enable_description": "Omogućite sigurnosne kopije baze podataka",
"backup_keep_last_amount": "Količina prethodnih sigurnosnih kopija za čuvanje",
"backup_settings": "Postavke sigurnosne kopije",
"backup_settings_description": "Upravljanje postavkama sigurnosne kopije baze podataka",
"check_all": "Provjeri sve",
"cleared_jobs": "Izbrisani poslovi za: {job}",
"config_set_by_file": "Konfiguracija je trenutno postavljena konfiguracijskom datotekom",
@ -43,6 +48,9 @@
"confirm_reprocess_all_faces": "Jeste li sigurni da želite ponovno obraditi sva lica? Ovo će također obrisati imenovane osobe.",
"confirm_user_password_reset": "Jeste li sigurni da želite poništiti lozinku korisnika {user}?",
"create_job": "Izradi zadatak",
"cron_expression": "Cron izraz (expression)",
"cron_expression_description": "Postavite interval skeniranja koristeći cron format. Za više informacija pogledajte npr. <link>Crontab Guru</link>",
"cron_expression_presets": "Cron unaprijed postavljene postavke izraza",
"disable_login": "Onemogući prijavu",
"duplicate_detection_job_description": "Pokrenite strojno učenje na materijalima kako biste otkrili slične slike. Oslanja se na Pametno Pretraživanje",
"exclusion_pattern_description": "Uzorci izuzimanja omogućuju vam da zanemarite datoteke i mape prilikom skeniranja svoje biblioteke. Ovo je korisno ako imate mape koje sadrže datoteke koje ne želite uvesti, kao što su RAW datoteke.",
@ -62,9 +70,15 @@
"image_prefer_wide_gamut_setting_description": "Koristite Display P3 za sličice. Ovo bolje čuva živost slika sa širokim prostorima boja, ali slike mogu izgledati drugačije na starim uređajima sa starom verzijom preglednika. sRGB slike čuvaju se kao sRGB kako bi se izbjegle promjene boja.",
"image_preview_description": "Slika srednje veličine s ogoljenim metapodacima, koristi se prilikom pregledavanja jednog sredstva i za strojno učenje",
"image_preview_quality_description": "Kvaliteta pregleda od 1-100. Više je bolje, ali proizvodi veće datoteke i može smanjiti odziv aplikacije. Postavljanje niske vrijednosti može utjecati na kvalitetu strojnog učenja.",
"image_preview_title": "Postavke pregleda",
"image_quality": "Kvaliteta",
"image_resolution": "Rezolucija",
"image_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.",
"image_settings": "Postavke slike",
"image_settings_description": "Upravljajte kvalitetom i rezolucijom generiranih slika",
"image_thumbnail_description": "Mala minijatura s ogoljenim metapodacima, koristi se pri gledanju grupa fotografija poput glavne vremenske trake",
"image_thumbnail_quality_description": "Kvaliteta sličica od 1-100. Više je bolje, ali proizvodi veće datoteke i može smanjiti odziv aplikacije.",
"image_thumbnail_title": "Postavke sličica",
"job_concurrency": "{job} istovremenost",
"job_created": "Zadatak je kreiran",
"job_not_concurrency_safe": "Ovaj posao nije siguran za istovremenost.",
@ -203,10 +217,13 @@
"require_password_change_on_login": "Zahtijevajte od korisnika promjenu lozinke pri prvoj prijavi",
"reset_settings_to_default": "Vrati postavke na zadane",
"reset_settings_to_recent_saved": "Resetirajte postavke na nedavno spremljene postavke",
"scanning_library": "Skeniranje biblioteke",
"search_jobs": "Traži zadatke…",
"send_welcome_email": "Pošaljite email dobrodošlice",
"server_external_domain_settings": "Vanjska domena",
"server_external_domain_settings_description": "Domena za javno dijeljene linkove, uključujući http(s)://",
"server_public_users": "Javni korisnici",
"server_public_users_description": "Svi korisnici (ime i e-pošta) navedeni su prilikom dodavanja korisnika u dijeljene albume. Kada je onemogućeno, popis korisnika bit će dostupan samo korisnicima administratora.",
"server_settings": "Postavke servera",
"server_settings_description": "Upravljanje postavkama servera",
"server_welcome_message": "Poruka dobrodošlice",
@ -404,6 +421,7 @@
"birthdate_saved": "Datum rođenja uspješno spremljen",
"birthdate_set_description": "Datum rođenja se koristi za izračunavanje godina ove osobe u trenutku fotografije.",
"blurred_background": "Zamućena pozadina",
"bugs_and_feature_requests": "Bugovi i zahtjevi za značajke",
"build": "Sagradi (Build)",
"build_image": "Sagradi (Build) Image",
"bulk_delete_duplicates_confirmation": "Jeste li sigurni da želite skupno izbrisati {count, plural, one {# duplicate asset} other {# duplicate asset}}? Ovo će zadržati najveće sredstvo svake grupe i trajno izbrisati sve druge duplikate. Ne možete poništiti ovu radnju!",
@ -449,6 +467,7 @@
"confirm": "Potvrdi",
"confirm_admin_password": "Potvrdite lozinku administratora",
"confirm_delete_shared_link": "Jeste li sigurni da želite izbrisati ovu zajedničku vezu?",
"confirm_keep_this_delete_others": "Sva druga sredstva u nizu bit će izbrisana osim ovog sredstva. Jeste li sigurni da želite nastaviti?",
"confirm_password": "Potvrdite lozinku",
"contain": "Sadrži",
"context": "Kontekst",
@ -498,11 +517,13 @@
"delete_key": "Ključ za brisanje",
"delete_library": "Izbriši knjižnicu",
"delete_link": "Izbriši poveznicu",
"delete_others": "Izbriši druge",
"delete_shared_link": "Izbriši dijeljenu poveznicu",
"delete_tag": "Izbriši oznaku",
"delete_tag_confirmation_prompt": "Jeste li sigurni da želite izbrisati oznaku {tagName}?",
"delete_user": "Izbriši korisnika",
"deleted_shared_link": "Izbrisana dijeljena poveznica",
"deletes_missing_assets": "Briše sredstva koja nedostaju s diska",
"description": "Opis",
"details": "Detalji",
"direction": "Smjer",
@ -587,6 +608,7 @@
"failed_to_create_shared_link": "Stvaranje dijeljene veze nije uspjelo",
"failed_to_edit_shared_link": "Nije uspjelo uređivanje dijeljene poveznice",
"failed_to_get_people": "Dohvaćanje ljudi nije uspjelo",
"failed_to_keep_this_delete_others": "Zadržavanje ovog sredstva i brisanje ostalih sredstava nije uspjelo",
"failed_to_load_asset": "Učitavanje sredstva nije uspjelo",
"failed_to_load_assets": "Učitavanje sredstava nije uspjelo",
"failed_to_load_people": "Učitavanje ljudi nije uspjelo",
@ -654,6 +676,7 @@
"unable_to_remove_album_users": "Nije moguće ukloniti korisnike iz albuma",
"unable_to_remove_api_key": "Nije moguće ukloniti API ključ",
"unable_to_remove_assets_from_shared_link": "Nije moguće ukloniti sredstva iz dijeljene poveznice",
"unable_to_remove_deleted_assets": "Nije moguće ukloniti izvanmrežne datoteke",
"unable_to_remove_library": "Nije moguće ukloniti biblioteku",
"unable_to_remove_partner": "Nije moguće ukloniti partnera",
"unable_to_remove_reaction": "Nije moguće ukloniti reakciju",
@ -769,6 +792,8 @@
"jobs": "Poslovi",
"keep": "Zadrži",
"keep_all": "Zadrži Sve",
"keep_this_delete_others": "Zadrži ovo, izbriši ostale",
"kept_this_deleted_others": "Zadržana je ova datoteka i izbrisano {count, plural, one {# datoteka} other {# datoteka}}",
"keyboard_shortcuts": "Prečaci tipkovnice",
"language": "Jezik",
"language_setting_description": "Odaberite željeni jezik",
@ -801,6 +826,7 @@
"look": "Izgled",
"loop_videos": "Ponavljajte videozapise",
"loop_videos_description": "Omogućite automatsko ponavljanje videozapisa u pregledniku detalja.",
"main_branch_warning": "Koristite razvojnu verziju; strogo preporučamo korištenje izdane verzije!",
"make": "Proizvođač",
"manage_shared_links": "Upravljanje dijeljenim vezama",
"manage_sharing_with_partners": "Upravljajte dijeljenjem s partnerima",
@ -870,6 +896,7 @@
"notifications": "Obavijesti",
"notifications_setting_description": "Upravljanje obavijestima",
"oauth": "OAuth",
"official_immich_resources": "Službeni Immich resursi",
"offline": "Izvan mreže",
"offline_paths": "Izvanmrežne putanje",
"offline_paths_description": "Ovi rezultati mogu biti posljedica ručnog brisanja datoteka koje nisu dio vanjske biblioteke.",
@ -998,11 +1025,13 @@
"recent_searches": "Nedavne pretrage",
"refresh": "Osvježi",
"refresh_encoded_videos": "Osvježite kodirane videozapise",
"refresh_faces": "Osvježite lica",
"refresh_metadata": "Osvježi metapodatke",
"refresh_thumbnails": "Osvježi sličice",
"refreshed": "Osvježeno",
"refreshes_every_file": "Osvježava svaku datoteku",
"refreshing_encoded_video": "Osvježavanje kodiranog videa",
"refreshing_faces": "Osvježavanje lica",
"refreshing_metadata": "Osvježavanje metapodataka",
"regenerating_thumbnails": "Obnavljanje sličica",
"remove": "Ukloni",
@ -1010,7 +1039,7 @@
"remove_assets_shared_link_confirmation": "Jeste li sigurni da želite ukloniti {count, plural, one {# datoteku} other {# datoteke}} iz ove dijeljene veze?",
"remove_assets_title": "Ukloniti datoteke?",
"remove_custom_date_range": "Ukloni prilagođeni datumski raspon",
"remove_deleted_assets": "",
"remove_deleted_assets": "Ukloni izbrisana sredstva",
"remove_from_album": "Ukloni iz albuma",
"remove_from_favorites": "Ukloni iz favorita",
"remove_from_shared_link": "Ukloni iz dijeljene poveznice",
@ -1068,13 +1097,15 @@
"search_people": "Traži ljude",
"search_places": "Traži mjesta",
"search_settings": "Postavke pretraživanja",
"search_state": "",
"search_state": "Država pretraživanja...",
"search_tags": "Traži oznake...",
"search_timezone": "Pretraži vremenske zone",
"search_type": "",
"search_your_photos": "",
"searching_locales": "",
"second": "",
"select_album_cover": "",
"search_type": "Vrsta pretraživanja",
"search_your_photos": "Pretražite svoje fotografije",
"searching_locales": "Traženje lokaliteta...",
"second": "Drugi",
"see_all_people": "Vidi sve ljude",
"select_album_cover": "Odaberite omot albuma",
"select_all": "Odaberi sve",
"select_all_duplicates": "Odaberi sve duplikate",
"select_avatar_color": "",
@ -1194,6 +1225,8 @@
"user": "",
"user_id": "",
"user_usage_detail": "",
"user_usage_stats": "Statistika korištenja računa",
"user_usage_stats_description": "Pregledajte statistiku korištenja računa",
"username": "",
"users": "",
"utilities": "",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Üdvözlő email küldése",
"server_external_domain_settings": "Külső domain",
"server_external_domain_settings_description": "Nyilvánosan megosztott linkek domainje (http(s)://-sel)",
"server_public_users": "Nyilvános felhasználók",
"server_public_users_description": "Az összes felhasználó (név és email) ki van írva, amikor egy felhasználót adsz hozzá egy megosztott albumhoz. Amikor le van tiltva, a felhasználólista csak adminok számára lesz elérhető.",
"server_settings": "Szerver Beállítások",
"server_settings_description": "Szerver beállítások kezelése",
"server_welcome_message": "Üdvözlő üzenet",
@ -465,6 +467,7 @@
"confirm": "Jóváhagy",
"confirm_admin_password": "Admin Jelszó Újból",
"confirm_delete_shared_link": "Biztosan törölni szeretnéd ezt a megosztott linket?",
"confirm_keep_this_delete_others": "Minden más elem a készletben törlésre kerül, kivéve ezt az elemet. Biztosan folytatni szeretnéd?",
"confirm_password": "Jelszó megerősítése",
"contain": "Belül",
"context": "Kontextus",
@ -514,6 +517,7 @@
"delete_key": "Kulcs törlése",
"delete_library": "Képtár Törlése",
"delete_link": "Link törlése",
"delete_others": "Többi törlése",
"delete_shared_link": "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?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Megosztott link készítése sikertelen",
"failed_to_edit_shared_link": "Megosztott link módosítása sikertelen",
"failed_to_get_people": "Személyek lekérdezése sikertelen",
"failed_to_keep_this_delete_others": "Nem sikerült megtartani ezt az elemet, és a többi elemet törölni",
"failed_to_load_asset": "Elem betöltése sikertelen",
"failed_to_load_assets": "Elemek betöltése sikertelen",
"failed_to_load_people": "Személyek betöltése sikertelen",
@ -787,6 +792,8 @@
"jobs": "Feladatok",
"keep": "Megtart",
"keep_all": "Összeset Megtart",
"keep_this_delete_others": "Ennek a meghagyása, a többi törlése",
"kept_this_deleted_others": "Ennek az elemnek és a törölteknek meghagyása {count, plural, one {# asset} other {# assets}}",
"keyboard_shortcuts": "Billentyűparancsok",
"language": "Nyelv",
"language_setting_description": "Válaszd ki preferált nyelvet",
@ -1218,6 +1225,7 @@
"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",
"timeline": "Idővonal",
"timezone": "Időzóna",
"to_archive": "Archiválás",
"to_change_password": "Jelszó megváltoztatása",
@ -1227,6 +1235,7 @@
"to_trash": "Lomtárba helyezés",
"toggle_settings": "Beállítások átállítása",
"toggle_theme": "Sötét téma átváltása",
"total": "Összesen",
"total_usage": "Összesen használatban",
"trash": "Lomtár",
"trash_all": "Mindet lomtárba",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Vásárlás kezelése",
"user_role_set": "{user} felhasználónak {role} jogkör biztosítása",
"user_usage_detail": "Felhasználó használati adatai",
"user_usage_stats": "Fiók használati statisztikái",
"user_usage_stats_description": "Fiók használati statisztikáinak megtekintése",
"username": "Felhasználónév",
"users": "Felhasználók",
"utilities": "Segédeszközök",
@ -1297,6 +1308,7 @@
"view_all_users": "Minden Felhasználó Megtekintése",
"view_in_timeline": "Megtekintés az idővonalon",
"view_links": "Linkek megtekintése",
"view_name": "Megtekintés",
"view_next_asset": "Következő elem megtekintése",
"view_previous_asset": "Előző elem megtekintése",
"view_stack": "Csoport Megtekintése",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Kirim surel selamat datang",
"server_external_domain_settings": "Domain eksternal",
"server_external_domain_settings_description": "Domain untuk tautan terbagi publik, termasuk http(s)://",
"server_public_users": "Pengguna Publik",
"server_public_users_description": "Semua pengguna (nama dan email) didaftarkan ketika menambahkan pengguna ke album terbagi. Ketika dinonaktifkan, daftar pengguna hanya akan tersedia kepada pengguna admin.",
"server_settings": "Pengaturan Server",
"server_settings_description": "Kelola pengaturan server",
"server_welcome_message": "Pesan selamat datang",
@ -465,6 +467,7 @@
"confirm": "Konfirmasi",
"confirm_admin_password": "Konfirmasi Kata Sandi Admin",
"confirm_delete_shared_link": "Apakah Anda yakin ingin menghapus tautan terbagi ini?",
"confirm_keep_this_delete_others": "Semua aset lain di dalam stack akan dihapus kecuali aset ini. Anda yakin untuk melanjutkan?",
"confirm_password": "Konfirmasi kata sandi",
"contain": "Berisi",
"context": "Konteks",
@ -514,6 +517,7 @@
"delete_key": "Hapus kunci",
"delete_library": "Hapus Pustaka",
"delete_link": "Hapus tautan",
"delete_others": "Hapus lainnya",
"delete_shared_link": "Hapus tautan terbagi",
"delete_tag": "Hapus tag",
"delete_tag_confirmation_prompt": "Apakah Anda yakin ingin menghapus label tag {tagName}?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Gagal membuat tautan terbagi",
"failed_to_edit_shared_link": "Gagal menyunting tautan terbagi",
"failed_to_get_people": "Gagal mendapatkan orang",
"failed_to_keep_this_delete_others": "Gagal mempertahankan aset ini dan hapus aset-aset lainnya",
"failed_to_load_asset": "Gagal membuka aset",
"failed_to_load_assets": "Gagal membuka aset-aset",
"failed_to_load_people": "Gagal mengunggah orang",
@ -787,6 +792,8 @@
"jobs": "Tugas",
"keep": "Simpan",
"keep_all": "Simpan Semua",
"keep_this_delete_others": "Pertahankan ini, hapus lainnya",
"kept_this_deleted_others": "Aset ini dipertahankan dan {count, plural, one {# asset} other {# assets}} dihapus",
"keyboard_shortcuts": "Pintasan papan ketik",
"language": "Bahasa",
"language_setting_description": "Pilih bahasa Anda yang disukai",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Mereka akan digabungkan bersama",
"third_party_resources": "Sumber Daya Pihak Ketiga",
"time_based_memories": "Kenangan berbasis waktu",
"timeline": "Lini masa",
"timezone": "Zona waktu",
"to_archive": "Arsipkan",
"to_change_password": "Ubah kata sandi",
@ -1227,6 +1235,7 @@
"to_trash": "Sampah",
"toggle_settings": "Saklar pengaturan",
"toggle_theme": "Beralih tema gelap",
"total": "Jumlah",
"total_usage": "Jumlah penggunaan",
"trash": "Sampah",
"trash_all": "Buang Semua",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Atur pembelian kamu",
"user_role_set": "Tetapkan {user} sebagai {role}",
"user_usage_detail": "Detail penggunaan pengguna",
"user_usage_stats": "Statistik penggunaan akun",
"user_usage_stats_description": "Tampilkan statistik penggunaan akun",
"username": "Nama pengguna",
"users": "Pengguna",
"utilities": "Peralatan",
@ -1297,6 +1308,7 @@
"view_all_users": "Tampilkan semua pengguna",
"view_in_timeline": "Lihat di timeline",
"view_links": "Tampilkan tautan",
"view_name": "Tampilkan",
"view_next_asset": "Tampilkan aset berikutnya",
"view_previous_asset": "Tampilkan aset sebelumnya",
"view_stack": "Tampilkan Tumpukan",

View file

@ -23,6 +23,7 @@
"add_to": "Aggiungi a...",
"add_to_album": "Aggiungi all'album",
"add_to_shared_album": "Aggiungi all'album condiviso",
"add_url": "Aggiungi URL",
"added_to_archive": "Aggiunto all'archivio",
"added_to_favorites": "Aggiunto ai preferiti",
"added_to_favorites_count": "Aggiunti {count, number} ai preferiti",
@ -222,6 +223,8 @@
"send_welcome_email": "Invia email di benvenuto",
"server_external_domain_settings": "Dominio esterno",
"server_external_domain_settings_description": "Dominio per link condivisi pubblicamente, incluso http(s)://",
"server_public_users": "Utenti Pubblici",
"server_public_users_description": "Tutti gli utenti (nome ed e-mail) sono elencati quando si aggiunge un utente agli album condivisi. Quando disabilitato, l'elenco degli utenti sarà disponibile solo per gli utenti amministratori.",
"server_settings": "Impostazioni Server",
"server_settings_description": "Gestisci le impostazioni del server",
"server_welcome_message": "Messaggio di benvenuto",
@ -239,7 +242,7 @@
"storage_template_migration_description": "Applica il <link>{template}</link> attuale agli asset caricati in precedenza",
"storage_template_migration_info": "Le modifiche al modello di archiviazione verranno applicate solo agli asset nuovi. Per applicare le modifiche retroattivamente esegui <link>{job}</link>.",
"storage_template_migration_job": "Processo Migrazione Modello di Archiviazione",
"storage_template_more_details": "Per più informazioni riguardo a questa funzionalità, consulta il <template-link>Modello Archiviazione</template-link> e le sue <implications-link>conseguenze</implications-link>",
"storage_template_more_details": "Per maggiori informazioni riguardo a questa funzionalità, consulta il <template-link>Modello Archiviazione</template-link> e le sue <implications-link>conseguenze</implications-link>",
"storage_template_onboarding_description": "Quando attivata, questa funzionalità organizzerà automaticamente i file utilizzando il modello di archiviazione definito dall'utente. Per ragioni di stabilità, questa funzionalità è disabilitata per impostazione predefinita. Per più informazioni, consulta <link>la documentazione</link>.",
"storage_template_path_length": "Limite approssimativo lunghezza percorso: <b>{length, number}</b>/{limit, number}",
"storage_template_settings": "Modello Archiviazione",
@ -247,6 +250,9 @@
"storage_template_user_label": "<code>{label}</code> è l'etichetta di archiviazione dell'utente",
"system_settings": "Impostazioni di sistema",
"tag_cleanup_job": "Pulisci Tag",
"template_email_preview": "Anteprima",
"template_email_settings": "Template Email",
"template_settings": "Templates Notifiche",
"theme_custom_css_settings": "CSS Personalizzato",
"theme_custom_css_settings_description": "I Cascading Style Sheets (CSS) permettono di personalizzare l'interfaccia di Immich.",
"theme_settings": "Impostazioni Tema",
@ -465,6 +471,7 @@
"confirm": "Conferma",
"confirm_admin_password": "Conferma password amministratore",
"confirm_delete_shared_link": "Sei sicuro di voler eliminare questo link condiviso?",
"confirm_keep_this_delete_others": "Tutti gli altri asset nello stack saranno eliminati, eccetto questo asset. Vuoi continuare?",
"confirm_password": "Conferma password",
"contain": "Adatta",
"context": "Contesto",
@ -514,6 +521,7 @@
"delete_key": "Elimina chiave",
"delete_library": "Elimina Libreria",
"delete_link": "Elimina link",
"delete_others": "Elimina altri",
"delete_shared_link": "Elimina link condiviso",
"delete_tag": "Elimina tag",
"delete_tag_confirmation_prompt": "Sei sicuro di voler cancellare il tag {tagName}?",
@ -604,6 +612,7 @@
"failed_to_create_shared_link": "Creazione del link condivisibile non riuscita",
"failed_to_edit_shared_link": "Errore durante la modifica del link condivisibile",
"failed_to_get_people": "Impossibile ottenere le persone",
"failed_to_keep_this_delete_others": "Impossibile conservare questa risorsa ed eliminare le altre risorse",
"failed_to_load_asset": "Errore durante il caricamento della risorsa",
"failed_to_load_assets": "Errore durante il caricamento delle risorse",
"failed_to_load_people": "Caricamento delle persone non riuscito",
@ -787,6 +796,7 @@
"jobs": "Processi",
"keep": "Mantieni",
"keep_all": "Tieni tutto",
"keep_this_delete_others": "Tieni questo, elimina gli altri",
"keyboard_shortcuts": "Scorciatoie da tastiera",
"language": "Lingua",
"language_setting_description": "Seleziona la tua lingua predefinita",
@ -944,18 +954,18 @@
"permanently_delete": "Elimina definitivamente",
"permanently_delete_assets_count": "Cancella definitivamente {count, plural, one {l'asset} other {gli assets}}",
"permanently_delete_assets_prompt": "Sei sicuro di voler cancellare definitivamente {count, plural, one {questo asset?} other {<b>#</b> assets?}} Questa operazione {count, plural, one {lo cancellerà dal suo} other {li cancellerà dai loro}} album.",
"permanently_deleted_asset": "Elimina asset definitivamente",
"permanently_deleted_asset": "Asset eliminato definitivamente",
"permanently_deleted_assets_count": "Cancellati {count, plural, one {# asset} other {# assets}} definitivamente",
"person": "Persona",
"person_hidden": "{name}{hidden, select, true { (nascosto)} other {}}",
"photo_shared_all_users": "Sembra che tu abbia condiviso le foto con tutti gli utenti (oppure non hai utenti con cui condividerle).",
"photo_shared_all_users": "Sembra che tu abbia condiviso le foto con tutti gli utenti, oppure che non ci siano utenti con i quali condividerle.",
"photos": "Foto",
"photos_and_videos": "Foto & Video",
"photos_count": "{count, plural, one {{count, number} Foto} other {{count, number} Foto}}",
"photos_from_previous_years": "Foto degli anni scorsi",
"pick_a_location": "Scegli una posizione",
"place": "Posizione",
"places": "Location",
"places": "Luoghi",
"play": "Avvia",
"play_memories": "Avvia ricordi",
"play_motion_photo": "Avvia Foto in movimento",
@ -1276,6 +1286,8 @@
"user_purchase_settings_description": "Gestisci il tuo acquisto",
"user_role_set": "Imposta {user} come {role}",
"user_usage_detail": "Dettagli utilizzo utente",
"user_usage_stats": "Statistiche d'uso",
"user_usage_stats_description": "Consulta le statistiche d'uso dell'account",
"username": "Nome utente",
"users": "Utenti",
"utilities": "Utilità",

View file

@ -1,5 +1,5 @@
{
"about": "Tentang",
"about": "Kemaskini",
"account": "Akaun",
"account_settings": "Tetapan Akaun",
"acknowledge": "Akui",
@ -34,6 +34,11 @@
"authentication_settings_disable_all": "Adakah anda pasti mahu melumpuhkan semua kaedah log masuk? Log masuk akan dilumpuhkan sepenuhnya.",
"authentication_settings_reenable": "Untuk menghidupkan semula, guna <link>Arahan Pelayan</link>.",
"background_task_job": "Tugas Latar Belakang",
"backup_database": "Sandar pangkalan data",
"backup_database_enable_description": "Aktifkan sandaran pangkalan data",
"backup_keep_last_amount": "Jumlah sandaran sebelumnya yang hendak disimpan",
"backup_settings": "Tetapan Sandaran",
"backup_settings_description": "Urus tetapan sandaran pangkalan data",
"check_all": "Tanda Semua",
"cleared_jobs": "Kerja telah dibersihkan untuk: {job}",
"config_set_by_file": "Konfigurasi kini ditetapkan oleh fail konfigurasi",
@ -43,6 +48,8 @@
"confirm_reprocess_all_faces": "Adakah anda pasti mahu memproses semula semua wajah? Ini juga akan membersihkan orang bernama.",
"confirm_user_password_reset": "Adakah anda pasti mahu menetapkan semula kata laluan {user}?",
"create_job": "Cipta tugas",
"cron_expression": "Ungkapan cron",
"cron_expression_presets": "Pratetap-pratetap ungkapan Cron",
"disable_login": "Lumpuhkan fungsi log masuk",
"duplicate_detection_job_description": "Jalankan pembelajaran mesin pada aset untuk mengesan imej yang serupa. Bergantung pada Carian Pintar",
"exclusion_pattern_description": "Corak pengecualian membolehkan anda mengabaikan fail dan folder semasa mengimbas pustaka anda. Ini berguna jika anda mempunyai folder yang mengandungi fail yang anda tidak mahu import, seperti fail RAW.",
@ -114,6 +121,19 @@
"machine_learning_max_recognition_distance_description": "Jarak maksimum antara dua muka untuk dianggap sebagai orang yang sama, antara 0-2. Menurunkan ini boleh menghalang pelabelan dua orang sebagai orang yang sama, manakala menaikkannya boleh menghalang pelabelan orang yang sama sebagai dua orang yang berbeza. Ambil perhatian bahawa adalah lebih mudah untuk menggabungkan dua orang daripada membelah satu orang kepada dua, jadi silap pada bahagian ambang yang lebih rendah apabila boleh.",
"machine_learning_min_detection_score": "Skor pengesanan minimum",
"machine_learning_min_detection_score_description": "Skor keyakinan minimum untuk wajah dikesan dari 0-1. Nilai yang lebih rendah akan mengesan lebih banyak muka tetapi mungkin menghasilkan positif palsu.",
"machine_learning_min_recognized_faces": "Minimum mengenali wajah"
}
"machine_learning_min_recognized_faces": "Minimum mengenali wajah",
"machine_learning_min_recognized_faces_description": "Bilangan minima wajah yang dikenali untuk seseorang dicipta. Peningkatan ini menjadikan Pengecaman Wajah lebih tepat atas kos meningkatkan peluang wajah tidak diberikan kepada seseorang.",
"machine_learning_settings": "Tetapan Pembelajaran Mesin",
"map_dark_style": "Tema gelap",
"map_enable_description": "Aktifkan ciri peta",
"map_gps_settings": "Tetapan Peta & GPS",
"map_light_style": "Tema terang",
"map_settings": "Peta",
"map_settings_description": "Urus tetapan peta",
"notification_email_from_address": "Dari alamat",
"notification_email_from_address_description": "Alamat e-mel penghantar, sebagai contoh: \"Immich Photo Server <noreply@example.com>\"",
"notification_settings": "Tetapan Pemberitahuan"
},
"user_usage_stats": "Statistik penggunaan akaun",
"user_usage_stats_description": "Papar statistik penggunaan akaun"
}

View file

@ -1,5 +1,5 @@
{
"about": "Om",
"about": "Oppdater",
"account": "Konto",
"account_settings": "Konto Innstillinger",
"acknowledge": "Bekreft",
@ -33,6 +33,11 @@
"authentication_settings_disable_all": "Er du sikker på at du ønsker å deaktivere alle innloggingsmetoder? Innlogging vil bli fullstendig deaktivert.",
"authentication_settings_reenable": "For å aktivere på nytt, bruk en <link>Server Command</link>.",
"background_task_job": "Bakgrunnsjobber",
"backup_database": "Backupdatabase",
"backup_database_enable_description": "Aktiver databasebackup",
"backup_keep_last_amount": "Antall backuper å beholde",
"backup_settings": "Backupinnstillinger",
"backup_settings_description": "Håndter innstillinger for databasebackup",
"check_all": "Merk Alle",
"cleared_jobs": "Ryddet opp jobber for: {job}",
"config_set_by_file": "Konfigurasjonen er for øyeblikket satt av en konfigurasjonsfil",
@ -41,6 +46,7 @@
"confirm_email_below": "For å bekrefte, skriv inn \"{email}\" nedenfor",
"confirm_reprocess_all_faces": "Er du sikker på at du vil behandle alle ansikter på nytt? Dette vil også fjerne navngitte personer.",
"confirm_user_password_reset": "Er du sikker på at du vil tilbakestille passordet til {user}?",
"create_job": "Lag jobb",
"disable_login": "Deaktiver innlogging",
"duplicate_detection_job_description": "Kjør maskinlæring på filer for å oppdage lignende bilder. Krever bruk av Smart Search",
"exclusion_pattern_description": "Ekskluderingsmønstre lar deg ignorere filer og mapper når du skanner biblioteket ditt. Dette er nyttig hvis du har mapper som inneholder filer du ikke vil importere, for eksempel RAW-filer.",
@ -52,12 +58,15 @@
"failed_job_command": "Kommandoen {command} feilet for jobben: {job}",
"force_delete_user_warning": "ADVARSEL: Dette vil umiddelbart fjerne brukeren og alle eiendeler. Dette kan ikke angres, og filene kan ikke gjenopprettes.",
"forcing_refresh_library_files": "Tvinger oppdatering av alle bibliotekfiler",
"image_format": "Format",
"image_format_description": "WebP gir mindre filer enn JPEG, men er tregere å lage.",
"image_prefer_embedded_preview": "Foretrekk innebygd forhåndsvisning",
"image_prefer_embedded_preview_setting_description": "Bruk innebygd forhåndsvisning i RAW-bilder som inndata til bildebehandling når tilgjengelig. Dette kan gi mer nøyaktige farger for noen bilder, men kvaliteten er avhengig av kamera og bildet kan ha komprimeringsartefakter.",
"image_prefer_wide_gamut": "Foretrekk bredt fargespekter",
"image_prefer_wide_gamut_setting_description": "Bruk Display P3 for miniatyrbilder. Dette bevarer glød bedre i bilder med bredt fargerom, men det kan hende bilder ser annerledes ut på gamle enheter med en gammel nettleserversjon. sRBG bilder beholdes som sRGB for å unngå fargeforskyvninger.",
"image_preview_title": "Forhåndsvisningsinnstillinger",
"image_quality": "Kvalitet",
"image_resolution": "Oppløsning",
"image_settings": "Bildeinnstilliinger",
"image_settings_description": "Administrer kvalitet og oppløsning på genererte bilder",
"job_concurrency": "{job} samtidighet",

View file

@ -222,11 +222,13 @@
"send_welcome_email": "Stuur een welkomstmail",
"server_external_domain_settings": "Extern domein",
"server_external_domain_settings_description": "Domein voor openbaar gedeelde links, inclusief http(s)://",
"server_public_users": "Openbare gebruikerslijst",
"server_public_users_description": "Alle gebruikers (met naam en e-mailadres) worden weergegeven wanneer een gebruiker wordt toegevoegd aan gedeelde albums. Wanneer uitgeschakeld, is de gebruikerslijst alleen beschikbaar voor beheerders.",
"server_settings": "Serverinstellingen",
"server_settings_description": "Beheer serverinstellingen",
"server_welcome_message": "Welkomstbericht",
"server_welcome_message_description": "Een bericht dat op de inlogpagina wordt weergegeven.",
"sidecar_job": "Sidecar metadata",
"sidecar_job": "Sidecar metagegevens",
"sidecar_job_description": "Zoek of synchroniseer sidecar metadata van het bestandssysteem",
"slideshow_duration_description": "Aantal seconden dat iedere afbeelding wordt getoond",
"smart_search_job_description": "Voer machine learning uit op assets om te gebruiken voor slim zoeken",
@ -247,6 +249,16 @@
"storage_template_user_label": "<code>{label}</code> is het opslaglabel van de gebruiker",
"system_settings": "Systeeminstellingen",
"tag_cleanup_job": "Tag opschoning",
"template_email_settings": "Email",
"template_email_settings_description": "Beheer aangepaste email melding sjablonen",
"template_email_preview": "Voorbeeld",
"template_email_welcome": "Welkom email sjabloon",
"template_email_invite_album": "Uitgenodigd in album sjabloon",
"template_email_update_album": "Update in album sjabloon",
"template_settings": "Melding sjablonen",
"template_settings_description": "Beheer aangepast sjablonen voor meldingen.",
"template_email_if_empty": "Wanneer het sjabloon leeg is, wordt de standaard mail gebruikt.",
"template_email_available_tags": "Je kan de volgende tags gebruiken in een template: {tags}",
"theme_custom_css_settings": "Aangepaste CSS",
"theme_custom_css_settings_description": "Met Cascading Style Sheets kan het ontwerp van Immich worden aangepast.",
"theme_settings": "Thema instellingen",
@ -292,7 +304,7 @@
"transcoding_preferred_hardware_device_description": "Geldt alleen voor VAAPI en QSV. Stelt de dri node in die wordt gebruikt voor hardwaretranscodering.",
"transcoding_preset_preset": "Preset (-preset)",
"transcoding_preset_preset_description": "Compressiesnelheid. Langzamere presets produceren kleinere bestanden en verhogen de kwaliteit bij het targeten van een bepaalde bitrate. VP9 negeert snelheden boven 'faster'.",
"transcoding_reference_frames": "Reference frames",
"transcoding_reference_frames": "Referentie frames",
"transcoding_reference_frames_description": "Het aantal frames om naar te verwijzen bij het comprimeren van een bepaald frame. Hogere waarden verbeteren de compressie-efficiëntie, maar vertragen de codering. Bij 0 wordt deze waarde automatisch ingesteld.",
"transcoding_required_description": "Alleen video's die geen geaccepteerd formaat hebben",
"transcoding_settings": "Instellingen voor videotranscodering",
@ -307,7 +319,7 @@
"transcoding_tone_mapping_description": "Probeert het uiterlijk van HDR-video's te behouden wanneer ze worden geconverteerd naar SDR. Elk algoritme maakt verschillende afwegingen voor kleur, detail en helderheid. Hable behoudt detail, Mobius behoudt kleur en Reinhard behoudt helderheid.",
"transcoding_transcode_policy": "Transcodeerbeleid",
"transcoding_transcode_policy_description": "Beleid voor wanneer een video getranscodeerd moet worden. HDR-video's worden altijd getranscodeerd (behalve als transcodering is uitgeschakeld).",
"transcoding_two_pass_encoding": "Two-pass encoding",
"transcoding_two_pass_encoding": "Two-pass encodering",
"transcoding_two_pass_encoding_setting_description": "Transcodeer in twee passes om beter gecodeerde video's te produceren. Wanneer de maximale bitrate is ingeschakeld (vereist om te werken met H.264 en HEVC), gebruikt deze modus een bitraterange op basis van de maximale bitrate en negeert CRF. Voor VP9 kan CRF worden gebruikt als de maximale bitrate is uitgeschakeld.",
"transcoding_video_codec": "Video codec",
"transcoding_video_codec_description": "VP9 heeft een hoge efficiëntie en webcompatibiliteit, maar duurt langer om te transcoderen. HEVC presteert vergelijkbaar, maar heeft een lagere webcompatibiliteit. H.264 is breed compatibel en snel om te transcoderen, maar produceert veel grotere bestanden. AV1 is de meest efficiënte codec, maar mist ondersteuning op oudere apparaten.",
@ -465,6 +477,7 @@
"confirm": "Bevestigen",
"confirm_admin_password": "Bevestig beheerder wachtwoord",
"confirm_delete_shared_link": "Weet je zeker dat je deze gedeelde link wilt verwijderen?",
"confirm_keep_this_delete_others": "Alle andere assets in de stack worden verwijderd, behalve deze. Weet je zeker dat je wilt doorgaan?",
"confirm_password": "Bevestig wachtwoord",
"contain": "Bevat",
"context": "Context",
@ -514,6 +527,7 @@
"delete_key": "Verwijder sleutel",
"delete_library": "Verwijder bibliotheek",
"delete_link": "Verwijder link",
"delete_others": "Andere verwijderen",
"delete_shared_link": "Verwijder gedeelde link",
"delete_tag": "Tag verwijderen",
"delete_tag_confirmation_prompt": "Weet je zeker dat je de tag {tagName} wilt verwijderen?",
@ -604,6 +618,7 @@
"failed_to_create_shared_link": "Fout bij maken van gedeelde link",
"failed_to_edit_shared_link": "Fout bij bewerken van gedeelde link",
"failed_to_get_people": "Fout bij ophalen van mensen",
"failed_to_keep_this_delete_others": "Het is niet gelukt om dit asset te behouden en de andere assets te verwijderen",
"failed_to_load_asset": "Kan asset niet laden",
"failed_to_load_assets": "Kan assets niet laden",
"failed_to_load_people": "Kan mensen niet laden",
@ -652,7 +667,7 @@
"unable_to_empty_trash": "Kan prullenbak niet legen",
"unable_to_enter_fullscreen": "Kan volledig scherm niet openen",
"unable_to_exit_fullscreen": "Kan volledig scherm niet afsluiten",
"unable_to_get_comments_number": "Kan het aantal opmerkingen niet ophalen",
"unable_to_get_comments_number": "Niet mogelijk om het aantal opmerkingen op te halen",
"unable_to_get_shared_link": "Kan gedeelde link niet ophalen",
"unable_to_hide_person": "Kan persoon niet verbergen",
"unable_to_link_motion_video": "Kan bewegende video niet verbinden",
@ -787,6 +802,8 @@
"jobs": "Taken",
"keep": "Behouden",
"keep_all": "Behoud alle",
"keep_this_delete_others": "Deze behouden, andere verwijderen",
"kept_this_deleted_others": "Deze asset behouden en {count, plural, one {# andere asset} other {# andere assets}} verwijderd",
"keyboard_shortcuts": "Sneltoetsen",
"language": "Taal",
"language_setting_description": "Selecteer je voorkeurstaal",
@ -1218,6 +1235,7 @@
"they_will_be_merged_together": "Zij zullen worden samengevoegd",
"third_party_resources": "Bronnen van derden",
"time_based_memories": "Tijdgebaseerde herinneringen",
"timeline": "Tijdlijn",
"timezone": "Tijdzone",
"to_archive": "Archiveren",
"to_change_password": "Wijzig wachtwoord",
@ -1227,6 +1245,7 @@
"to_trash": "Prullenbak",
"toggle_settings": "Zichtbaarheid instellingen wisselen",
"toggle_theme": "Donker thema toepassen",
"total": "Totaal",
"total_usage": "Totaal gebruik",
"trash": "Prullenbak",
"trash_all": "Verplaats alle naar prullenbak",
@ -1276,6 +1295,8 @@
"user_purchase_settings_description": "Beheer je aankoop",
"user_role_set": "{user} instellen als {role}",
"user_usage_detail": "Gedetailleerd gebruik van gebruikers",
"user_usage_stats": "Statistieken van accountgebruik",
"user_usage_stats_description": "Bekijk statistieken van accountgebruik",
"username": "Gebruikersnaam",
"users": "Gebruikers",
"utilities": "Gereedschap",
@ -1297,6 +1318,7 @@
"view_all_users": "Bekijk alle gebruikers",
"view_in_timeline": "Bekijk in tijdlijn",
"view_links": "Links bekijken",
"view_name": "Bekijken",
"view_next_asset": "Bekijk volgende asset",
"view_previous_asset": "Bekijk vorige asset",
"view_stack": "Bekijk stapel",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Wyślij powitalny e-mail",
"server_external_domain_settings": "Domena zewnętrzna",
"server_external_domain_settings_description": "Domena dla publicznie udostępnionych linków, wraz z http(s)://",
"server_public_users": "Użytkownicy publiczni",
"server_public_users_description": "Wszyscy użytkownicy (nazwa i adres e-mail) są wymienieni podczas dodawania użytkownika do udostępnionych albumów. Po wyłączeniu lista użytkowników będzie dostępna tylko dla administratorów.",
"server_settings": "Ustawienia Serwera",
"server_settings_description": "Zarządzaj ustawieniami serwera",
"server_welcome_message": "Wiadomość powitalna",
@ -1223,6 +1225,7 @@
"they_will_be_merged_together": "Zostaną one ze sobą połączone",
"third_party_resources": "Zasoby stron trzecich",
"time_based_memories": "Wspomnienia oparte na czasie",
"timeline": "Oś czasu",
"timezone": "Strefa czasowa",
"to_archive": "Archiwum",
"to_change_password": "Zmień hasło",
@ -1232,6 +1235,7 @@
"to_trash": "Kosz",
"toggle_settings": "Przełącz ustawienia",
"toggle_theme": "Przełącz ciemny motyw",
"total": "Całkowity",
"total_usage": "Całkowite wykorzystanie",
"trash": "Kosz",
"trash_all": "Usuń wszystko",
@ -1281,6 +1285,8 @@
"user_purchase_settings_description": "Zarządzaj swoim zakupem",
"user_role_set": "Ustaw {user} jako {role}",
"user_usage_detail": "Szczegóły używania przez użytkownika",
"user_usage_stats": "Statystyki użytkowania konta",
"user_usage_stats_description": "Wyświetl statystyki użytkowania konta",
"username": "Nazwa użytkownika",
"users": "Użytkownicy",
"utilities": "Narzędzia",
@ -1302,6 +1308,7 @@
"view_all_users": "Pokaż wszystkich użytkowników",
"view_in_timeline": "Pokaż na osi czasu",
"view_links": "Pokaż łącza",
"view_name": "Widok",
"view_next_asset": "Wyświetl następny zasób",
"view_previous_asset": "Wyświetl poprzedni zasób",
"view_stack": "Zobacz Ułożenie",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Enviar e-mail de boas-vindas",
"server_external_domain_settings": "Domínio externo",
"server_external_domain_settings_description": "Domínio para links públicos partilhados, incluindo http(s)://",
"server_public_users": "Utilizadores Públicos",
"server_public_users_description": "Todos os utilizadores (nome e e-mail) serão listados quando adicionar um utilizador a álbuns partilhados. Quando desativado, a lista de utilizadores só será visível a administradores.",
"server_settings": "Definições do Servidor",
"server_settings_description": "Gerir definições do servidor",
"server_welcome_message": "Mensagem de boas-vindas",
@ -465,6 +467,7 @@
"confirm": "Confirmar",
"confirm_admin_password": "Confirmar palavra-passe de administrador",
"confirm_delete_shared_link": "Tem a certeza de que deseja eliminar este link partilhado?",
"confirm_keep_this_delete_others": "Todos os outros ficheiros na pilha serão eliminados, exceto este ficheiro. Tem a certeza de que deseja continuar?",
"confirm_password": "Confirmar a palavra-passe",
"contain": "Ajustar",
"context": "Contexto",
@ -514,6 +517,7 @@
"delete_key": "Eliminar chave",
"delete_library": "Eliminar Biblioteca",
"delete_link": "Eliminar link",
"delete_others": "Excluir outros",
"delete_shared_link": "Eliminar link de partilha",
"delete_tag": "Eliminar etiqueta",
"delete_tag_confirmation_prompt": "Tem a certeza de que pretende eliminar a etiqueta {tagName} ?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Não foi possível criar o link partilhado",
"failed_to_edit_shared_link": "Não foi possível editar o link partilhado",
"failed_to_get_people": "Não foi possível obter pessoas",
"failed_to_keep_this_delete_others": "Ocorreu um erro ao manter este ficheiro e eliminar os outros",
"failed_to_load_asset": "Não foi possível ler o ficheiro",
"failed_to_load_assets": "Não foi possível ler ficheiros",
"failed_to_load_people": "Não foi possível carregar pessoas",
@ -787,6 +792,8 @@
"jobs": "Tarefas",
"keep": "Manter",
"keep_all": "Manter Todos",
"keep_this_delete_others": "Manter este ficheiro, eliminar os outros",
"kept_this_deleted_others": "Foi mantido ficheiro e {count, plural, one {eliminado # outro} other {eliminados # outros}}",
"keyboard_shortcuts": "Atalhos do teclado",
"language": "Idioma",
"language_setting_description": "Selecione o seu Idioma preferido",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Eles serão unidos",
"third_party_resources": "Recursos de terceiros",
"time_based_memories": "Memórias baseadas no tempo",
"timeline": "Linha de tempo",
"timezone": "Fuso horário",
"to_archive": "Arquivar",
"to_change_password": "Alterar palavra-passe",
@ -1227,6 +1235,7 @@
"to_trash": "Reciclagem",
"toggle_settings": "Alternar configurações",
"toggle_theme": "Ativar modo escuro",
"total": "Total",
"total_usage": "Total utilizado",
"trash": "Reciclagem",
"trash_all": "Mover todos para a reciclagem",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Gerir a sua compra",
"user_role_set": "Definir {user} como {role}",
"user_usage_detail": "Detalhes de utilização do utilizador",
"user_usage_stats": "Estatísticas de utilização de conta",
"user_usage_stats_description": "Ver estatísticas de utilização de conta",
"username": "Nome de utilizador",
"users": "Utilizadores",
"utilities": "Ferramentas",
@ -1297,6 +1308,7 @@
"view_all_users": "Ver todos os utilizadores",
"view_in_timeline": "Ver na linha do tempo",
"view_links": "Ver links",
"view_name": "Ver",
"view_next_asset": "Ver próximo ficheiro",
"view_previous_asset": "Ver ficheiro anterior",
"view_stack": "Ver pilha",

View file

@ -23,6 +23,7 @@
"add_to": "Adicionar a...",
"add_to_album": "Adicionar ao álbum",
"add_to_shared_album": "Adicionar ao álbum compartilhado",
"add_url": "Adicionar URL",
"added_to_archive": "Adicionado ao arquivo",
"added_to_favorites": "Adicionado aos favoritos",
"added_to_favorites_count": "{count, plural, one {{count, number} adicionado aos favoritos} other {{count, number} adicionados aos favoritos}}",
@ -44,7 +45,7 @@
"config_set_by_file": "A configuração está atualmente definida por um arquivo de configuração",
"confirm_delete_library": "Você tem certeza que deseja excluir a biblioteca {library} ?",
"confirm_delete_library_assets": "Você tem certeza que deseja excluir esta biblioteca? Isso excluirá {count, plural, one {# arquivo contido do Immich e não poderá ser desfeito. O arquivo permanecerá no disco} other {todos os # arquivos contidos do Immich e não poderá ser desfeito. Os arquivos permanecerão no disco}}.",
"confirm_email_below": "Para confirmar, digite o {email} abaixo",
"confirm_email_below": "Para confirmar, digite \"{email}\" abaixo",
"confirm_reprocess_all_faces": "Tem certeza de que deseja reprocessar todos os rostos? Isso também limpará as pessoas nomeadas.",
"confirm_user_password_reset": "Tem certeza de que deseja redefinir a senha de {user}?",
"create_job": "Criar tarefa",
@ -130,7 +131,7 @@
"machine_learning_smart_search_description": "Buscar imagens semanticamente usando embeddings CLIP",
"machine_learning_smart_search_enabled": "Habilitar a Pesquisa Inteligente",
"machine_learning_smart_search_enabled_description": "Se desativado, as imagens não serão codificadas para pesquisa inteligente.",
"machine_learning_url_description": "URL do servidor de inteligência artificial",
"machine_learning_url_description": "A URL do servidor de inteligência artificial. Se mais de uma URL for configurada, o servidor irá tentar uma de cada vez até que uma delas responda com sucesso, em ordem sequencial igual a configurada.",
"manage_concurrency": "Gerenciar simultaneidade",
"manage_log_settings": "Gerenciar configurações de registro",
"map_dark_style": "Tema Escuro",
@ -159,7 +160,7 @@
"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": "A partir do endereço",
"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)",
"notification_email_ignore_certificate_errors": "Ignorar erros de certificado",
@ -170,8 +171,8 @@
"notification_email_setting_description": "Configurações para envio de notificações por e-mail",
"notification_email_test_email": "Enviar e-mail de teste",
"notification_email_test_email_failed": "Falha ao enviar e-mail de teste. Verifique seus valores",
"notification_email_test_email_sent": "Um email de teste foi enviado para {email}. Por favor, verifique sua caixa de entrada.",
"notification_email_username_description": "Nome de usuário a ser usado ao autenticar com o servidor de e-mail",
"notification_email_test_email_sent": "Um e-mail de teste foi enviado para {email}. Por favor, verifique sua caixa de entrada.",
"notification_email_username_description": "Nome de usuário que será usado para autenticar com o servidor de e-mail",
"notification_enable_email_notifications": "Habilitar notificações por e-mail",
"notification_settings": "Configurações de notificação",
"notification_settings_description": "Gerenciar configurações de notificação, incluindo e-mail",
@ -222,6 +223,8 @@
"send_welcome_email": "Enviar e-mail de boas-vindas",
"server_external_domain_settings": "Domínio externo",
"server_external_domain_settings_description": "Domínio para links públicos compartilhados, incluindo http(s)://",
"server_public_users": "Usuários públicos",
"server_public_users_description": "Todos os usuários (nome e e-mail) serão exibidos na lista de adicionar usuários em álbuns compartilhados. Quando desativado, essa lista de usuários só será visível aos administradores.",
"server_settings": "Configurações do servidor",
"server_settings_description": "Gerenciar configurações do servidor",
"server_welcome_message": "Mensagem de boas-vindas",
@ -247,6 +250,16 @@
"storage_template_user_label": "<code>{label}</code> é o Rótulo de Armazenamento do usuário",
"system_settings": "Configurações do Sistema",
"tag_cleanup_job": "Limpeza de tags",
"template_email_available_tags": "Você pode usar as seguintes variáveis no modelo: {tags}",
"template_email_if_empty": "Se o modelo estiver em branco, o modelo de e-mail padrão será usado.",
"template_email_invite_album": "Modelo do e-mail de convite para álbum",
"template_email_preview": "Pré visualização",
"template_email_settings": "Modelos de e-mail",
"template_email_settings_description": "Gerenciar modelos personalizados de e-mail de notificação",
"template_email_update_album": "Modelo do e-mail de atualização do álbum",
"template_email_welcome": "Modelo do e-mail de boas vindas",
"template_settings": "Modelos de notificação",
"template_settings_description": "Gerenciar modelos personalizados para notificações.",
"theme_custom_css_settings": "CSS customizado",
"theme_custom_css_settings_description": "Folhas de estilo em cascata permitem que o design do Immich seja personalizado.",
"theme_settings": "Configurações de tema",
@ -465,6 +478,7 @@
"confirm": "Confirmar",
"confirm_admin_password": "Confirmar senha de administrador",
"confirm_delete_shared_link": "Tem certeza de que deseja excluir este link compartilhado?",
"confirm_keep_this_delete_others": "Todos os outros arquivos da pilha serão excluídos, exceto este arquivo. Tem certeza de que deseja continuar?",
"confirm_password": "Confirme a senha",
"contain": "Caber",
"context": "Contexto",
@ -514,6 +528,7 @@
"delete_key": "Excluir chave",
"delete_library": "Excluir biblioteca",
"delete_link": "Excluir link",
"delete_others": "Excluir restante",
"delete_shared_link": "Excluir link de compartilhamento",
"delete_tag": "Remover tag",
"delete_tag_confirmation_prompt": "Tem certeza que deseja excluir a tag {tagName} ?",
@ -604,6 +619,7 @@
"failed_to_create_shared_link": "Falha ao criar o link compartilhado",
"failed_to_edit_shared_link": "Falha ao editar o link compartilhado",
"failed_to_get_people": "Falha na obtenção de pessoas",
"failed_to_keep_this_delete_others": "Falha ao manter este arquivo e excluir os outros",
"failed_to_load_asset": "Não foi possível carregar o ativo",
"failed_to_load_assets": "Não foi possível carregar os ativos",
"failed_to_load_people": "Falha ao carregar pessoas",
@ -718,6 +734,7 @@
"external": "Externo",
"external_libraries": "Bibliotecas externas",
"face_unassigned": "Sem nome",
"failed_to_load_assets": "Falha ao carregar arquivos",
"favorite": "Favorito",
"favorite_or_unfavorite_photo": "Marque ou desmarque a foto como favorita",
"favorites": "Favoritos",
@ -787,6 +804,8 @@
"jobs": "Tarefas",
"keep": "Manter",
"keep_all": "Manter Todos",
"keep_this_delete_others": "Manter este, excluir o resto",
"kept_this_deleted_others": "Este foi mantido e {count, plural, one {# arquivo foi excluído} other {# arquivos foram excluídos}}",
"keyboard_shortcuts": "Atalhos do teclado",
"language": "Idioma",
"language_setting_description": "Selecione seu Idioma preferido",
@ -1015,6 +1034,7 @@
"reassigned_assets_to_new_person": "{count, plural, one {# arquivo reatribuído} other {# arquivos reatribuídos}} a uma nova pessoa",
"reassing_hint": "Atribuir arquivos selecionados a uma pessoa existente",
"recent": "Recente",
"recent-albums": "Álbuns recentes",
"recent_searches": "Pesquisas recentes",
"refresh": "Atualizar",
"refresh_encoded_videos": "Atualizar vídeos codificados",
@ -1036,6 +1056,7 @@
"remove_from_album": "Remover do álbum",
"remove_from_favorites": "Remover dos favoritos",
"remove_from_shared_link": "Remover do link compartilhado",
"remove_url": "Remover URL",
"remove_user": "Remover usuário",
"removed_api_key": "Removido a Chave de API: {name}",
"removed_from_archive": "Removido do arquivo",
@ -1218,6 +1239,7 @@
"they_will_be_merged_together": "Eles serão mesclados",
"third_party_resources": "Recursos de terceiros",
"time_based_memories": "Memórias baseada no tempo",
"timeline": "Linha do tempo",
"timezone": "Fuso horário",
"to_archive": "Arquivar",
"to_change_password": "Alterar senha",
@ -1227,6 +1249,7 @@
"to_trash": "Mover para a lixeira",
"toggle_settings": "Alternar configurações",
"toggle_theme": "Alternar tema escuro",
"total": "Total",
"total_usage": "Utilização total",
"trash": "Lixeira",
"trash_all": "Mover todos para o lixo",
@ -1276,6 +1299,8 @@
"user_purchase_settings_description": "Gerenciar sua compra",
"user_role_set": "Definir {user} como {role}",
"user_usage_detail": "Detalhes de uso do usuário",
"user_usage_stats": "Estatísticas de utilização de conta",
"user_usage_stats_description": "Ver estatísticas de utilização de conta",
"username": "Nome do usuário",
"users": "Usuários",
"utilities": "Utilitários",
@ -1297,6 +1322,7 @@
"view_all_users": "Ver todos usuários",
"view_in_timeline": "Ver na linha do tempo",
"view_links": "Ver links",
"view_name": "Ver",
"view_next_asset": "Ver próximo arquivo",
"view_previous_asset": "Ver arquivo anterior",
"view_stack": "Exibir Pilha",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Отправить приветственное письмо",
"server_external_domain_settings": "Внешний домен",
"server_external_domain_settings_description": "Домен для публичных ссылок, включая http(s)://",
"server_public_users": "Публичные пользователи",
"server_public_users_description": "Отображать всех пользователей (имена и email) для добавления в общие альбомы. Когда отключено, список пользователей будет доступен только администраторам.",
"server_settings": "Настройки сервера",
"server_settings_description": "Управление настройками сервера",
"server_welcome_message": "Приветственное сообщение",
@ -465,7 +467,7 @@
"confirm": "Подтвердить",
"confirm_admin_password": "Подтвердите пароль Администратора",
"confirm_delete_shared_link": "Вы уверены, что хотите удалить эту публичную ссылку?",
"confirm_keep_this_delete_others": "Все остальные объекты в стеке будут удалены, кроме этого объекта. Вы уверены, что хотите продолжить?",
"confirm_keep_this_delete_others": "Все остальные объекты в серии будут удалены, кроме этого объекта. Вы уверены, что хотите продолжить?",
"confirm_password": "Подтвердите пароль",
"contain": "Вместить",
"context": "Контекст",
@ -1183,11 +1185,11 @@
"sort_recent": "Недавние фото",
"sort_title": "Заголовок",
"source": "Исходный код",
"stack": "В стопку",
"stack_duplicates": "Стек дубликатов",
"stack_select_one_photo": "Выберите одну главную фотографию для стека",
"stack_selected_photos": "Сложить выбранные фотографии в стопку",
"stacked_assets_count": "{count, plural, one {# объект добавлен} few {# объекта добавлено} other {# объектов добавлено}} в стек",
"stack": "Превратить в серию",
"stack_duplicates": "Превратить дубликаты в серию",
"stack_select_one_photo": "Выберите главную фотографию для серии",
"stack_selected_photos": "Объединить выбранные объекты в серию",
"stacked_assets_count": "{count, plural, one {# объект добавлен} few {# объекта добавлено} other {# объектов добавлено}} в серию",
"stacktrace": "Трассировка стека",
"start": "Старт",
"start_date": "Дата начала",
@ -1223,6 +1225,7 @@
"they_will_be_merged_together": "Они будут объединены вместе",
"third_party_resources": "Сторонние ресурсы",
"time_based_memories": "Воспоминания, основанные на времени",
"timeline": "Временная шкала",
"timezone": "Часовой пояс",
"to_archive": "В архив",
"to_change_password": "Изменить пароль",
@ -1232,6 +1235,7 @@
"to_trash": "Корзина",
"toggle_settings": "Переключение настроек",
"toggle_theme": "Переключение темы",
"total": "Всего",
"total_usage": "Общее использование",
"trash": "Корзина",
"trash_all": "Удалить всё",
@ -1256,8 +1260,8 @@
"unsaved_change": "Не сохраненное изменение",
"unselect_all": "Снять всё",
"unselect_all_duplicates": "Отменить выбор всех дубликатов",
"unstack": "Разобрать стек",
"unstacked_assets_count": "{count, plural, one {# объект извлечен} few {# объекта извлечено} other {# объектов извлечено}} из стека",
"unstack": "Разгруппировать серию",
"unstacked_assets_count": "{count, plural, one {# объект извлечен} few {# объекта извлечено} other {# объектов извлечено}} из серии",
"untracked_files": "НЕОТСЛЕЖИВАЕМЫЕ ФАЙЛЫ",
"untracked_files_decription": "Приложение не отслеживает эти файлы. Они могут быть результатом неудачных перемещений, прерванных загрузок или пропущены из-за ошибки",
"up_next": "Следующее",
@ -1281,6 +1285,8 @@
"user_purchase_settings_description": "Управление покупкой",
"user_role_set": "Установить {user} в качестве {role}",
"user_usage_detail": "Подробная информация об использовании пользователем",
"user_usage_stats": "Статистика использования аккаунта",
"user_usage_stats_description": "Посмотреть статистику использования аккаунта",
"username": "Имя пользователя",
"users": "Пользователи",
"utilities": "Утилиты",
@ -1302,6 +1308,7 @@
"view_all_users": "Показать всех пользователей",
"view_in_timeline": "Показать на временной шкале",
"view_links": "Показать ссылки",
"view_name": "Посмотреть",
"view_next_asset": "Показать следующий объект",
"view_previous_asset": "Показать предыдущий объект",
"view_stack": "Показать стек",

View file

@ -2,7 +2,7 @@
"about": "Obnoviť",
"account": "Účet",
"account_settings": "Nastavenia účtu",
"acknowledge": "Potvrdiť",
"acknowledge": "Rozumiem",
"action": "Akcia",
"actions": "Akcie",
"active": "Aktívny",
@ -222,6 +222,8 @@
"send_welcome_email": "Odoslať uvítací e-mail",
"server_external_domain_settings": "Externá doména",
"server_external_domain_settings_description": "Verejná doména pre zdieľané odkazy, vrátane http(s)://",
"server_public_users": "Verejní užívatelia",
"server_public_users_description": "Všetci užívatelia (meno a email) sú uvedení pri pridávaní užívateľa do zdieľaných albumov. Ak je táto funkcia vypnutá, zoznam užívateľov bude dostupný iba správcom.",
"server_settings": "Nastavenia servera",
"server_settings_description": "Spravovať nastavenia servera",
"server_welcome_message": "Uvítacia správa",
@ -233,7 +235,7 @@
"storage_template_date_time_description": "Časová pečiatka vytvorenia médií sa používa pre informácie o dátume a čase",
"storage_template_date_time_sample": "Čas vzorky {date}",
"storage_template_enable_description": "Povoliť nástroj šablóny úložiska",
"storage_template_hash_verification_enabled": "Hash overenie povolené",
"storage_template_hash_verification_enabled": "Overenie hash povolené",
"storage_template_hash_verification_enabled_description": "Povolí overenie hash, nezakazujte to, pokiaľ si nie ste istí dôsledkami",
"storage_template_migration": "Migrácia šablóny úložiska",
"storage_template_migration_description": "Použite aktuálnu <link>{template}</link> na predtým nahrané médiá",
@ -392,35 +394,58 @@
"asset_adding_to_album": "Pridáva sa do albumu...",
"asset_description_updated": "Popis média bol aktualizovaný",
"asset_filename_is_offline": "Médium {filename} je offline",
"asset_offline": "",
"asset_has_unassigned_faces": "Položka má nepriradené tváre",
"asset_hashing": "Hašovanie...",
"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_skipped": "Preskočené",
"asset_skipped_in_trash": "V koši",
"asset_uploaded": "Nahrané",
"asset_uploading": "Nahráva sa...",
"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_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_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_trashed_count": "{count, plural, one {Odstránená # položka} few {Odstránené # položky} other {Odstránených # položiek}}",
"assets_were_part_of_album_count": "{count, plural, one {Položka bola} other {Položky boli}} súčasťou albumu",
"authorized_devices": "Autorizované zariadenia",
"back": "Späť",
"backward": "",
"back_close_deselect": "Späť, zavrieť alebo zrušiť výber",
"backward": "Spätne",
"birthdate_saved": "Dátum narodenia bol úspešne uložený",
"blurred_background": "",
"birthdate_set_description": "Dátum narodenia sa používa na výpočet veku tejto osoby v čase fotografie.",
"blurred_background": "Rozmazané pozadie",
"bugs_and_feature_requests": "Chyby a požiadavky na funkcie",
"build": "Budovať",
"build_image": "Vytvoriť obrázok",
"bulk_delete_duplicates_confirmation": "Naozaj chcete hromadne odstrániť {count, plural, one {# duplikátnu položku} few {# duplikáte položky} other {# duplikátnych položiek}}? Týmto sa zachová najväčšia položka z každej skupiny a všetky ostatné duplikáty sa natrvalo odstránia. Túto akciu nie je možné vrátiť späť!",
"buy": "Kúpiť Immich",
"camera": "Fotoaparát",
"camera_brand": "Výrobca fotoaparátu",
"camera_model": "Model fotoaparátu",
"cancel": "Zrušiť",
"cancel_search": "Zrušiť vyhľadávanie",
"cannot_merge_people": "",
"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_expiration_time": "Zmeniť čas vypršania",
"change_location": "Upraviť lokáciu",
"change_name": "Upraviť meno",
"change_name_successfully": "",
"change_name_successfully": "Meno bolo zmenené",
"change_password": "Zmeniť Heslo",
"change_your_password": "",
"changed_visibility_successfully": "",
"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_your_password": "Zmeňte si heslo",
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
"check_all": "Skontrolovať Všetko",
"check_logs": "Skontrolovať logy",
"choose_matching_people_to_merge": "Vyberte rovnakých ľudí na zlúčenie",
"city": "Mesto",
"clear": "VYMAZAŤ",
"clear_all": "Vymazať všetko",
@ -429,14 +454,18 @@
"clear_value": "Vymazať hodnotu",
"clockwise": "V smere hodinových ručičiek",
"close": "Zatvoriť",
"collapse_all": "",
"color_theme": "",
"collapse": "Zbaliť",
"collapse_all": "Zbaliť všetko",
"color": "Farba",
"color_theme": "Farba témy",
"comment_deleted": "Komentár bol odstránený",
"comment_options": "Možnosti komentára",
"comments_and_likes": "Komentáre a páči sa mi to",
"comments_are_disabled": "Komentáre sú vypnuté",
"confirm": "Potvrdiť",
"confirm_admin_password": "Potvrdiť Administrátorské Heslo",
"confirm_delete_shared_link": "Ste si istý, že chcete odstrániť tento zdieľaný odkaz?",
"confirm_keep_this_delete_others": "Všetky ostatné položky v zásobníku budú odstránené okrem tejto položky. Naozaj chcete pokračovať?",
"confirm_password": "Potvrdiť heslo",
"contain": "",
"context": "Kontext",
@ -444,20 +473,21 @@
"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í",
"copy_file_path": "",
"copy_file_path": "Kopírovať cestu odkazu",
"copy_image": "Skopírovať obrázok",
"copy_link": "Skopírovať odkaz",
"copy_link_to_clipboard": "Skopírovať do schránky",
"copy_password": "Skopírovať heslo",
"copy_to_clipboard": "Skopírovať do schránky",
"country": "Štát",
"cover": "",
"covers": "",
"cover": "Titulka",
"covers": "Dlaždice",
"create": "Vytvoriť",
"create_album": "Vytvoriť album",
"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_person": "Vytvoriť novú osobu",
"create_new_user": "Vytvorenie nového používateľa",
"create_tag": "Vytvoriť značku",
@ -949,6 +979,8 @@
"user_id": "Používateľské ID",
"user_role_set": "Nastav {user} ako {role}",
"user_usage_detail": "",
"user_usage_stats": "Štatistiky využitia účtu",
"user_usage_stats_description": "Zobraziť štatistiky využitia účtu",
"username": "Používateľské meno",
"users": "Používatelia",
"utilities": "Nástroje",

View file

@ -202,7 +202,7 @@
"oauth_storage_quota_default_description": "Kvota v GiB, ki se uporabi, ko ni predložen noben zahtevek (vnesite 0 za neomejeno kvoto).",
"offline_paths": "Poti brez povezave",
"offline_paths_description": "Ti rezultati so morda posledica ročnega brisanja datotek, ki niso del zunanje knjižnice.",
"password_enable_description": "Prijava se z e-pošto in geslom",
"password_enable_description": "Prijava z e-pošto in geslom",
"password_settings": "Prijava z geslom",
"password_settings_description": "Upravljajte nastavitve prijave z geslom",
"paths_validated_successfully": "Vse poti so bile uspešno potrjene",
@ -222,6 +222,8 @@
"send_welcome_email": "Pošlji pozdravno e-pošto",
"server_external_domain_settings": "Zunanja domena",
"server_external_domain_settings_description": "Domena za javne skupne povezave, vključno s http(s)://",
"server_public_users": "Javni uporabniki",
"server_public_users_description": "Vsi uporabniki (ime in e-pošta) so navedeni pri dodajanju uporabnika v albume v skupni rabi. Ko je onemogočen, bo seznam uporabnikov na voljo samo skrbniškim uporabnikom.",
"server_settings": "Nastavitve strežnika",
"server_settings_description": "Upravljanje nastavitev strežnika",
"server_welcome_message": "Pozdravno sporočilo",
@ -400,7 +402,7 @@
"asset_skipped_in_trash": "V smetnjak",
"asset_uploaded": "Naloženo",
"asset_uploading": "Nalaganje ...",
"assets": "sredstva",
"assets": "Sredstva",
"assets_added_count": "Dodano{count, plural, one {# sredstvo} other {# sredstev}}",
"assets_added_to_album_count": "Dodano{count, plural, one {# sredstvo} other {# sredstev}} v album",
"assets_added_to_name_count": "Dodano {count, plural, one {# sredstvo} other {# sredstev}} v {hasName, select, true {<b>{name}</b>} other {new album}}",
@ -465,6 +467,7 @@
"confirm": "Potrdi",
"confirm_admin_password": "Potrdite skrbniško geslo",
"confirm_delete_shared_link": "Ali ste prepričani, da želite izbrisati to skupno povezavo?",
"confirm_keep_this_delete_others": "Vsa druga sredstva v skladu bodo izbrisana, razen tega sredstva. Ste prepričani, da želite nadaljevati?",
"confirm_password": "Potrdi geslo",
"contain": "Vsebuje",
"context": "Kontekst",
@ -514,6 +517,7 @@
"delete_key": "Izbriši ključ",
"delete_library": "Izbriši knjižnico",
"delete_link": "Izbriši povezavo",
"delete_others": "Izbriši ostale",
"delete_shared_link": "Izbriši povezavo skupne rabe",
"delete_tag": "Izbriši oznako",
"delete_tag_confirmation_prompt": "Ali ste prepričani, da želite izbrisati oznako {tagName}?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Povezave v skupni rabi ni bilo mogoče ustvariti",
"failed_to_edit_shared_link": "Povezave v skupni rabi ni bilo mogoče urediti",
"failed_to_get_people": "Oseb ni bilo mogoče pridobiti",
"failed_to_keep_this_delete_others": "Tega sredstva ni bilo mogoče obdržati in izbrisati ostalih sredstev",
"failed_to_load_asset": "Sredstva ni bilo mogoče naložiti",
"failed_to_load_assets": "Sredstev ni bilo mogoče naložiti",
"failed_to_load_people": "Oseb ni bilo mogoče naložiti",
@ -784,9 +789,11 @@
"invite_people": "Povabi ljudi",
"invite_to_album": "Povabi v album",
"items_count": "{count, plural, one {# predmet} other {# predmetov}}",
"jobs": "Dela",
"jobs": "Opravila",
"keep": "Obdrži",
"keep_all": "Obdrži vse",
"keep_this_delete_others": "Obdrži to, izbriši ostalo",
"kept_this_deleted_others": "Obdrži to sredstvo in izbriši {count, plural, one {# sredstvo} other {# sredstev}}",
"keyboard_shortcuts": "Bližnjice na tipkovnici",
"language": "Jezik",
"language_setting_description": "Izberite želeni jezik",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Združeni bodo skupaj",
"third_party_resources": "Viri tretjih oseb",
"time_based_memories": "Časovni spomini",
"timeline": "Časovnica",
"timezone": "Časovni pas",
"to_archive": "Arhiv",
"to_change_password": "Spremeni geslo",
@ -1227,6 +1235,7 @@
"to_trash": "Smetnjak",
"toggle_settings": "Preklopi na nastavitve",
"toggle_theme": "Preklopi na temno temo",
"total": "Skupno",
"total_usage": "Skupna poraba",
"trash": "Smetnjak",
"trash_all": "Vse v smetnjak",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Upravljajte svoj nakup",
"user_role_set": "Nastavi {user} kot {role}",
"user_usage_detail": "Podrobnosti o uporabi uporabnika",
"user_usage_stats": "Statistika uporabe računa",
"user_usage_stats_description": "Oglejte si statistiko uporabe računa",
"username": "Uporabniško ime",
"users": "Uporabniki",
"utilities": "Pripomočki",
@ -1297,6 +1308,7 @@
"view_all_users": "Ogled vseh uporabnikov",
"view_in_timeline": "Ogled na časovnici",
"view_links": "Ogled povezav",
"view_name": "Pogled",
"view_next_asset": "Ogled naslednjega sredstva",
"view_previous_asset": "Ogled prejšnjega sredstva",
"view_stack": "Ogled sklada",
@ -1307,7 +1319,7 @@
"welcome": "Dobrodošli",
"welcome_to_immich": "Dobrodošli v Immich",
"year": "Leto",
"years_ago": "{years, plural, one {# leto} other {# let}} ago",
"years_ago": "{years, plural, one {# leto} other {# let}} nazaj",
"yes": "Da",
"you_dont_have_any_shared_links": "Nimate nobenih skupnih povezav",
"zoom_image": "Povečava slike"

View file

@ -23,6 +23,7 @@
"add_to": "Додај у...",
"add_to_album": "Додај у албум",
"add_to_shared_album": "Додај у дељен албум",
"add_url": "Додајте URL",
"added_to_archive": "Додато у архиву",
"added_to_favorites": "Додато у фаворите",
"added_to_favorites_count": "Додато {count, number} у фаворите",
@ -222,6 +223,8 @@
"send_welcome_email": "Пошаљите е-пошту добродошлице",
"server_external_domain_settings": "Екстерни домаин",
"server_external_domain_settings_description": "Домаин за јавне дељене везе, укључујући http(s)://",
"server_public_users": "Јавни корисници",
"server_public_users_description": "Сви корисници (име и адреса е-поште) су наведени приликом додавања корисника у дељене албуме. Када је онемогућена, листа корисника ће бити доступна само администраторима.",
"server_settings": "Подешавања сервера",
"server_settings_description": "Управљајте подешавањима сервера",
"server_welcome_message": "Порука добродошлице",
@ -247,6 +250,11 @@
"storage_template_user_label": "<code>{label}</code> је ознака за складиштење корисника",
"system_settings": "Подешавања система",
"tag_cleanup_job": "Чишћење ознака (tags)",
"template_email_invite_album": "Шаблон албума позива",
"template_email_preview": "Преглед",
"template_email_settings": "Шаблони е-поште",
"template_email_settings_description": "Управљајте прилагођеним шаблонима обавештења путем е-поште",
"template_email_welcome": "Шаблон е-поште добродошлице",
"theme_custom_css_settings": "Прилагођени CSS",
"theme_custom_css_settings_description": "Каскадни листови стилова (CSS) омогућавају прилагођавање дизајна Immich-a.",
"theme_settings": "Подешавање тема",
@ -1223,6 +1231,7 @@
"they_will_be_merged_together": "Они ће бити спојени заједно",
"third_party_resources": "Ресурси трећих страна",
"time_based_memories": "Сећања заснована на времену",
"timeline": "Временска линија",
"timezone": "Временска зона",
"to_archive": "Архивирај",
"to_change_password": "Промени лозинку",
@ -1232,6 +1241,7 @@
"to_trash": "Смеће",
"toggle_settings": "Намести подешавања",
"toggle_theme": "Намести тамну тему",
"total": "Укупно",
"total_usage": "Укупна употреба",
"trash": "Отпад",
"trash_all": "Баци све у отпад",
@ -1281,6 +1291,8 @@
"user_purchase_settings_description": "Управљајте куповином",
"user_role_set": "Постави {user} као {role}",
"user_usage_detail": "Детаљи коришћења корисника",
"user_usage_stats": "Статистика коришћења налога",
"user_usage_stats_description": "Погледајте статистику коришћења налога",
"username": "Корисничко име",
"users": "Корисници",
"utilities": "Алати",
@ -1302,6 +1314,7 @@
"view_all_users": "Прикажи све кориснике",
"view_in_timeline": "Прикажи у временској линији",
"view_links": "Прикажи везе",
"view_name": "Погледати",
"view_next_asset": "Погледајте следећу датотеку",
"view_previous_asset": "Погледај претходну датотеку",
"view_stack": "Прикажи гомилу",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Pošaljite e-poštu dobrodošlice",
"server_external_domain_settings": "Eksterni domain",
"server_external_domain_settings_description": "Domain za javne deljene veze, uključujući http(s)://",
"server_public_users": "Javni korisnici",
"server_public_users_description": "Svi korisnici (ime i adresa e-pošte) su navedeni prilikom dodavanja korisnika u deljene albume. Kada je onemogućena, lista korisnika će biti dostupna samo administratorima.",
"server_settings": "Podešavanja servera",
"server_settings_description": "Upravljajte podešavanjima servera",
"server_welcome_message": "Poruka dobrodošlice",
@ -1223,6 +1225,7 @@
"they_will_be_merged_together": "Oni će biti spojeni zajedno",
"third_party_resources": "Resursi trećih strana",
"time_based_memories": "Sećanja zasnovana na vremenu",
"timeline": "Vremenska linija",
"timezone": "Vremenska zona",
"to_archive": "Arhiviraj",
"to_change_password": "Promeni lozinku",
@ -1232,6 +1235,7 @@
"to_trash": "Smeće",
"toggle_settings": "Namesti podešavanja",
"toggle_theme": "Namesti tamnu temu",
"total": "Ukupno",
"total_usage": "Ukupna upotreba",
"trash": "Otpad",
"trash_all": "Baci sve u otpad",
@ -1281,6 +1285,8 @@
"user_purchase_settings_description": "Upravljajte kupovinom",
"user_role_set": "Postavi {user} kao {role}",
"user_usage_detail": "Detalji korišćenja korisnika",
"user_usage_stats": "Statistika korišćenja naloga",
"user_usage_stats_description": "Pogledajte statistiku korišćenja naloga",
"username": "Korisničko ime",
"users": "Korisnici",
"utilities": "Alati",
@ -1302,6 +1308,7 @@
"view_all_users": "Prikaži sve korisnike",
"view_in_timeline": "Prikaži u vremenskoj liniji",
"view_links": "Prikaži veze",
"view_name": "Pogledati",
"view_next_asset": "Pogledajte sledeću datoteku",
"view_previous_asset": "Pogledaj prethodnu datoteku",
"view_stack": "Prikaži gomilu",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Hoş geldin e-postası gönder",
"server_external_domain_settings": "Dış domain",
"server_external_domain_settings_description": "Paylaşılan fotoğraflar için domain, http(s):// dahil",
"server_public_users": "Harici Kullanıcılar",
"server_public_users_description": "Paylaşılan albümlere bir kullanıcı eklenirken tüm kullanıcılar (ad ve e-posta) listelenir. Devre dışı bırakıldığında, kullanıcı listesi yalnızca yönetici kullanıcılar tarafından kullanılabilir.",
"server_settings": "Sunucu ayarları",
"server_settings_description": "Sunucu ayarlarını yönet",
"server_welcome_message": "Hoş geldin mesajı",
@ -465,6 +467,7 @@
"confirm": "Onayla",
"confirm_admin_password": "Yönetici Şifresini Onayla",
"confirm_delete_shared_link": "Bu paylaşılan bağlantıyı silmek istediğinizden emin misiniz?",
"confirm_keep_this_delete_others": "Yığındaki diğer tüm öğeler bu varlık haricinde silinecektir. Devam etmek istediğinizden emin misiniz?",
"confirm_password": "Şifreyi onayla",
"contain": "İçermek",
"context": "Bağlam",
@ -514,6 +517,7 @@
"delete_key": "Anahtarı sil",
"delete_library": "Kütüphaneyi sil",
"delete_link": "Bağlantıyı sil",
"delete_others": "Diğerlerini sil",
"delete_shared_link": "Paylaşılmış linki sil",
"delete_tag": "Etiketi sil",
"delete_tag_confirmation_prompt": "{tagName} etiketini silmek istediğinizden emin misiniz?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Paylaşılan bağlantı oluşturulamadı",
"failed_to_edit_shared_link": "Paylaşılan bağlantı düzenlenemedi",
"failed_to_get_people": "Kişiler alınamadı",
"failed_to_keep_this_delete_others": "Bu öğenin tutulması ve diğer öğenin silinmesi başarısız oldu",
"failed_to_load_asset": "Varlık yüklenemedi",
"failed_to_load_assets": "Varlıklar yüklenemedi",
"failed_to_load_people": "Kişiler yüklenemedi",
@ -787,6 +792,8 @@
"jobs": "Görevler",
"keep": "Koru",
"keep_all": "Hepsini koru",
"keep_this_delete_others": "Bunu sakla, diğerlerini sil",
"kept_this_deleted_others": "Bu varlık tutuldu ve {count, plural, one {# varlık} other {# varlık}} silindi",
"keyboard_shortcuts": "Klavye kısayolları",
"language": "Dil",
"language_setting_description": "Tercih ettiğiniz dili seçiniz",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Birlikte birleştirilecekler",
"third_party_resources": "Üçüncü taraf kaynaklar",
"time_based_memories": "Zaman bazlı anılar",
"timeline": "Zaman Çizelgesi",
"timezone": "Zaman dilimi",
"to_archive": "Arşivle",
"to_change_password": "Şifreyi değiştir",
@ -1227,6 +1235,7 @@
"to_trash": "Çöpe taşı",
"toggle_settings": "Ayarları değiştir",
"toggle_theme": "Tema değiştir",
"total": "Toplam",
"total_usage": "Toplam kullanım",
"trash": "Çöp",
"trash_all": "Hepsini sil",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Satın alma işlemlerini yönet",
"user_role_set": "{user}, {role} olarak ayarlandı",
"user_usage_detail": "Kullanıcı kullanım detayı",
"user_usage_stats": "Hesap kullanım istatistikleri",
"user_usage_stats_description": "hesap kullanım istatistiklerini göster",
"username": "Kullanıcı adı",
"users": "Kullanıcılar",
"utilities": "Yardımcılar",
@ -1297,6 +1308,7 @@
"view_all_users": "Tüm kullanıcıları görüntüle",
"view_in_timeline": "Zaman çizelgesinde görüntüle",
"view_links": "Bağlantıları göster",
"view_name": "Göster",
"view_next_asset": "Sonraki dosyayı görüntüle",
"view_previous_asset": "Önceki dosyayı görüntüle",
"view_stack": "Yığını görüntüle",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "Надіслати лист з вітанням",
"server_external_domain_settings": "Зовнішній домен",
"server_external_domain_settings_description": "Домен для публічних загальнодоступних посилань, включаючи http(s)://",
"server_public_users": "Публічні користувачі",
"server_public_users_description": "Усі користувачі (ім'я та електронна пошта) відображаються під час додавання користувача до спільних альбомів. Якщо вимкнено, список користувачів буде доступний лише адміністраторам.",
"server_settings": "Налаштування сервера",
"server_settings_description": "Керування налаштуваннями сервера",
"server_welcome_message": "Вітальне повідомлення",
@ -419,7 +421,7 @@
"birthdate_saved": "Дата народження успішно збережена",
"birthdate_set_description": "Дата народження використовується для обчислення віку цієї особи на момент фотографії.",
"blurred_background": "Розмитий фон",
"bugs_and_feature_requests": "Помилки та запити на функції",
"bugs_and_feature_requests": "Помилки та Запити",
"build": "Збірка",
"build_image": "Створити зображення",
"bulk_delete_duplicates_confirmation": "Ви впевнені, що хочете масово видалити {count, plural, one {# дубльований ресурс} few {# дубльовані ресурси} other {# дубльованих ресурсів}}? Це дія залишить найбільший ресурс у кожній групі і остаточно видалить всі інші дублікати. Цю дію неможливо скасувати!",
@ -465,6 +467,7 @@
"confirm": "Підтвердіть",
"confirm_admin_password": "Підтвердити пароль адміністратора",
"confirm_delete_shared_link": "Ви впевнені, що хочете видалити це спільне посилання?",
"confirm_keep_this_delete_others": "Усі інші ресурси в стеку буде видалено, окрім цього ресурсу. Ви впевнені, що хочете продовжити?",
"confirm_password": "Підтвердити пароль",
"contain": "Містити",
"context": "Контекст",
@ -514,6 +517,7 @@
"delete_key": "Видалити ключ",
"delete_library": "Видалити бібліотеку",
"delete_link": "Видалити посилання",
"delete_others": "Видалити інші",
"delete_shared_link": "Видалити спільне посилання",
"delete_tag": "Видалити тег",
"delete_tag_confirmation_prompt": "Ви впевнені, що хочете видалити тег {tagName}?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "Не вдалося створити спільне посилання",
"failed_to_edit_shared_link": "Не вдалося відредагувати спільне посилання",
"failed_to_get_people": "Не вдалося отримати інформацію про людей",
"failed_to_keep_this_delete_others": "Не вдалося зберегти цей ресурс і видалити інші ресурси",
"failed_to_load_asset": "Не вдалося завантажити ресурс",
"failed_to_load_assets": "Не вдалося завантажити ресурси",
"failed_to_load_people": "Не вдалося завантажити людей",
@ -741,8 +746,8 @@
"go_to_search": "Перейти до пошуку",
"group_albums_by": "Групувати альбоми за...",
"group_no": "Без групування",
"group_owner": "Групування за власником",
"group_year": "Групувати за роками",
"group_owner": "За власником",
"group_year": "За роком",
"has_quota": "Квота",
"hi_user": "Привіт {name} ({email})",
"hide_all_people": "Сховати всіх",
@ -787,6 +792,8 @@
"jobs": "Завдання",
"keep": "Залишити",
"keep_all": "Зберегти все",
"keep_this_delete_others": "Залишити цей ресурс, видалити інші",
"kept_this_deleted_others": "Збережено цей ресурс і видалено {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсу}}",
"keyboard_shortcuts": "Сполучення клавіш",
"language": "Мова",
"language_setting_description": "Виберіть мову, якій ви надаєте перевагу",
@ -1177,7 +1184,7 @@
"sort_oldest": "Старі фото",
"sort_recent": "Нещодавні",
"sort_title": "Заголовок",
"source": "Джерело",
"source": "Вихідний код",
"stack": "У стопку",
"stack_duplicates": "Групувати дублікати",
"stack_select_one_photo": "Вибрати одне основне фото для групи",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "Вони будуть об'єднані разом",
"third_party_resources": "Ресурси третіх сторін",
"time_based_memories": "Спогади, що базуються на часі",
"timeline": "Хронологія",
"timezone": "Часовий пояс",
"to_archive": "Архів",
"to_change_password": "Змінити пароль",
@ -1227,6 +1235,7 @@
"to_trash": "Смітник",
"toggle_settings": "Перемикання налаштувань",
"toggle_theme": "Перемикання теми",
"total": "Усього",
"total_usage": "Загальне використання",
"trash": "Кошик",
"trash_all": "Видалити все",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "Керувати вашою покупкою",
"user_role_set": "Призначити {user} на роль {role}",
"user_usage_detail": "Деталі використання користувача",
"user_usage_stats": "Статистика використання акаунта",
"user_usage_stats_description": "Переглянути статистику використання акаунта",
"username": "Ім'я користувача",
"users": "Користувачі",
"utilities": "Утиліти",
@ -1297,6 +1308,7 @@
"view_all_users": "Переглянути всіх користувачів",
"view_in_timeline": "Переглянути в хронології",
"view_links": "Переглянути посилання",
"view_name": "Переглянути",
"view_next_asset": "Переглянути наступний ресурс",
"view_previous_asset": "Переглянути попередній ресурс",
"view_stack": "Перегляд стеку",

View file

@ -48,6 +48,9 @@
"confirm_reprocess_all_faces": "Bạn có chắc chắn muốn xử lý lại tất cả các khuôn mặt? Thao tác này sẽ xoá tên người đã được gán.",
"confirm_user_password_reset": "Bạn có chắc chắn muốn đặt lại mật khẩu của {user}?",
"create_job": "Tạo tác vụ",
"cron_expression": "Biểu thức Cron",
"cron_expression_description": "Thiết lập khoảng thời gian để quét bằng biểu thức cron. Tham khảo <link>Crontab Guru</link> để biết thêm thông tin.",
"cron_expression_presets": "Mẫu biểu thức Cron",
"disable_login": "Vô hiệu hoá đăng nhập",
"duplicate_detection_job_description": "Sử dụng Học máy để phát hiện các hình ảnh giống nhau. Dựa vào Tìm kiếm Thông Minh",
"exclusion_pattern_description": "Quy tắc loại trừ cho bạn bỏ qua các tập tin và thư mục khi quét thư viện của bạn. Điều này hữu ích nếu bạn có các thư mục chứa tập tin bạn không muốn nhập, chẳng hạn như các tập tin RAW.",
@ -462,6 +465,7 @@
"confirm": "Xác nhận",
"confirm_admin_password": "Xác nhận mật khẩu quản trị viên",
"confirm_delete_shared_link": "Bạn có chắc chắn muốn xóa liên kết chia sẻ này không?",
"confirm_keep_this_delete_others": "Các hình còn lại trong stack này sẽ bị xoá ngoại trừ hình này. Bạn có chắc chắn tiếp tục không?",
"confirm_password": "Xác nhận mật khẩu",
"contain": "Chứa",
"context": "Ngữ cảnh",
@ -511,6 +515,7 @@
"delete_key": "Xóa khóa",
"delete_library": "Xóa Thư viện",
"delete_link": "Xóa liên kết",
"delete_others": "Xoá các hình còn lại",
"delete_shared_link": "Xóa liên kết chia sẻ",
"delete_tag": "Xóa thẻ",
"delete_tag_confirmation_prompt": "Bạn có chắc chắn muốn xóa thẻ {tagName} không?",
@ -601,6 +606,7 @@
"failed_to_create_shared_link": "Không thể tạo liên kết chia sẻ",
"failed_to_edit_shared_link": "Không thể chỉnh sửa liên kết chia sẻ",
"failed_to_get_people": "Không thể tải người",
"failed_to_keep_this_delete_others": "Có lỗi trong quá trình xoá các hình",
"failed_to_load_asset": "Không thể tải ảnh",
"failed_to_load_assets": "Không thể tải các ảnh",
"failed_to_load_people": "Không thể tải người",
@ -784,6 +790,7 @@
"jobs": "Tác vụ",
"keep": "Giữ",
"keep_all": "Giữ tất cả",
"keep_this_delete_others": "Giữ tấm này và xoá tất cả còn lại",
"keyboard_shortcuts": "Phím tắt",
"language": "Ngôn ngữ",
"language_setting_description": "Chọn ngôn ngữ ưa thích của bạn",
@ -1280,7 +1287,7 @@
"variables": "Các tham số",
"version": "Phiên bản",
"version_announcement_closing": "Bạn của bạn, Alex",
"version_announcement_message": "Chào bạn, có một phiên bản mới của ứng dụng. Vui lòng dành thời gian để xem <link>ghi chú phát hành</link> và đảm bảo rằng cấu hình <code>docker-compose.yml</code> và <code>.env</code> của bạn được cập nhật để tránh bất kỳ cấu hình sai nào, đặc biệt nếu bạn sử dụng WatchTower hoặc bất kỳ cơ chế nào tự động cập nhật ứng dụng của bạn.",
"version_announcement_message": "Chào bạn! Một phiên bản mới của Immich đã phát hành. Vui lòng dành thời gian để xem <link>danh sách thay đổi</link> để đảm bảo cấu hình của bạn được cập nhật để tránh lỗi cấu hình sai, đặc biệt nếu bạn sử dụng WatchTower hoặc bất kỳ cơ chế tự động cập nhật Immich của bạn.",
"version_history": "Lịch sử phiên bản",
"version_history_item": "Đã cài đặt {version} vào {date}",
"video": "Video",
@ -1302,7 +1309,7 @@
"warning": "Cảnh báo",
"week": "Tuần",
"welcome": "Chào mừng",
"welcome_to_immich": "Chào mừng đến với immich",
"welcome_to_immich": "Chào mừng đến với Immich",
"year": "Năm",
"years_ago": "{years, plural, one {# năm} other {# năm}} trước",
"yes": "Có",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "傳送歡迎電子郵件",
"server_external_domain_settings": "外部網域",
"server_external_domain_settings_description": "公開網址,,包含 http(s)://",
"server_public_users": "訪客使用者",
"server_public_users_description": "將使用者新增至共用相簿時會列出所有使用者姓名、email。關閉時使用者列表僅對管理者生效。",
"server_settings": "伺服器",
"server_settings_description": "管理伺服器設定",
"server_welcome_message": "歡迎訊息",
@ -465,6 +467,7 @@
"confirm": "確認",
"confirm_admin_password": "確認管理者密碼",
"confirm_delete_shared_link": "確定刪除連結嗎?",
"confirm_keep_this_delete_others": "所有的其他堆疊項目將被刪除。確定繼續嗎?",
"confirm_password": "確認密碼",
"contain": "包含",
"context": "情境",
@ -514,6 +517,7 @@
"delete_key": "刪除密鑰",
"delete_library": "刪除圖庫",
"delete_link": "刪除鏈結",
"delete_others": "刪除其他",
"delete_shared_link": "刪除共享鏈結",
"delete_tag": "刪除標記",
"delete_tag_confirmation_prompt": "確定要刪除「{tagName}」(標記)嗎?",
@ -604,6 +608,7 @@
"failed_to_create_shared_link": "建立共享連結失敗",
"failed_to_edit_shared_link": "編輯共享連結失敗",
"failed_to_get_people": "無法獲取人物",
"failed_to_keep_this_delete_others": "無法保留此項目並刪除其他項目",
"failed_to_load_asset": "檔案載入失敗",
"failed_to_load_assets": "檔案載入失敗",
"failed_to_load_people": "無法載入人物",
@ -787,6 +792,8 @@
"jobs": "作業",
"keep": "保留",
"keep_all": "全部保留",
"keep_this_delete_others": "保留這個,刪除其他",
"kept_this_deleted_others": "保留這個項目並刪除{count, plural, one {# asset} other {# assets}}",
"keyboard_shortcuts": "鍵盤快捷鍵",
"language": "語言",
"language_setting_description": "選擇您的首選語言",
@ -1218,6 +1225,7 @@
"they_will_be_merged_together": "它們將會被合併在一起",
"third_party_resources": "第三方資源",
"time_based_memories": "依時間回憶",
"timeline": "時間軸",
"timezone": "時區",
"to_archive": "封存",
"to_change_password": "更改密碼",
@ -1227,6 +1235,7 @@
"to_trash": "垃圾桶",
"toggle_settings": "切換設定",
"toggle_theme": "切換深色主題",
"total": "統計",
"total_usage": "總用量",
"trash": "垃圾桶",
"trash_all": "全部丟掉",
@ -1276,6 +1285,8 @@
"user_purchase_settings_description": "管理你的購買",
"user_role_set": "設 {user} 爲{role}",
"user_usage_detail": "使用者用量詳情",
"user_usage_stats": "帳號使用量統計",
"user_usage_stats_description": "查看帳號使用量",
"username": "使用者名稱",
"users": "使用者",
"utilities": "工具",
@ -1297,6 +1308,7 @@
"view_all_users": "查看所有使用者",
"view_in_timeline": "在時間軸中查看",
"view_links": "檢視鏈結",
"view_name": "查看",
"view_next_asset": "查看下一項",
"view_previous_asset": "查看上一項",
"view_stack": "查看堆疊",

View file

@ -222,6 +222,8 @@
"send_welcome_email": "发送欢迎邮件",
"server_external_domain_settings": "外部域名",
"server_external_domain_settings_description": "共享链接域名,包括 http(s)://",
"server_public_users": "公共用户",
"server_public_users_description": "将用户添加到共享相册时,会列出所有用户(姓名和电子邮件)。禁用后,用户列表将仅对管理员用户可用。",
"server_settings": "服务器设置",
"server_settings_description": "管理服务器设置",
"server_welcome_message": "欢迎消息",
@ -1223,6 +1225,7 @@
"they_will_be_merged_together": "项目将会合并到一起",
"third_party_resources": "第三方资源",
"time_based_memories": "基于时间的回忆",
"timeline": "时间线",
"timezone": "时区",
"to_archive": "归档",
"to_change_password": "修改密码",
@ -1232,6 +1235,7 @@
"to_trash": "放入回收站",
"toggle_settings": "切换设置",
"toggle_theme": "切换深色主题",
"total": "总计",
"total_usage": "总用量",
"trash": "回收站",
"trash_all": "全部删除",
@ -1281,6 +1285,8 @@
"user_purchase_settings_description": "管理购买订单",
"user_role_set": "设置“{user}”为“{role}”",
"user_usage_detail": "用户用量详情",
"user_usage_stats": "帐户使用统计",
"user_usage_stats_description": "查看帐户使用统计信息",
"username": "用户名",
"users": "用户",
"utilities": "实用工具",
@ -1302,6 +1308,7 @@
"view_all_users": "查看全部用户",
"view_in_timeline": "在时间轴中查看",
"view_links": "查看链接",
"view_name": "查看",
"view_next_asset": "查看下一项",
"view_previous_asset": "查看上一项",
"view_stack": "查看堆叠项目",

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "machine-learning"
version = "1.121.0"
version = "1.122.1"
description = ""
authors = ["Hau Tran <alex.tran1502@gmail.com>"]
readme = "README.md"

View file

@ -104,6 +104,8 @@ custom_lint:
- lib/widgets/album/album_thumbnail_listtile.dart
- lib/widgets/forms/login/login_form.dart
- lib/widgets/search/search_filter/{camera_picker,location_picker,people_picker}.dart
- lib/services/auth.service.dart # on ApiException
- test/services/auth.service_test.dart # on ApiException
dart_code_metrics:
metrics:

View file

@ -28,7 +28,7 @@ if (keystorePropertiesFile.exists()) {
}
android {
compileSdkVersion 34
compileSdkVersion 35
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
@ -47,7 +47,7 @@ android {
defaultConfig {
applicationId "app.alextran.immich"
minSdkVersion 26
targetSdkVersion 34
targetSdkVersion 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}

View file

@ -16,6 +16,8 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.READ_MEDIA_VISUAL_USER_SELECTED" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_BACKGROUND_LOCATION" />
<!-- Foreground service permission -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
@ -35,7 +37,7 @@
<meta-data
android:name="io.flutter.embedding.android.EnableImpeller"
android:value="false" />
android:value="true" />
<meta-data
android:name="com.google.firebase.messaging.default_notification_icon"

View file

@ -16,8 +16,8 @@ subprojects {
if (project.plugins.hasPlugin("com.android.application") ||
project.plugins.hasPlugin("com.android.library")) {
project.android {
compileSdkVersion 34
buildToolsVersion "34.0.0"
compileSdkVersion 35
buildToolsVersion "35.0.0"
}
}
}

View file

@ -35,8 +35,8 @@ platform :android do
task: 'bundle',
build_type: 'Release',
properties: {
"android.injected.version.code" => 168,
"android.injected.version.name" => "1.121.0",
"android.injected.version.code" => 169,
"android.injected.version.name" => "1.122.1",
}
)
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')

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "تحديث",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "تمت الاضافة{album}",
"add_to_album_bottom_sheet_already_exists": "موجودة مسبقا {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "عارض الأصول",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "انقر للتضمين، وانقر نقرًا مزدوجًا للاستثناء",
"backup_album_selection_page_assets_scatter": "يمكن أن تنتشر الأصول عبر ألبومات متعددة. وبالتالي، يمكن تضمين الألبومات أو استبعادها أثناء عملية النسخ الاحتياطي.",
@ -131,6 +137,7 @@
"backup_manual_success": "نجاح",
"backup_manual_title": "حالة التحميل",
"backup_options_page_title": "خيارات النسخ الاحتياطي",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "مسح ذاكرة التخزين المؤقت",
"cache_settings_clear_cache_button_title": "يقوم بمسح ذاكرة التخزين المؤقت للتطبيق.سيؤثر هذا بشكل كبير على أداء التطبيق حتى إعادة بناء ذاكرة التخزين المؤقت.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "التحكم في سلوك التخزين المحلي",
"cache_settings_tile_title": "التخزين المحلي",
"cache_settings_title": "إعدادات التخزين المؤقت",
"cancel": "Cancel",
"change_password_form_confirm_password": "تأكيد كلمة المرور",
"change_password_form_description": "مرحبًا ،هذه هي المرة الأولى التي تقوم فيها بالتسجيل في النظام أو تم تقديم طلب لتغيير كلمة المرور الخاصة بك.الرجاء إدخال كلمة المرور الجديدة أدناه",
"change_password_form_new_password": "كلمة المرور الجديدة",
"change_password_form_password_mismatch": "كلمة المرور غير مطابقة",
"change_password_form_reenter_new_password": "أعد إدخال كلمة مرور جديدة",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "أماكن",
"curated_object_page_title": "أشياء",
"current_server_address": "Current server address",
"daily_title_text_date": "E ، MMM DD",
"daily_title_text_date_year": "E ، MMM DD ، yyyy",
"date_format": "E ، Lll D ، Y • H: MM A",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "وحدة زمنية",
"edit_image_title": "Edit",
"edit_location_dialog_title": "موقع",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "اضف وصفا...",
"exif_bottom_sheet_details": "تفاصيل",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "تمكين شبكة الصور التجريبية",
"experimental_settings_subtitle": "استخدام على مسؤوليتك الخاصة!",
"experimental_settings_title": "تجريبي",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "لم يتم العثور على الأصول المفضلة",
"favorites_page_title": "المفضلة",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "تمكين ردود الفعل اللمسية",
"haptic_feedback_title": "ردود فعل لمسية",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "أقدم صورة",
"library_page_sort_most_recent_photo": "أحدث الصور",
"library_page_sort_title": "عنوان الألبوم",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "اختر على الخريطة",
"location_picker_latitude": "خط العرض",
"location_picker_latitude_error": "أدخل خط عرض صالح",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "لا يمكن تعديل تاريخ الأصول (المواد) للقراءة فقط، سوف يتخطى",
"multiselect_grid_edit_gps_err_read_only": "لا يمكن تعديل موقع الأصول (المواد) للقراءة فقط، سوف يتخطى",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "لا توجد أصول لعرضها",
"no_name": "No name",
"notification_permission_dialog_cancel": "يلغي",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "إذن محدود. للسماح بالنسخ الاحتياطي للتطبيق وإدارة مجموعة المعرض بالكامل، امنح أذونات الصور والفيديو في الإعدادات.",
"permission_onboarding_request": "يتطلب التطبيق إذنًا لعرض الصور ومقاطع الفيديو الخاصة بك",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "التفضيلات",
"profile_drawer_app_logs": "السجلات",
"profile_drawer_client_out_of_date_major": "تطبيق الهاتف المحمول قديم.يرجى التحديث إلى أحدث إصدار رئيسي.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "نفايات",
"recently_added": "Recently added",
"recently_added_page_title": "أضيف مؤخرا",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "حدث خطأ",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "اقتراحات",
"select_user_for_sharing_page_err_album": "فشل في إنشاء ألبوم",
"select_user_for_sharing_page_share_suggestions": "اقتراحات",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "نسخة التطبيق",
"server_info_box_latest_release": "احدث اصدار",
"server_info_box_server_url": "عنوان URL الخادم",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "هل تريد النسخ الاحتياطي للأصول (الأصول) المحددة إلى الخادم؟",
"upload_dialog_ok": "رفع",
"upload_dialog_title": "تحميل الأصول",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "يُقرّ",
"version_announcement_overlay_release_notes": "ملاحظات الإصدار",
"version_announcement_overlay_text_1": "مرحبًا يا صديقي ، هناك إصدار جديد",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "حذف من الكومه أو المجموعة",
"viewer_stack_use_as_main_asset": "استخدم كأصل رئيسي",
"viewer_unstack": "فك الكومه"
"viewer_unstack": "فك الكومه",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Vybrat",
"action_common_update": "Aktualizovat",
"add_a_name": "Přidat název",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Přidáno do {album}",
"add_to_album_bottom_sheet_already_exists": "Je již v {album}",
"advanced_settings_log_level_title": "Úroveň protokolování: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} položek úspěšně obnoveno",
"assets_trashed": "{} položek vyhozeno do koše",
"assets_trashed_from_server": "{} položek vyhozeno do koše na Immich serveru",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Prohlížeč",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Alba v zařízení ({})",
"backup_album_selection_page_albums_tap": "Klepnutím na položku ji zahrnete, opětovným klepnutím ji vyloučíte",
"backup_album_selection_page_assets_scatter": "Položky mohou být roztroušeny ve více albech. To umožňuje zahrnout nebo vyloučit alba během procesu zálohování.",
@ -131,6 +137,7 @@
"backup_manual_success": "Úspěch",
"backup_manual_title": "Stav nahrávání",
"backup_options_page_title": "Nastavení záloh",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Náhledy stránek knihovny (položek {})",
"cache_settings_clear_cache_button": "Vymazat vyrovnávací paměť",
"cache_settings_clear_cache_button_title": "Vymaže vyrovnávací paměť aplikace. To výrazně ovlivní výkon aplikace, dokud se vyrovnávací paměť neobnoví.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Ovládání chování místního úložiště",
"cache_settings_tile_title": "Místní úložiště",
"cache_settings_title": "Nastavení vyrovnávací paměti",
"cancel": "Cancel",
"change_password_form_confirm_password": "Potvrďte heslo",
"change_password_form_description": "Dobrý den, {name}\n\nje to buď poprvé, co se přihlašujete do systému, nebo byl vytvořen požadavek na změnu hesla. Níže zadejte nové heslo.",
"change_password_form_new_password": "Nové heslo",
"change_password_form_password_mismatch": "Hesla se neshodují",
"change_password_form_reenter_new_password": "Znovu zadejte nové heslo",
"check_corrupt_asset_backup": "Kontrola poškozených záloh položek",
"check_corrupt_asset_backup_button": "Provést kontrolu",
"check_corrupt_asset_backup_description": "Tuto kontrolu provádějte pouze přes Wi-Fi a po zálohování všech prostředků. Takto operace může trvat několik minut.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Zadejte heslo",
"client_cert_import": "Importovat",
@ -199,6 +210,7 @@
"crop": "Oříznout",
"curated_location_page_title": "Místa",
"curated_object_page_title": "Věci",
"current_server_address": "Current server address",
"daily_title_text_date": "EEEE, d. MMMM",
"daily_title_text_date_year": "EEEE, d. MMMM y",
"date_format": "EEEE, d. MMMM y • H:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Časové pásmo",
"edit_image_title": "Upravit",
"edit_location_dialog_title": "Poloha",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Chyba: {}",
"exif_bottom_sheet_description": "Přidat popis...",
"exif_bottom_sheet_details": "PODROBNOSTI",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Povolení experimentální mřížky fotografií",
"experimental_settings_subtitle": "Používejte na vlastní riziko!",
"experimental_settings_title": "Experimentální",
"external_network": "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",
"favorites": "Oblíbené",
"favorites_page_no_favorites": "Nebyla nalezena žádná oblíbená média",
"favorites_page_title": "Oblíbené",
"filename_search": "Název nebo přípona souboru",
"filter": "Filtr",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Povolit dotykovou zpětnou vazbu",
"haptic_feedback_title": "Dotyková zpětná vazba",
"header_settings_add_header_tip": "Přidat hlavičku",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Nejstarší fotografie",
"library_page_sort_most_recent_photo": "Nejnovější fotografie",
"library_page_sort_title": "Podle názvu alba",
"local_network": "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": "Vyberte na mapě",
"location_picker_latitude": "Zeměpisná šířka",
"location_picker_latitude_error": "Zadejte platnou zeměpisnou šířku",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Nelze upravit datum položek pouze pro čtení, přeskakuji",
"multiselect_grid_edit_gps_err_read_only": "Nelze upravit polohu položek pouze pro čtení, přeskakuji",
"my_albums": "Moje alba",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Žádné položky k zobrazení",
"no_name": "Bez jména",
"notification_permission_dialog_cancel": "Zrušit",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Přístup omezen. Chcete-li používat Immich k zálohování a správě celé vaší kolekce galerií, povolte v nastavení přístup k fotkám a videím.",
"permission_onboarding_request": "Immich potřebuje přístup k zobrazení vašich fotek a videí.",
"places": "Místa",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Předvolby",
"profile_drawer_app_logs": "Logy",
"profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Vyhodit",
"recently_added": "Nedávno přidané",
"recently_added_page_title": "Nedávno přidané",
"save": "Save",
"save_to_gallery": "Uložit do galerie",
"scaffold_body_error_occurred": "Došlo k chybě",
"search_albums": "Vyhledávejte alba",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Návrhy",
"select_user_for_sharing_page_err_album": "Nepodařilo se vytvořit album",
"select_user_for_sharing_page_share_suggestions": "Návrhy",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Verze aplikace",
"server_info_box_latest_release": "Nejnovější verze",
"server_info_box_server_url": "URL serveru",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Načíst náhled obrázku",
"setting_image_viewer_title": "Obrázky",
"setting_languages_apply": "Použít",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Jazyk",
"setting_notifications_notify_failures_grace_period": "Oznámení o selhání zálohování na pozadí: {}",
"setting_notifications_notify_hours": "{} hodin",
@ -612,6 +639,8 @@
"upload_dialog_info": "Chcete zálohovat vybrané položky na server?",
"upload_dialog_ok": "Nahrát",
"upload_dialog_title": "Nahrát položku",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Potvrdit",
"version_announcement_overlay_release_notes": "poznámky k vydání",
"version_announcement_overlay_text_1": "Ahoj, k dispozici je nová verze",
@ -621,5 +650,7 @@
"videos": "Videa",
"viewer_remove_from_stack": "Odstranit ze zásobníku",
"viewer_stack_use_as_main_asset": "Použít jako hlavní položku",
"viewer_unstack": "Rozbalit zásobník"
"viewer_unstack": "Rozbalit zásobník",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Opdater",
"add_a_name": "Tilføj navn",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Tilføjet til {album}",
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
"advanced_settings_log_level_title": "Logniveau: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} element(er) blev gendannet succesfuldt",
"assets_trashed": "{} element(er) blev smidt i papirkurven",
"assets_trashed_from_server": "{} element(er) blev smidt i serverens papirkurv",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Billedviser",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "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.",
@ -131,6 +137,7 @@
"backup_manual_success": "Succes",
"backup_manual_title": "Uploadstatus",
"backup_options_page_title": "Backupindstillinger",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"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.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Kontroller den lokale lagerplads",
"cache_settings_tile_title": "Lokal lagerplads",
"cache_settings_title": "Cache-indstillinger",
"cancel": "Cancel",
"change_password_form_confirm_password": "Bekræft kodeord",
"change_password_form_description": "Hej {name},\n\nDette er enten første gang du logger ind eller også er der lavet en anmodning om at ændre dit kodeord. Indtast venligst et nyt kodeord nedenfor.",
"change_password_form_new_password": "Nyt kodeord",
"change_password_form_password_mismatch": "Kodeord er ikke ens",
"change_password_form_reenter_new_password": "Gentag nyt kodeord",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Beskær",
"curated_location_page_title": "Steder",
"curated_object_page_title": "Ting",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E d. LLL y • hh:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Tidszone",
"edit_image_title": "Rediger",
"edit_location_dialog_title": "Placering",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Fejl: {}",
"exif_bottom_sheet_description": "Tilføj beskrivelse...",
"exif_bottom_sheet_details": "DETALJER",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Aktiver eksperimentelt fotogitter",
"experimental_settings_subtitle": "Brug på eget ansvar!",
"experimental_settings_title": "Eksperimentelle",
"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",
"favorites": "Favoritter",
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
"favorites_page_title": "Favoritter",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Slå haptisk feedback til",
"haptic_feedback_title": "Haptisk feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Ældste billede",
"library_page_sort_most_recent_photo": "Seneste billede",
"library_page_sort_title": "Albumtitel",
"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": "Vælg på kort",
"location_picker_latitude": "Breddegrad",
"location_picker_latitude_error": "Indtast en gyldig breddegrad",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke redigere datoen på kun læselige elementer. Springer over",
"multiselect_grid_edit_gps_err_read_only": "Kan ikke redigere lokation af kun læselige elementer. Springer over",
"my_albums": "Mine albummer",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Ingen elementer at vise",
"no_name": "Intet navn",
"notification_permission_dialog_cancel": "Annuller",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Tilladelse begrænset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.",
"permission_onboarding_request": "Immich kræver tilliadelse til at se dine billeder og videoer.",
"places": "Placeringer",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Præferencer",
"profile_drawer_app_logs": "Log",
"profile_drawer_client_out_of_date_major": "Mobilapp er forældet. Opdater venligst til den nyeste større version",
@ -412,9 +436,10 @@
"profile_drawer_trash": "Papirkurv",
"recently_added": "Senest tilføjet",
"recently_added_page_title": "Nyligt tilføjet",
"save": "Save",
"save_to_gallery": "Gem til galleri",
"scaffold_body_error_occurred": "Der opstod en fejl",
"search_albums": "Søb albummer",
"search_albums": "Søg i albummer",
"search_bar_hint": "Søg i dine billeder",
"search_filter_apply": "Tilføj filter",
"search_filter_camera": "Kamera",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Anbefalinger",
"select_user_for_sharing_page_err_album": "Fejlede i at oprette et nyt album",
"select_user_for_sharing_page_share_suggestions": "Anbefalinger",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Applikationsversion",
"server_info_box_latest_release": "Seneste version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Indlæs forhåndsvisning af billedet",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Anvend",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Sprog",
"setting_notifications_notify_failures_grace_period": "Giv besked om fejl med sikkerhedskopiering i baggrunden: {}",
"setting_notifications_notify_hours": "{} timer",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vil du sikkerhedskopiere de(t) valgte element(er) til serveren?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload element",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Accepter",
"version_announcement_overlay_release_notes": "udgivelsesnoterne",
"version_announcement_overlay_text_1": "Hej ven, der er en ny version af",
@ -621,5 +650,7 @@
"videos": "Videoer",
"viewer_remove_from_stack": "Fjern fra stak",
"viewer_stack_use_as_main_asset": "Brug som hovedelement",
"viewer_unstack": "Fjern fra stak"
"viewer_unstack": "Fjern fra stak",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Auswählen ",
"action_common_update": "Aktualisieren",
"add_a_name": "Einen Namen hinzufügen",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Zu {album} hinzugefügt",
"add_to_album_bottom_sheet_already_exists": "Bereits in {album}",
"advanced_settings_log_level_title": "Log-Level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} Datei/en erfolgreich wiederhergestellt",
"assets_trashed": "{} Datei/en gelöscht",
"assets_trashed_from_server": "{} Datei/en vom Immich-Server gelöscht",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Fotoanzeige",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Alben auf dem Gerät ({})",
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern.",
"backup_album_selection_page_assets_scatter": "Elemente (Fotos / Videos) können sich über mehrere Alben verteilen. Daher können diese vor der Sicherung eingeschlossen oder ausgeschlossen werden.",
@ -131,6 +137,7 @@
"backup_manual_success": "Erfolgreich",
"backup_manual_title": "Sicherungsstatus",
"backup_options_page_title": "Sicherungsoptionen",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Vorschaubilder der Bibliothek ({} Elemente)",
"cache_settings_clear_cache_button": "Zwischenspeicher löschen",
"cache_settings_clear_cache_button_title": "Löscht den Zwischenspeicher der App. Dies wird die Leistungsfähigkeit der App deutlich einschränken, bis der Zwischenspeicher wieder aufgebaut wurde.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Lokalen Speicher verwalten",
"cache_settings_tile_title": "Lokaler Speicher",
"cache_settings_title": "Zwischenspeicher Einstellungen",
"cancel": "Cancel",
"change_password_form_confirm_password": "Passwort bestätigen",
"change_password_form_description": "Hallo {name}\n\nDas ist entweder das erste Mal dass du dich einloggst oder es wurde eine Anfrage zur Änderung deines Passwortes gestellt. Bitte gib das neue Passwort ein.",
"change_password_form_new_password": "Neues Passwort",
"change_password_form_password_mismatch": "Passwörter stimmen nicht überein",
"change_password_form_reenter_new_password": "Passwort erneut eingeben",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Passwort eingeben",
"client_cert_import": "Importieren",
@ -199,6 +210,7 @@
"crop": "Zuschneiden",
"curated_location_page_title": "Orte",
"curated_object_page_title": "Dinge",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E d. LLL y • hh:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Zeitzone",
"edit_image_title": "Bearbeiten",
"edit_location_dialog_title": "Ort bearbeiten",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Fehler: {}",
"exif_bottom_sheet_description": "Beschreibung hinzufügen...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Experimentelles Fotogitter aktivieren",
"experimental_settings_subtitle": "Benutzung auf eigene Gefahr!",
"experimental_settings_title": "Experimentell",
"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",
"favorites": "Favoriten",
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
"favorites_page_title": "Favoriten",
"filename_search": "Dateiname oder Dateityp",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Haptisches Feedback aktivieren",
"haptic_feedback_title": "Haptisches Feedback",
"header_settings_add_header_tip": "Header hinzufügen",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Ältestes Foto",
"library_page_sort_most_recent_photo": "Neuestes Foto",
"library_page_sort_title": "Titel des Albums",
"local_network": "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": "Auf der Karte auswählen",
"location_picker_latitude": "Breitengrad",
"location_picker_latitude_error": "Gültigen Breitengrad eingeben",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Das Datum und die Uhrzeit von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
"multiselect_grid_edit_gps_err_read_only": "Der Aufnahmeort von schreibgeschützten Inhalten kann nicht verändert werden, überspringen...",
"my_albums": "Meine Alben",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Keine Vorschau vorhanden",
"no_name": "Kein Name",
"notification_permission_dialog_cancel": "Abbrechen",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.",
"permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.",
"places": "Orte",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Voreinstellungen",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papierkorb",
"recently_added": "Kürzlich hinzugefügt",
"recently_added_page_title": "Zuletzt hinzugefügt",
"save": "Save",
"save_to_gallery": "In Galerie speichern",
"scaffold_body_error_occurred": "Ein Fehler ist aufgetreten",
"search_albums": "nach Album suchen",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Vorschläge",
"select_user_for_sharing_page_err_album": "Album konnte nicht erstellt werden",
"select_user_for_sharing_page_share_suggestions": "Empfehlungen",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App-Version",
"server_info_box_latest_release": "Neueste Version",
"server_info_box_server_url": "Server-URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Vorschaubild laden",
"setting_image_viewer_title": "Bilder",
"setting_languages_apply": "Anwenden",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Sprachen",
"setting_notifications_notify_failures_grace_period": "Benachrichtigung bei Fehler/n in der Hintergrundsicherung: {}",
"setting_notifications_notify_hours": "{} Stunden",
@ -612,6 +639,8 @@
"upload_dialog_info": "Willst du die ausgewählten Elemente auf dem Server sichern?",
"upload_dialog_ok": "Hochladen",
"upload_dialog_title": "Element hochladen",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Ich habe verstanden",
"version_announcement_overlay_release_notes": "Änderungsprotokoll",
"version_announcement_overlay_text_1": "Hallo mein Freund! Es gibt eine neue Version von",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Aus Stapel entfernen",
"viewer_stack_use_as_main_asset": "An Stapelanfang",
"viewer_unstack": "Stapel aufheben"
"viewer_unstack": "Stapel aufheben",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Επιλογή",
"action_common_update": "Ενημέρωση",
"add_a_name": "Πρόσθεση ονόματος",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Προστέθηκε στο {album}",
"add_to_album_bottom_sheet_already_exists": "Ήδη στο {album}",
"advanced_settings_log_level_title": "Επίπεδο καταγραφής: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} στοιχεία αποκαταστάθηκαν με επιτυχία",
"assets_trashed": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων",
"assets_trashed_from_server": "{} στοιχεία μεταφέρθηκαν στον κάδο απορριμμάτων από τον διακομιστή Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Προβολή Στοιχείων",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Άλμπουμ στη συσκευή ({})",
"backup_album_selection_page_albums_tap": "Πάτημα για συμπερίληψη, διπλό πάτημα για εξαίρεση",
"backup_album_selection_page_assets_scatter": "Τα στοιχεία μπορεί να διασκορπιστούν σε πολλά άλμπουμ. Έτσι, τα άλμπουμ μπορούν να περιληφθούν ή να εξαιρεθούν κατά τη διαδικασία δημιουργίας αντιγράφων ασφαλείας.",
@ -131,6 +137,7 @@
"backup_manual_success": "Επιτυχία",
"backup_manual_title": "Κατάσταση μεταφόρτωσης",
"backup_options_page_title": "Επιλογές αντιγράφων ασφαλείας",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Μικρογραφίες σελίδας βιβλιοθήκης ({} στοιχεία)",
"cache_settings_clear_cache_button": "Εκκαθάριση προσωρινής μνήμης",
"cache_settings_clear_cache_button_title": "Καθαρίζει τη προσωρινή μνήμη της εφαρμογής. Αυτό θα επηρεάσει σημαντικά την απόδοση της εφαρμογής μέχρι να αναδημιουργηθεί η προσωρινή μνήμη.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Χειριστείτε τη συμπεριφορά της τοπικής αποθήκευσης",
"cache_settings_tile_title": "Τοπική Αποθήκευση",
"cache_settings_title": "Ρυθμίσεις Προσωρινής Μνήμης",
"cancel": "Cancel",
"change_password_form_confirm_password": "Επιβεβαίωση Κωδικού",
"change_password_form_description": "Γεια σας {name},\n\nΕίτε είναι η πρώτη φορά που συνδέεστε στο σύστημα είτε έχει γίνει αίτηση για αλλαγή του κωδικού σας. Παρακαλώ εισάγετε τον νέο κωδικό.",
"change_password_form_new_password": "Νέος Κωδικός",
"change_password_form_password_mismatch": "Οι κωδικοί δεν ταιριάζουν",
"change_password_form_reenter_new_password": "Επανεισαγωγή Νέου Κωδικού",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "ΟΚ",
"client_cert_enter_password": "Εισαγάγετε κωδικό πρόσβασης",
"client_cert_import": "Εισαγωγή",
@ -199,6 +210,7 @@
"crop": "Αποκοπή",
"curated_location_page_title": "Τοποθεσίες",
"curated_object_page_title": "Πράγματα",
"current_server_address": "Current server address",
"daily_title_text_date": "Ε, MMM dd",
"daily_title_text_date_year": "Ε, MMM dd, yyyy",
"date_format": "Ε, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Ζώνη ώρας",
"edit_image_title": "Επεξεργασία",
"edit_location_dialog_title": "Τοποθεσία",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Σφάλμα: {}",
"exif_bottom_sheet_description": "Προσθήκη Περιγραφής...",
"exif_bottom_sheet_details": "ΛΕΠΤΟΜΕΡΕΙΕΣ",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Ενεργοποίηση πειραματικού πλέγματος φωτογραφιών",
"experimental_settings_subtitle": "Χρησιμοποιείτε με δική σας ευθύνη!",
"experimental_settings_title": "Πειραματικό",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Αγαπημένα",
"favorites_page_no_favorites": "Δεν βρέθηκαν αγαπημένα στοιχεία",
"favorites_page_title": "Αγαπημένα",
"filename_search": "Όνομα αρχείου ή επέκταση",
"filter": "Φίλτρο",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Ενεργοποίηση απτικής ανάδρασης",
"haptic_feedback_title": "Απτική Ανάδραση",
"header_settings_add_header_tip": "Προσθήκη Κεφαλίδας",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Πιο παλιά φωτογραφία",
"library_page_sort_most_recent_photo": "Πιο πρόσφατη φωτογραφία",
"library_page_sort_title": "Τίτλος άλμπουμ",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Επιλέξτε στο χάρτη",
"location_picker_latitude": "Γεωγραφικό πλάτος",
"location_picker_latitude_error": "Εισαγάγετε ένα έγκυρο γεωγραφικό πλάτος",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Δεν είναι δυνατή η επεξεργασία της ημερομηνίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
"multiselect_grid_edit_gps_err_read_only": "Δεν είναι δυνατή η επεξεργασία της τοποθεσίας των στοιχείων μόνο για ανάγνωση, παραλείπεται",
"my_albums": "Τα άλμπουμ μου",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Δεν υπάρχουν στοιχεία προς εμφάνιση",
"no_name": "Κανένα όνομα",
"notification_permission_dialog_cancel": "Ακύρωση",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Περιορισμένη άδεια. Για να επιτρέψετε στο Immich να δημιουργεί αντίγραφα ασφαλείας και να διαχειρίζεται ολόκληρη τη συλλογή σας, παραχωρήστε άδειες φωτογραφιών και βίντεο στις Ρυθμίσεις.",
"permission_onboarding_request": "Το Immich απαιτεί άδεια πρόσβασεις στις φωτογραφίες και τα βίντεό σας.",
"places": "Μέρη",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Προτιμήσεις",
"profile_drawer_app_logs": "Καταγραφές",
"profile_drawer_client_out_of_date_major": "Παρακαλώ ενημερώστε την εφαρμογή στην πιο πρόσφατη κύρια έκδοση.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Σκουπίδια",
"recently_added": "Προστέθηκαν πρόσφατα",
"recently_added_page_title": "Προστέθηκαν Πρόσφατα",
"save": "Save",
"save_to_gallery": "Αποθήκευση στη συλλογή",
"scaffold_body_error_occurred": "Παρουσιάστηκε σφάλμα",
"search_albums": "Αναζήτηση άλμπουμ",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Προτάσεις",
"select_user_for_sharing_page_err_album": "Αποτυχία δημιουργίας άλπουμ",
"select_user_for_sharing_page_share_suggestions": "Προτάσεις",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Έκδοση εφαρμογής",
"server_info_box_latest_release": "Τελευταία Έκδοση",
"server_info_box_server_url": "URL διακομιστή",
@ -480,6 +506,7 @@
"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": "{} ώρες",
@ -612,6 +639,8 @@
"upload_dialog_info": "Θέλετε να αντιγράψετε (κάνετε backup) τα επιλεγμένo(α) στοιχείο(α) στο διακομιστή;",
"upload_dialog_ok": "Ανέβασμα",
"upload_dialog_title": "Ανέβασμα στοιχείου",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Κατάλαβα",
"version_announcement_overlay_release_notes": "σημειώσεις έκδοσης",
"version_announcement_overlay_text_1": "Γειά σας, υπάρχει μια νέα έκδοση του",
@ -621,5 +650,7 @@
"videos": "Βίντεο",
"viewer_remove_from_stack": "Κατάργηση από τη Στοίβα",
"viewer_stack_use_as_main_asset": "Χρήση ως Κύριο Στοιχείο",
"viewer_unstack": "Αποστοίβαξε"
"viewer_unstack": "Αποστοίβαξε",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,14 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -202,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -238,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
@ -249,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -299,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -368,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancel",
@ -401,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -415,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -460,6 +482,7 @@
"search_page_places": "Places",
"search_page_recently_added": "Recently added",
"search_page_screenshots": "Screenshots",
"search_page_search_photos_videos": "Search for your photos and videos",
"search_page_selfies": "Selfies",
"search_page_things": "Things",
"search_page_videos": "Videos",
@ -472,6 +495,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -483,6 +507,7 @@
"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",
@ -615,6 +640,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
@ -624,5 +651,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Seleccionar",
"action_common_update": "Actualizar",
"add_a_name": "Añadir nombre",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
"advanced_settings_log_level_title": "Nivel de registro: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} elemento(s) restaurado(s) exitosamente",
"assets_trashed": "{} elemento(s) eliminado(s)",
"assets_trashed_from_server": "{} elemento(s) movido a la papelera en Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Visor de Archivos",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
"backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir",
"backup_album_selection_page_assets_scatter": "Los elementos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
@ -131,6 +137,7 @@
"backup_manual_success": "Éxito",
"backup_manual_title": "Estado de la subida",
"backup_options_page_title": "Opciones de Copia de Seguridad",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} elementos)",
"cache_settings_clear_cache_button": "Borrar caché",
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
"cache_settings_tile_title": "Almacenamiento local",
"cache_settings_title": "Configuración de la caché",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmar Contraseña",
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
"change_password_form_new_password": "Nueva Contraseña",
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Introduzca contraseña",
"client_cert_import": "Importar",
@ -199,6 +210,7 @@
"crop": "Recortar",
"curated_location_page_title": "Lugares",
"curated_object_page_title": "Objetos",
"current_server_address": "Current server address",
"daily_title_text_date": "E dd, MMM",
"daily_title_text_date_year": "E dd de MMM, yyyy",
"date_format": "E d, LLL y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Zona horaria",
"edit_image_title": "Editar",
"edit_location_dialog_title": "Ubicación",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Agregar Descripción...",
"exif_bottom_sheet_details": "DETALLES",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
"experimental_settings_subtitle": "Úsalo bajo tu responsabilidad",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favoritos",
"favorites_page_no_favorites": "No se encontraron elementos marcados como favoritos",
"favorites_page_title": "Favoritos",
"filename_search": "Nombre o extensión",
"filter": "Filtrar",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Activar respuesta háptica",
"haptic_feedback_title": "Respuesta Háptica",
"header_settings_add_header_tip": "Añadir cabecera",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Foto más antigua",
"library_page_sort_most_recent_photo": "Foto más reciente",
"library_page_sort_title": "Título del álbum",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Elegir en el mapa",
"location_picker_latitude": "Latitud",
"location_picker_latitude_error": "Introduce una latitud válida",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "No se puede cambiar la fecha del archivo(s) de solo lectura, omitiendo",
"multiselect_grid_edit_gps_err_read_only": "No se puede cambiar la localización de archivos de solo lectura. Saltando.",
"my_albums": "Mis álbumes",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No hay elementos a mostrar",
"no_name": "Sin nombre",
"notification_permission_dialog_cancel": "Cancelar",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
"places": "Lugares",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferencias",
"profile_drawer_app_logs": "Registros",
"profile_drawer_client_out_of_date_major": "La app está desactualizada. Por favor actualiza a la última versión principal.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papelera",
"recently_added": "Añadidos recientemente",
"recently_added_page_title": "Recién Agregadas",
"save": "Save",
"save_to_gallery": "Guardado en la galería",
"scaffold_body_error_occurred": "Ha ocurrido un error",
"search_albums": "Buscar álbum",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugerencias",
"select_user_for_sharing_page_err_album": "Fallo al crear el álbum",
"select_user_for_sharing_page_share_suggestions": "Sugerencias",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versión de la Aplicación",
"server_info_box_latest_release": "Ultima versión",
"server_info_box_server_url": "URL del servidor",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
"setting_image_viewer_title": "Imágenes",
"setting_languages_apply": "Aplicar",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Idiomas",
"setting_notifications_notify_failures_grace_period": "Notificar fallos de copia de seguridad en segundo plano: {}",
"setting_notifications_notify_hours": "{} horas",
@ -612,6 +639,8 @@
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
"upload_dialog_ok": "Subir",
"upload_dialog_title": "Subir elementos",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Aceptar",
"version_announcement_overlay_release_notes": "notas de versión",
"version_announcement_overlay_text_1": "Hola amigo, hay una nueva versión de",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Quitar de la pila",
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
"viewer_unstack": "Desapilar"
"viewer_unstack": "Desapilar",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
"backup_album_selection_page_albums_tap": "Pulsar para incluir, pulsar dos veces para excluir",
"backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
@ -131,6 +137,7 @@
"backup_manual_success": "Éxito",
"backup_manual_title": "Estado de la subida",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} archivos)",
"cache_settings_clear_cache_button": "Borrar caché",
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
"cache_settings_tile_title": "Almacenamiento local",
"cache_settings_title": "Configuración de la caché",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmar Contraseña",
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
"change_password_form_new_password": "Nueva Contraseña",
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Lugares",
"curated_object_page_title": "Objetos",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd de MMM de yyyy",
"date_format": "E d, LLL y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Agregar Descripción...",
"exif_bottom_sheet_details": "DETALLES",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
"experimental_settings_subtitle": "Úsalo bajo tu responsabilidad",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No se encontraron recursos marcados como favoritos",
"favorites_page_title": "Favoritos",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Foto más reciente",
"library_page_sort_title": "Título del álbum",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancelar",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Registros",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papelera",
"recently_added": "Recently added",
"recently_added_page_title": "Recién Agregadas",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugerencias",
"select_user_for_sharing_page_err_album": "Error al crear álbum",
"select_user_for_sharing_page_share_suggestions": "Sugerencias",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versión de la Aplicación",
"server_info_box_latest_release": "Ultima versión",
"server_info_box_server_url": "URL del servidor",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
"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": "Notificar fallos de copia de seguridad en segundo plano: {}",
"setting_notifications_notify_hours": "{} horas",
@ -612,6 +639,8 @@
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
"upload_dialog_ok": "Subir",
"upload_dialog_title": "Subir elementos",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Aceptar",
"version_announcement_overlay_release_notes": "notas de la versión",
"version_announcement_overlay_text_1": "Hola, amigo, hay una nueva versión de",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Quitar de la pila",
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
"viewer_unstack": "Desapilar"
"viewer_unstack": "Desapilar",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
"backup_album_selection_page_albums_tap": "Pulsar para incluir, pulsar dos veces para excluir",
"backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
@ -131,6 +137,7 @@
"backup_manual_success": "Éxito",
"backup_manual_title": "Estado de la subida",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} archivos)",
"cache_settings_clear_cache_button": "Borrar caché",
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
"cache_settings_tile_title": "Almacenamiento local",
"cache_settings_title": "Configuración de la caché",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmar Contraseña",
"change_password_form_description": "Hola {name},\n\nEsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
"change_password_form_new_password": "Nueva Contraseña",
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Lugares",
"curated_object_page_title": "Objetos",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd de MMM de yyyy",
"date_format": "E d, LLL y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Agregar Descripción...",
"exif_bottom_sheet_details": "DETALLES",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
"experimental_settings_subtitle": "Úsalo bajo tu responsabilidad",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No se encontraron recursos marcados como favoritos",
"favorites_page_title": "Favoritos",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Foto más reciente",
"library_page_sort_title": "Título del álbum",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancelar",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Registros",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papelera",
"recently_added": "Recently added",
"recently_added_page_title": "Recién Agregadas",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugerencias",
"select_user_for_sharing_page_err_album": "Error al crear álbum",
"select_user_for_sharing_page_share_suggestions": "Sugerencias",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versión de la Aplicación",
"server_info_box_latest_release": "Ultima versión",
"server_info_box_server_url": "URL del servidor",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
"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": "Notificar fallos de copia de seguridad en segundo plano: {}",
"setting_notifications_notify_hours": "{} horas",
@ -612,6 +639,8 @@
"upload_dialog_info": "Quieres hacer una copia de seguridad al servidor de los elementos seleccionados?",
"upload_dialog_ok": "Subir",
"upload_dialog_title": "Subir elementos",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Aceptar",
"version_announcement_overlay_release_notes": "notas de la versión",
"version_announcement_overlay_text_1": "Hola, amigo, hay una nueva versión de",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Quitar de la pila",
"viewer_stack_use_as_main_asset": "Usar como elemento principal",
"viewer_unstack": "Desapilar"
"viewer_unstack": "Desapilar",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Agregado a {album}",
"add_to_album_bottom_sheet_already_exists": "Ya se encuentra en {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})",
"backup_album_selection_page_albums_tap": "Pulsar para incluir, pulsar dos veces para excluir",
"backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.",
@ -131,6 +137,7 @@
"backup_manual_success": "Exitoso",
"backup_manual_title": "Estado de subida",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturas de la página de la biblioteca ({} recursos)",
"cache_settings_clear_cache_button": "Borrar caché",
"cache_settings_clear_cache_button_title": "Borra la caché de la aplicación. Esto afectará significativamente el rendimiento de la aplicación hasta que se reconstruya la caché.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controla el comportamiento del almacenamiento local",
"cache_settings_tile_title": "Almacenamiento local",
"cache_settings_title": "Configuración de la caché",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmar Contraseña",
"change_password_form_description": "Hola {name},\n\nÉsta es la primera vez que inicias sesión en el sistema o se ha solicitado cambiar tu contraseña. Por favor, introduce la nueva contraseña a continuación.",
"change_password_form_new_password": "Nueva Contraseña",
"change_password_form_password_mismatch": "Las contraseñas no coinciden",
"change_password_form_reenter_new_password": "Vuelve a ingresar la nueva contraseña",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Lugares",
"curated_object_page_title": "Objetos",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd de MMM, yyyy",
"date_format": "E d, LLL y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Agregar Descripción...",
"exif_bottom_sheet_details": "DETALLES",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental",
"experimental_settings_subtitle": "¡Úsalo bajo tu propio riesgo!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No se encontraron recursos marcados como favoritos",
"favorites_page_title": "Favoritos",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Foto más reciente",
"library_page_sort_title": "Título del álbum",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancelar",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.",
"permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Registros",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papelera",
"recently_added": "Recently added",
"recently_added_page_title": "Recién Agregados",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugerencias",
"select_user_for_sharing_page_err_album": "Error al crear álbum",
"select_user_for_sharing_page_share_suggestions": "Sugerencias",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versión de la Aplicación",
"server_info_box_latest_release": "Ultima versión",
"server_info_box_server_url": "URL del Servidor",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Cargar imagen de previsualización",
"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": "Notificar fallos de copia de seguridad en segundo plano: {}",
"setting_notifications_notify_hours": "{} horas",
@ -612,6 +639,8 @@
"upload_dialog_info": "¿Quieres respaldar los recursos seleccionados en el servidor?",
"upload_dialog_ok": "Subir",
"upload_dialog_title": "Subir recurso",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Aceptar",
"version_announcement_overlay_release_notes": "notas de la versión",
"version_announcement_overlay_text_1": "Hola, amigo, hay una nueva versión de",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Eliminar de la pila",
"viewer_stack_use_as_main_asset": "Utilizar como recurso principal",
"viewer_unstack": "Desapilar"
"viewer_unstack": "Desapilar",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Päivitä",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Lisätty albumiin {album}",
"add_to_album_bottom_sheet_already_exists": "Kohde on jo albumissa {album}",
"advanced_settings_log_level_title": "Lokitaso: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Katselin",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "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.",
@ -131,6 +137,7 @@
"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",
"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.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Hallitse paikallista tallenustilaa",
"cache_settings_tile_title": "Paikallinen tallennustila",
"cache_settings_title": "Välimuistin asetukset",
"cancel": "Cancel",
"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",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Paikat",
"curated_object_page_title": "Asiat",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Aikavyöhyke",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Sijainti",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Lisää kuvaus…",
"exif_bottom_sheet_details": "TIEDOT",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Ota käyttöön kokeellinen kuvaruudukko",
"experimental_settings_subtitle": "Käyttö omalla vastuulla!",
"experimental_settings_title": "Kokeellinen",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Suosikkikohteita ei löytynyt",
"favorites_page_title": "Suosikit",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Ota haptinen palaute käyttöön",
"haptic_feedback_title": "Haptinen palaute",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Vanhin kuva",
"library_page_sort_most_recent_photo": "Viimeisin kuva",
"library_page_sort_title": "Albumin otsikko",
"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": "Leveysaste",
"location_picker_latitude_error": "Lisää kelvollinen leveysaste",
@ -365,6 +386,8 @@
"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": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Ei näytettäviä kohteita",
"no_name": "No name",
"notification_permission_dialog_cancel": "Peruuta",
@ -398,6 +421,7 @@
"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.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Asetukset",
"profile_drawer_app_logs": "Lokit",
"profile_drawer_client_out_of_date_major": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Roskakori",
"recently_added": "Recently added",
"recently_added_page_title": "Viimeksi lisätyt",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Tapahtui virhe",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Ehdotukset",
"select_user_for_sharing_page_err_album": "Albumin luonti epäonnistui",
"select_user_for_sharing_page_share_suggestions": "Ehdotukset",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Sovelluksen versio",
"server_info_box_latest_release": "Viimeisin versio",
"server_info_box_server_url": "Palvelimen URL-osoite",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Haluatko varmuuskopioida valitut kohteet palvelimelle?",
"upload_dialog_ok": "Lähetä",
"upload_dialog_title": "Lähetä kohde",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Tiedostan",
"version_announcement_overlay_release_notes": "julkaisutiedoissa",
"version_announcement_overlay_text_1": "Hei, kaveri! Uusi palvelinversio on saatavilla sovelluksesta",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Poista pinosta",
"viewer_stack_use_as_main_asset": "Käytä pääkohteena",
"viewer_unstack": "Pura pino"
"viewer_unstack": "Pura pino",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Ajouté à {album}",
"add_to_album_bottom_sheet_already_exists": "Déjà dans {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({})",
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
"backup_album_selection_page_assets_scatter": "Les éléments peuvent être répartis sur plusieurs albums. De ce fait, les albums peuvent être inclus ou exclus pendant le processus de sauvegarde.",
@ -131,6 +137,7 @@
"backup_manual_success": "Succès ",
"backup_manual_title": "Statut du téléchargement ",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "vignettes de la page bibliothèque ({} éléments)",
"cache_settings_clear_cache_button": "Effacer le cache",
"cache_settings_clear_cache_button_title": "Efface le cache de l'application. Cela aura un impact significatif sur les performances de l'application jusqu'à ce que le cache soit reconstruit.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Contrôler le comportement du stockage local",
"cache_settings_tile_title": "Stockage local",
"cache_settings_title": "Paramètres de mise en cache",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmez le mot de passe",
"change_password_form_description": "Bonjour {name},\n\nC'est la première fois que vous vous connectez au système ou vous avez demandé de changer votre mot de passe. Veuillez saisir le nouveau mot de passe ci-dessous.",
"change_password_form_new_password": "Nouveau mot de passe",
"change_password_form_password_mismatch": "Les mots de passe ne correspondent pas",
"change_password_form_reenter_new_password": "Saisissez à nouveau le nouveau mot de passe",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Objets",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Ajouter une description...",
"exif_bottom_sheet_details": "DÉTAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Activer la grille de photos expérimentale",
"experimental_settings_subtitle": "Utilisez à vos dépends!",
"experimental_settings_title": "Expérimental",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Aucun élément favori n'a été trouvé",
"favorites_page_title": "Favoris",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Photo la plus récente",
"library_page_sort_title": "Titre de l'album",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Annuler",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limitée. Pour permettre à Immich de sauvegarder et de gérer l'ensemble de votre bibliothèque, accordez l'autorisation pour les photos et vidéos dans les Paramètres.",
"permission_onboarding_request": "Immich demande l'autorisation de visionner vos photos et vidéo",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Journaux",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Corbeille",
"recently_added": "Recently added",
"recently_added_page_title": "Récemment ajouté",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Échec de la création de l'album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Version de l'application",
"server_info_box_latest_release": "Dernière version",
"server_info_box_server_url": "URL du serveur",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
"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": "Notifier les échecs de la sauvegarde en arrière-plan: {}",
"setting_notifications_notify_hours": "{} heures",
@ -612,6 +639,8 @@
"upload_dialog_info": "Voulez-vous sauvegarder la sélection vers le serveur?",
"upload_dialog_ok": "Télécharger ",
"upload_dialog_title": "Télécharger cet élément ",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Confirmer",
"version_announcement_overlay_release_notes": "notes de mise à jour",
"version_announcement_overlay_text_1": "Bonjour, une nouvelle version de",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Retirer de la pile",
"viewer_stack_use_as_main_asset": "Utiliser comme élément principal",
"viewer_unstack": "Désempiler"
"viewer_unstack": "Désempiler",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Sélectionner",
"action_common_update": "Mise à jour",
"add_a_name": "Ajouter un nom",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Ajouté à {album}",
"add_to_album_bottom_sheet_already_exists": "Déjà dans {album}",
"advanced_settings_log_level_title": "Niveau de log : {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "Élément restauré avec succès",
"assets_trashed": "{} élément(s) déplacé(s) vers la corbeille",
"assets_trashed_from_server": "{} élément(s) déplacé(s) vers la corbeille du serveur Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Visualisateur d'éléments",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({})",
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
"backup_album_selection_page_assets_scatter": "Les éléments peuvent être répartis sur plusieurs albums. De ce fait, les albums peuvent être inclus ou exclus pendant le processus de sauvegarde.",
@ -131,6 +137,7 @@
"backup_manual_success": "Succès ",
"backup_manual_title": "Statut du téléchargement ",
"backup_options_page_title": "Options de sauvegarde",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniatures de la page bibliothèque ({} éléments)",
"cache_settings_clear_cache_button": "Effacer le cache",
"cache_settings_clear_cache_button_title": "Efface le cache de l'application. Cela aura un impact significatif sur les performances de l'application jusqu'à ce que le cache soit reconstruit.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Contrôler le comportement du stockage local",
"cache_settings_tile_title": "Stockage local",
"cache_settings_title": "Paramètres de mise en cache",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmez le mot de passe",
"change_password_form_description": "Bonjour {name},\n\nC'est la première fois que vous vous connectez au système ou vous avez demandé à changer votre mot de passe. Veuillez saisir le nouveau mot de passe ci-dessous.",
"change_password_form_new_password": "Nouveau mot de passe",
"change_password_form_password_mismatch": "Les mots de passe ne correspondent pas",
"change_password_form_reenter_new_password": "Saisissez à nouveau le nouveau mot de passe",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "Ok",
"client_cert_enter_password": "Entrer mot de passe",
"client_cert_import": "Imorted",
@ -199,6 +210,7 @@
"crop": "Recadrer",
"curated_location_page_title": "Lieux",
"curated_object_page_title": "Objets",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Fuseau horaire",
"edit_image_title": "Modifier",
"edit_location_dialog_title": "Localisation",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Erreur : {}",
"exif_bottom_sheet_description": "Ajouter une description…",
"exif_bottom_sheet_details": "DÉTAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Activer la grille de photos expérimentale",
"experimental_settings_subtitle": "Utilisez à vos dépends !",
"experimental_settings_title": "Expérimental",
"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",
"favorites": "Favoris",
"favorites_page_no_favorites": "Aucun élément favori n'a été trouvé",
"favorites_page_title": "Favoris",
"filename_search": "Nom de fichier ou extension",
"filter": "Filtres",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Activer le retour haptique",
"haptic_feedback_title": "Retour haptique",
"header_settings_add_header_tip": "Ajouter un en-tête",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Photo la plus ancienne",
"library_page_sort_most_recent_photo": "Photo la plus récente",
"library_page_sort_title": "Titre de l'album",
"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": "Sélectionner sur la carte",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Saisir une latitude correcte",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Impossible de modifier la date d'un élément d'actif en lecture seule.",
"multiselect_grid_edit_gps_err_read_only": "Impossible de modifier l'emplacement d'un élément en lecture seule.",
"my_albums": "Mes albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Aucun élément à afficher",
"no_name": "Sans nom",
"notification_permission_dialog_cancel": "Annuler",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limitée. Pour permettre à Immich de sauvegarder et de gérer l'ensemble de votre bibliothèque, accordez l'autorisation pour les photos et vidéos dans les Paramètres.",
"permission_onboarding_request": "Immich demande l'autorisation de visionner vos photos et vidéo",
"places": "Lieux",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Préférences",
"profile_drawer_app_logs": "Journaux",
"profile_drawer_client_out_of_date_major": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version majeure.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Corbeille",
"recently_added": "Récemment ajouté",
"recently_added_page_title": "Récemment ajouté",
"save": "Save",
"save_to_gallery": "Enregistrer",
"scaffold_body_error_occurred": "Une erreur s'est produite",
"search_albums": "Rechercher des albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Échec de la création de l'album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Version de l'application",
"server_info_box_latest_release": "Dernière version",
"server_info_box_server_url": "URL du serveur",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Charger l'image d'aperçu",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Appliquer",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Langues",
"setting_notifications_notify_failures_grace_period": "Notifier les échecs de la sauvegarde en arrière-plan : {}",
"setting_notifications_notify_hours": "{} heures",
@ -612,6 +639,8 @@
"upload_dialog_info": "Voulez-vous sauvegarder la sélection vers le serveur ?",
"upload_dialog_ok": "Télécharger ",
"upload_dialog_title": "Télécharger cet élément ",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Confirmer",
"version_announcement_overlay_release_notes": "notes de mise à jour",
"version_announcement_overlay_text_1": "Bonjour, une nouvelle version de",
@ -621,5 +650,7 @@
"videos": "Vidéos",
"viewer_remove_from_stack": "Retirer de la pile",
"viewer_stack_use_as_main_asset": "Utiliser comme élément principal",
"viewer_unstack": "Désempiler"
"viewer_unstack": "Désempiler",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "בחר",
"action_common_update": "עדכון",
"add_a_name": "הוסף שם",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "נוסף ל {album}",
"add_to_album_bottom_sheet_already_exists": "כבר ב {album}",
"advanced_settings_log_level_title": "רמת תיעוד אירועים: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} נכס(ים) שוחזרו בהצלחה",
"assets_trashed": "{} נכס(ים) הועברו לאשפה",
"assets_trashed_from_server": "{} נכס(ים) הועברו לאשפה משרת ה-Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "מציג הנכסים",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "אלבומים במכשיר ({})",
"backup_album_selection_page_albums_tap": "הקש כדי לכלול, הקש פעמיים כדי להחריג",
"backup_album_selection_page_assets_scatter": "נכסים יכולים להתפזר על פני אלבומים מרובים. לפיכך, ניתן לכלול או להחריג אלבומים במהלך תהליך הגיבוי",
@ -131,6 +137,7 @@
"backup_manual_success": "הצלחה",
"backup_manual_title": "מצב העלאה",
"backup_options_page_title": "אפשרויות גיבוי",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "תמונות ממוזערות של דף ספרייה ({} נכסים)",
"cache_settings_clear_cache_button": "ניקוי מטמון",
"cache_settings_clear_cache_button_title": "מנקה את המטמון של היישום. זה ישפיע באופן משמעותי על הביצועים של היישום עד שהמטמון נבנה מחדש",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "שלוט בהתנהגות האחסון המקומי",
"cache_settings_tile_title": "אחסון מקומי",
"cache_settings_title": "הגדרות שמירת מטמון",
"cancel": "Cancel",
"change_password_form_confirm_password": "אשר סיסמה",
"change_password_form_description": "הי {name},\n\nזאת או הפעם הראשונה שאת/ה מתחבר/ת למערכת או שנעשתה בקשה לשינוי הסיסמה שלך. נא להזין את הסיסמה החדשה למטה.",
"change_password_form_new_password": "סיסמה חדשה",
"change_password_form_password_mismatch": "סיסמאות לא תואמות",
"change_password_form_reenter_new_password": "הכנס שוב סיסמה חדשה",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "בסדר",
"client_cert_enter_password": "הזן סיסמה",
"client_cert_import": "ייבוא",
@ -199,6 +210,7 @@
"crop": "חתוך",
"curated_location_page_title": "מקומות",
"curated_object_page_title": "דברים",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "אזור זמן",
"edit_image_title": "ערוך",
"edit_location_dialog_title": "מיקום",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "שגיאה: {}",
"exif_bottom_sheet_description": "הוסף תיאור...",
"exif_bottom_sheet_details": "פרטים",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "אפשר רשת תמונות ניסיונית",
"experimental_settings_subtitle": "השימוש הוא על אחריותך בלבד!",
"experimental_settings_title": "נסיוני",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "מועדפים",
"favorites_page_no_favorites": "לא נמצאו נכסים מועדפים",
"favorites_page_title": "מועדפים",
"filename_search": "שם קובץ או סיומת",
"filter": "סנן",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "אפשר משוב ברטט",
"haptic_feedback_title": "משוב ברטט",
"header_settings_add_header_tip": "הוסף כותרת",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "תמונה הכי ישנה",
"library_page_sort_most_recent_photo": "תמונה אחרונה ביותר",
"library_page_sort_title": "כותרת אלבום",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "בחר על מפה",
"location_picker_latitude": "קו רוחב",
"location_picker_latitude_error": "הזן קו רוחב חוקי",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "לא ניתן לערוך תאריך של נכס(ים) לקריאה בלבד, מדלג",
"multiselect_grid_edit_gps_err_read_only": "לא ניתן לערוך מיקום של נכס(ים) לקריאה בלבד, מדלג",
"my_albums": "האלבומים שלי",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "אין נכסים להציג",
"no_name": "ללא שם",
"notification_permission_dialog_cancel": "ביטול",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "הרשאה מוגבלת. כדי לתת ליישום לגבות ולנהל את כל אוסף הגלריה שלך, הענק הרשאה לתמונות וסרטונים בהגדרות",
"permission_onboarding_request": "היישום דורש הרשאה כדי לראות את התמונות והסרטונים שלך",
"places": "מקומות",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "העדפות",
"profile_drawer_app_logs": "יומן",
"profile_drawer_client_out_of_date_major": "האפליקציה לנייד היא מיושנת. נא לעדכן לגרסה הראשית האחרונה",
@ -412,6 +436,7 @@
"profile_drawer_trash": "אשפה",
"recently_added": "נוסף לאחרונה",
"recently_added_page_title": "נוסף לאחרונה",
"save": "Save",
"save_to_gallery": "שמור לגלריה",
"scaffold_body_error_occurred": "אירעה שגיאה",
"search_albums": "חפש/י אלבומים",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "הצעות",
"select_user_for_sharing_page_err_album": "יצירת אלבום נכשלה",
"select_user_for_sharing_page_share_suggestions": "הצעות",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "גרסת יישום",
"server_info_box_latest_release": "גרסה עדכנית ביותר",
"server_info_box_server_url": "כתובת שרת",
@ -480,6 +506,7 @@
"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": "{} שעות",
@ -612,6 +639,8 @@
"upload_dialog_info": "האם ברצונך לגבות את הנכס(ים) שנבחרו לשרת?",
"upload_dialog_ok": "העלאה",
"upload_dialog_title": "העלאת נכס",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "אשר",
"version_announcement_overlay_release_notes": "הערות פרסום",
"version_announcement_overlay_text_1": "הי חבר/ה, יש מהדורה חדשה של",
@ -621,5 +650,7 @@
"videos": "סרטונים",
"viewer_remove_from_stack": "הסר מערימה",
"viewer_stack_use_as_main_asset": "השתמש כנכס ראשי",
"viewer_unstack": "ביטול ערימה"
"viewer_unstack": "ביטול ערימה",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -3,10 +3,11 @@
"action_common_cancel": "Cancel",
"action_common_clear": "Clear",
"action_common_confirm": "Confirm",
"action_common_save": "Save",
"action_common_select": "Select",
"action_common_save": "सहेजें",
"action_common_select": "चुनें",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_a_name": "नाम जोड़ें",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -22,7 +23,7 @@
"advanced_settings_troubleshooting_title": "Troubleshooting",
"album_info_card_backup_album_excluded": "EXCLUDED",
"album_info_card_backup_album_included": "INCLUDED",
"albums": "Albums",
"albums": "एल्बम",
"album_thumbnail_card_item": "1 item",
"album_thumbnail_card_items": "{} items",
"album_thumbnail_card_shared": " · Shared",
@ -38,13 +39,13 @@
"album_viewer_appbar_share_remove": "Remove from album",
"album_viewer_appbar_share_to": "साझा करें",
"album_viewer_page_share_add_users": "Add users",
"all": "All",
"all": "सभी",
"all_people_page_title": "People",
"all_videos_page_title": "Videos",
"app_bar_signout_dialog_content": "क्या आप सुनिश्चित हैं कि आप लॉग आउट करना चाहते हैं?",
"app_bar_signout_dialog_ok": "हाँ",
"app_bar_signout_dialog_title": "लॉग आउट",
"archived": "Archived",
"archived": "संग्रहित",
"archive_page_no_archived_assets": "No archived assets found",
"archive_page_title": "Archive ({})",
"asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping",
@ -58,14 +59,19 @@
"asset_list_layout_sub_title": "Layout",
"asset_list_settings_subtitle": "Photo grid layout settings",
"asset_list_settings_title": "Photo Grid",
"asset_restored_successfully": "Asset restored successfully",
"assets_deleted_permanently": "{} asset(s) deleted permanently",
"assets_deleted_permanently_from_server": "{} asset(s) deleted permanently from the Immich server",
"assets_removed_permanently_from_device": "{} asset(s) removed permanently from your device",
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_restored_successfully": "संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"assets_deleted_permanently": "{} संपत्ति(याँ) स्थायी रूप से हटा दी गईं",
"assets_deleted_permanently_from_server": "{} संपत्ति(याँ) इमिच सर्वर से स्थायी रूप से हटा दी गईं",
"assets_removed_permanently_from_device": "{} संपत्ति(याँ) आपके डिवाइस से स्थायी रूप से हटा दी गईं",
"assets_restored_successfully": "{} संपत्ति(याँ) सफलतापूर्वक पुनर्स्थापित की गईं",
"assets_trashed": "{} संपत्ति(याँ) कचरे में डाली गईं",
"assets_trashed_from_server": "{} संपत्ति(याँ) इमिच सर्वर से कचरे में डाली गईं",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "स्थानीय संग्रहण के व्यवहार को नियंत्रित करें",
"cache_settings_tile_title": "स्थानीय संग्रहण",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -168,7 +179,7 @@
"common_create_new_album": "Create new album",
"common_server_error": "Please check your network connection, make sure the server is reachable and app/server versions are compatible.",
"common_shared": "Shared",
"contextual_search": "Sunrise on the beach",
"contextual_search": "समुद्र तट पर सूर्योदय",
"control_bottom_app_bar_add_to_album": "Add to album",
"control_bottom_app_bar_album_info": "{} items",
"control_bottom_app_bar_album_info_shared": "{} items · Shared",
@ -177,8 +188,8 @@
"control_bottom_app_bar_delete": "Delete",
"control_bottom_app_bar_delete_from_immich": "Delete from Immich",
"control_bottom_app_bar_delete_from_local": "Delete from device",
"control_bottom_app_bar_download": "Download",
"control_bottom_app_bar_edit": "Edit",
"control_bottom_app_bar_download": "डाउनलोड",
"control_bottom_app_bar_edit": "संपादित करें",
"control_bottom_app_bar_edit_location": "Edit Location",
"control_bottom_app_bar_edit_time": "Edit Date & Time",
"control_bottom_app_bar_favorite": "Favorite",
@ -189,16 +200,17 @@
"control_bottom_app_bar_unarchive": "Unarchive",
"control_bottom_app_bar_unfavorite": "Unfavorite",
"control_bottom_app_bar_upload": "Upload",
"create_album": "Create album",
"create_album": "एल्बम बनाएँ",
"create_album_page_untitled": "Untitled",
"create_new": "CREATE NEW",
"create_new": "नया बनाएं",
"create_shared_album_page_create": "Create",
"create_shared_album_page_share": "Share",
"create_shared_album_page_share_add_assets": "ADD ASSETS",
"create_shared_album_page_share_select_photos": "Select Photos",
"crop": "Crop",
"crop": "छाँटें",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -216,26 +228,27 @@
"delete_shared_link_dialog_title": "साझा किए गए लिंक को हटाएं",
"description_input_hint_text": "Add description...",
"description_input_submit_error": "Error updating description, check the log for more details",
"download_canceled": "Download canceled",
"download_complete": "Download complete",
"download_enqueue": "Download enqueued",
"download_error": "Download Error",
"download_failed": "Download failed",
"download_filename": "file: {}",
"download_finished": "Download finished",
"downloading": "Downloading...",
"downloading_media": "Downloading media",
"download_notfound": "Download not found",
"download_paused": "Download paused",
"download_started": "Download started",
"download_sucess": "Download success",
"download_sucess_android": "The media has been downloaded to DCIM/Immich",
"download_waiting_to_retry": "Waiting to retry",
"download_canceled": "डाउनलोड रद्द कर दिया गया",
"download_complete": "डाउनलोड पूरा",
"download_enqueue": "डाउनलोड कतार में है",
"download_error": "डाउनलोड त्रुटि",
"download_failed": "डाउनलोड विफल",
"download_filename": "फ़ाइल: {}",
"download_finished": "डाउनलोड समाप्त",
"downloading": "डाउनलोड हो रहा है...",
"downloading_media": "मीडिया डाउनलोड हो रहा है",
"download_notfound": "डाउनलोड नहीं मिला",
"download_paused": "डाउनलोड स्थगित",
"download_started": "डाउनलोड प्रारंभ हुआ",
"download_sucess": "डाउनलोड सफल",
"download_sucess_android": "मीडिया DCIM/Immich में डाउनलोड हो गया है",
"download_waiting_to_retry": "पुनः प्रयास करने का इंतजार कर रहा है",
"edit_date_time_dialog_date_time": "Date and Time",
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_image_title": "संपादित करें",
"edit_location_dialog_title": "Location",
"error_saving_image": "Error: {}",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "त्रुटि: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
"exif_bottom_sheet_location": "LOCATION",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"favorites": "Favorites",
"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",
"favorites": "पसंदीदा",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"filename_search": "फ़ाइल नाम या एक्सटेंशन",
"filter": "फ़िल्टर",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -274,16 +291,16 @@
"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",
"ignore_icloud_photos": "Ignore iCloud photos",
"ignore_icloud_photos_description": "Photos that are stored on iCloud will not be uploaded to the Immich server",
"image_saved_successfully": "Image saved",
"ignore_icloud_photos": "आइक्लाउड फ़ोटो को अनदेखा करें",
"ignore_icloud_photos_description": "आइक्लाउड पर स्टोर की गई फ़ोटोज़ इमिच सर्वर पर अपलोड नहीं की जाएंगी",
"image_saved_successfully": "इमेज सहेज दी गई",
"image_viewer_page_state_provider_download_error": "Download Error",
"image_viewer_page_state_provider_download_started": "Download Started",
"image_viewer_page_state_provider_download_success": "Download Success",
"image_viewer_page_state_provider_share_error": "Share Error",
"invalid_date": "Invalid date",
"invalid_date_format": "Invalid date format",
"library": "Library",
"invalid_date": "अमान्य तारीख़",
"invalid_date_format": "अमान्य तारीख़ प्रारूप",
"library": "गैलरी",
"library_page_albums": "Albums",
"library_page_archive": "Archive",
"library_page_device_albums": "Albums on Device",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -364,16 +385,18 @@
"motion_photos_page_title": "Motion Photos",
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"my_albums": "मेरे एल्बम",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"no_name": "कोई नाम नहीं",
"notification_permission_dialog_cancel": "Cancel",
"notification_permission_dialog_content": "To enable notifications, go to Settings and select allow.",
"notification_permission_dialog_settings": "Settings",
"notification_permission_list_tile_content": "Grant permission to enable notifications.",
"notification_permission_list_tile_enable_button": "Enable Notifications",
"notification_permission_list_tile_title": "Notification Permission",
"on_this_device": "On this device",
"on_this_device": "इस डिवाइस पर",
"partner_list_user_photos": "{user}'s photos",
"partner_list_view_all": "View all",
"partner_page_add_partner": "Add partner",
@ -385,8 +408,8 @@
"partner_page_stop_sharing_content": "{} will no longer be able to access your photos.",
"partner_page_stop_sharing_title": "Stop sharing your photos?",
"partner_page_title": "Partner",
"partners": "Partners",
"people": "People",
"partners": "साझेदार",
"people": "लोग",
"permission_onboarding_back": "वापस",
"permission_onboarding_continue_anyway": "Continue anyway",
"permission_onboarding_get_started": "Get started",
@ -397,7 +420,8 @@
"permission_onboarding_permission_granted": "Permission granted! You are all set.",
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"places": "स्थान",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -410,37 +434,38 @@
"profile_drawer_settings": "Settings",
"profile_drawer_sign_out": "Sign Out",
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added": "हाल ही में जोड़ा गया",
"recently_added_page_title": "Recently Added",
"save_to_gallery": "Save to gallery",
"save": "Save",
"save_to_gallery": "गैलरी में सहेजें",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
"search_albums": "एल्बम खोजें",
"search_bar_hint": "Search your photos",
"search_filter_apply": "Apply filter",
"search_filter_camera": "Camera",
"search_filter_camera": "कैमरा",
"search_filter_camera_make": "Make",
"search_filter_camera_model": "Model",
"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_camera_title": "कैमरा प्रकार चुनें",
"search_filter_date": "तारीख़",
"search_filter_date_interval": "{start} से {end} तक",
"search_filter_date_title": "तारीख़ की सीमा चुनें",
"search_filter_display_option_archive": "Archive",
"search_filter_display_option_favorite": "Favorite",
"search_filter_display_option_not_in_album": "Not in album",
"search_filter_display_options": "Display Options",
"search_filter_display_options_title": "Display options",
"search_filter_location": "Location",
"search_filter_display_options": "प्रदर्शन विकल्प",
"search_filter_display_options_title": "प्रदर्शन विकल्प",
"search_filter_location": "स्थान",
"search_filter_location_city": "City",
"search_filter_location_country": "Country",
"search_filter_location_state": "State",
"search_filter_location_title": "Select location",
"search_filter_media_type": "Media Type",
"search_filter_location_title": "स्थान चुनें",
"search_filter_media_type": "मीडिया प्रकार",
"search_filter_media_type_all": "All",
"search_filter_media_type_image": "Image",
"search_filter_media_type_title": "Select media type",
"search_filter_media_type_title": "मीडिया प्रकार चुनें",
"search_filter_media_type_video": "Video",
"search_filter_people": "People",
"search_filter_people_title": "Select people",
"search_filter_people": "लोग",
"search_filter_people_title": "लोगों का चयन करें",
"search_page_categories": "Categories",
"search_page_favorites": "Favorites",
"search_page_motion_photos": "Motion Photos",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "लेटेस्ट वर्ज़न",
"server_info_box_server_url": "सर्वर URL",
@ -480,6 +506,7 @@
"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",
@ -560,9 +587,9 @@
"shared_link_info_chip_upload": "Upload",
"shared_link_manage_links": "साझा किए गए लिंक का प्रबंधन करें",
"shared_link_public_album": "Public album",
"shared_links": "Shared links",
"shared_links": "साझा किए गए लिंक",
"share_done": "Done",
"shared_with_me": "Shared with me",
"shared_with_me": "मेरे साथ साझा किया गया",
"share_invite": "Invite to album",
"sharing_page_album": "Shared albums",
"sharing_page_description": "Create shared albums to share photos and videos with people in your network.",
@ -570,32 +597,32 @@
"sharing_silver_appbar_create_shared_album": "New shared album",
"sharing_silver_appbar_shared_links": "Shared links",
"sharing_silver_appbar_share_partner": "Share with partner",
"sync": "Sync",
"sync_albums": "Sync albums",
"sync_albums_manual_subtitle": "Sync all uploaded videos and photos to the selected backup albums",
"sync_upload_album_setting_subtitle": "Create and upload your photos and videos to the selected albums on Immich",
"sync": "सिंक करें",
"sync_albums": "एल्बम्स सिंक करें",
"sync_albums_manual_subtitle": "चुने हुए बैकअप एल्बम्स में सभी अपलोड की गई वीडियो और फ़ोटो सिंक करें",
"sync_upload_album_setting_subtitle": "अपनी फ़ोटो और वीडियो बनाएँ और उन्हें इमिच पर चुने हुए एल्बम्स में अपलोड करें",
"tab_controller_nav_library": "Library",
"tab_controller_nav_photos": "Photos",
"tab_controller_nav_search": "Search",
"tab_controller_nav_sharing": "Sharing",
"theme_setting_asset_list_storage_indicator_title": "Show storage indicator on asset tiles",
"theme_setting_asset_list_tiles_per_row_title": "Number of assets per row ({})",
"theme_setting_colorful_interface_subtitle": "Apply primary color to background surfaces.",
"theme_setting_colorful_interface_title": "Colorful interface",
"theme_setting_colorful_interface_subtitle": "प्राथमिक रंग को पृष्ठभूमि सतहों पर लागू करें",
"theme_setting_colorful_interface_title": "रंगीन इंटरफ़ेस",
"theme_setting_dark_mode_switch": "Dark mode",
"theme_setting_image_viewer_quality_subtitle": "Adjust the quality of the detail image viewer",
"theme_setting_image_viewer_quality_title": "Image viewer quality",
"theme_setting_primary_color_subtitle": "Pick a color for primary actions and accents.",
"theme_setting_primary_color_title": "Primary color",
"theme_setting_system_primary_color_title": "Use system color",
"theme_setting_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_theme_title": "Theme",
"theme_setting_three_stage_loading_subtitle": "Three-stage loading might increase the loading performance but causes significantly higher network load",
"theme_setting_three_stage_loading_title": "Enable three-stage loading",
"translated_text_options": "Options",
"trash": "Trash",
"trash_emptied": "Emptied trash",
"trash": "कचरा",
"trash_emptied": "कचरा खाली कर दिया",
"trash_page_delete": "Delete",
"trash_page_delete_all": "Delete All",
"trash_page_empty_trash_btn": "कूड़ेदान खाली करें",
@ -612,14 +639,18 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
"version_announcement_overlay_text_2": "please take your time to visit the ",
"version_announcement_overlay_text_3": " and ensure your docker-compose and .env setup is up-to-date to prevent any misconfigurations, especially if you use WatchTower or any mechanism that handles updating your server application automatically.",
"version_announcement_overlay_title": "New Server Version Available \uD83C\uDF89",
"videos": "Videos",
"videos": "वीडियो",
"viewer_remove_from_stack": "स्टैक से हटाएं",
"viewer_stack_use_as_main_asset": "मुख्य संपत्ति के रूप में उपयोग करें",
"viewer_unstack": "स्टैक रद्द करें"
"viewer_unstack": "स्टैक रद्द करें",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Kiválaszt",
"action_common_update": "Frissít",
"add_a_name": "Név hozzáadása",
"add_endpoint": "Add endpoint",
"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",
"advanced_settings_log_level_title": "Naplózás szintje: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} elem sikeresen helyreállítva",
"assets_trashed": "{} elem lomtárba helyezve",
"assets_trashed_from_server": "{} elem lomtárba helyezve az Immich szerveren",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Elem Megjelenítő",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "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.",
@ -131,6 +137,7 @@
"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": "Manage background and foreground upload settings",
"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.",
@ -149,11 +156,15 @@
"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",
"cancel": "Cancel",
"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)",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Jelszó Megadása",
"client_cert_import": "Importálás",
@ -199,6 +210,7 @@
"crop": "Kivágás",
"curated_location_page_title": "Helyek",
"curated_object_page_title": "Dolgok",
"current_server_address": "Current server address",
"daily_title_text_date": "MMM dd (E)",
"daily_title_text_date_year": "yyyy MMM dd (E)",
"date_format": "y LLL d (E) • HH:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Időzóna",
"edit_image_title": "Szerkesztés",
"edit_location_dialog_title": "Hely",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Hiba: {}",
"exif_bottom_sheet_description": "Leírás Hozzáadása...",
"exif_bottom_sheet_details": "RÉSZLETEK",
@ -246,11 +259,15 @@
"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",
"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",
"favorites": "Kedvencek",
"favorites_page_no_favorites": "Nem található kedvencnek jelölt elem",
"favorites_page_title": "Kedvencek",
"filename_search": "Fájlnév vagy kiterjesztés",
"filter": "Szűrő",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Rezgéses visszajelzés engedélyezése",
"haptic_feedback_title": "Rezgéses Visszajelzés",
"header_settings_add_header_tip": "Fejléc Hozzáadása",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Legrégebbi fotó",
"library_page_sort_most_recent_photo": "Legújabb fotó",
"library_page_sort_title": "Album címe",
"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": "Válassz a térképen",
"location_picker_latitude": "Szélességi kör",
"location_picker_latitude_error": "Érvényes szélességi kört írj be",
@ -365,6 +386,8 @@
"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",
"my_albums": "Saját albumaim",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Nincs megjeleníthető elem",
"no_name": "Névtelen",
"notification_permission_dialog_cancel": "Mégsem",
@ -398,6 +421,7 @@
"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",
"places": "Helyek",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Beállítások",
"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.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Lomtár",
"recently_added": "Nemrég hozzáadott",
"recently_added_page_title": "Nemrég Hozzáadott",
"save": "Save",
"save_to_gallery": "Mentés a galériába",
"scaffold_body_error_occurred": "Hiba történt",
"search_albums": "Albumok keresése",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Javaslatok",
"select_user_for_sharing_page_err_album": "Az album létrehozása sikertelen",
"select_user_for_sharing_page_share_suggestions": "Javaslatok",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Alkalmazás Verzió",
"server_info_box_latest_release": "Legfrissebb Verzió",
"server_info_box_server_url": "Szerver Címe",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Előnézet betöltése",
"setting_image_viewer_title": "Képek",
"setting_languages_apply": "Alkalmaz",
"setting_languages_subtitle": "Change the app's language",
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Szeretnél mentést készíteni a kiválasztott elem(ek)ről a szerverre?",
"upload_dialog_ok": "Feltöltés",
"upload_dialog_title": "Elem Feltöltése",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Megértettem",
"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: ",
@ -621,5 +650,7 @@
"videos": "Videók",
"viewer_remove_from_stack": "Eltávolít a Csoportból",
"viewer_stack_use_as_main_asset": "Fő Elemnek Beállít",
"viewer_unstack": "Csoport Megszűntetése"
"viewer_unstack": "Csoport Megszűntetése",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Aggiorna",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Aggiunto in {album}",
"add_to_album_bottom_sheet_already_exists": "Già presente in {album}",
"advanced_settings_log_level_title": "Livello log: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Visualizzazione risorse",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Album sul dispositivo ({})",
"backup_album_selection_page_albums_tap": "Tap per includere, doppio tap per escludere.",
"backup_album_selection_page_assets_scatter": "Visto che le risorse possono trovarsi in più album, questi possono essere inclusi o esclusi dal backup.",
@ -131,6 +137,7 @@
"backup_manual_success": "Successo",
"backup_manual_title": "Stato del caricamento",
"backup_options_page_title": "Opzioni di Backup",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Anteprime pagine librerie ({} risorse)",
"cache_settings_clear_cache_button": "Pulisci cache",
"cache_settings_clear_cache_button_title": "Pulisce la cache dell'app. Questo impatterà significativamente le prestazioni dell''app fino a quando la cache non sarà rigenerata.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controlla il comportamento dello storage locale",
"cache_settings_tile_title": "Archiviazione locale",
"cache_settings_title": "Impostazioni della Cache",
"cancel": "Cancel",
"change_password_form_confirm_password": "Conferma Password",
"change_password_form_description": "Ciao {name},\n\nQuesto è la prima volta che accedi al sistema oppure è stato fatto una richiesta di cambiare la password. Per favore inserisca la nuova password qui sotto",
"change_password_form_new_password": "Nuova Password",
"change_password_form_password_mismatch": "Le password non coincidono",
"change_password_form_reenter_new_password": "Inserisci ancora la nuova password ",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Location",
"curated_object_page_title": "Oggetti",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E, d LLL, y • hh:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Fuso orario",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Posizione",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Aggiungi una descrizione...",
"exif_bottom_sheet_details": "DETTAGLI",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Attiva griglia foto sperimentale",
"experimental_settings_subtitle": "Usalo a tuo rischio!",
"experimental_settings_title": "Sperimentale",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Nessun preferito",
"favorites_page_title": "Preferiti",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Abilita feedback aptico",
"haptic_feedback_title": "Feedback aptico",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Foto più vecchia",
"library_page_sort_most_recent_photo": "Più recente",
"library_page_sort_title": "Titolo album",
"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": "Scegli una mappa",
"location_picker_latitude": "Latitudine",
"location_picker_latitude_error": "Inserisci una latitudine valida",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Non puoi modificare la data di risorse in sola lettura, azione ignorata",
"multiselect_grid_edit_gps_err_read_only": "Non puoi modificare la posizione di risorse in sola lettura, azione ignorata",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Nessuna risorsa da mostrare",
"no_name": "No name",
"notification_permission_dialog_cancel": "Annulla",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permessi limitati. Per consentire a Immich di gestire e fare i backup di tutta la galleria, concedi i permessi Foto e Video dalle Impostazioni.",
"permission_onboarding_request": "Immich richiede i permessi per vedere le tue foto e video",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferenze",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione principale.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Cestino",
"recently_added": "Recently added",
"recently_added_page_title": "Aggiunti di recente",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Si è verificato un errore.",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggerimenti ",
"select_user_for_sharing_page_err_album": "Impossibile nel creare l'album ",
"select_user_for_sharing_page_share_suggestions": "Suggerimenti",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versione App",
"server_info_box_latest_release": "Ultima Versione",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Carica immagine di anteprima",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Applica",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Lingue",
"setting_notifications_notify_failures_grace_period": "Notifica caricamenti falliti in background: {}",
"setting_notifications_notify_hours": "{} ore",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vuoi fare il backup sul server delle risorse selezionate?",
"upload_dialog_ok": "Carica",
"upload_dialog_title": "Carica file",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Presa visione",
"version_announcement_overlay_release_notes": "note di rilascio",
"version_announcement_overlay_text_1": "Ciao, c'è una nuova versione di",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Rimuovi dalla pila",
"viewer_stack_use_as_main_asset": "Usa come risorsa principale",
"viewer_unstack": "Rimuovi dal gruppo"
"viewer_unstack": "Rimuovi dal gruppo",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "選択",
"action_common_update": "更新",
"add_a_name": "名前を追加",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "{album}に追加",
"add_to_album_bottom_sheet_already_exists": "{album}に追加済み",
"advanced_settings_log_level_title": "ログレベル: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{}項目を復元しました",
"assets_trashed": "{}項目をゴミ箱に移動しました",
"assets_trashed_from_server": "サーバー上の{}項目をゴミ箱に移動しました",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "アセットビューアー",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "端末上のアルバム数: {} ",
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
"backup_album_selection_page_assets_scatter": "アルバムを選択・除外してバックアップする写真を選ぶ (同じ写真が複数のアルバムに登録されていることがあるため)",
@ -131,6 +137,7 @@
"backup_manual_success": "成功",
"backup_manual_title": "アップロード状況",
"backup_options_page_title": "バックアップオプション",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "ライブラリのサムネイル ({}枚)",
"cache_settings_clear_cache_button": "キャッシュをクリア",
"cache_settings_clear_cache_button_title": "キャッシュを削除 (キャッシュが再生成されるまで、アプリのパフォーマンスが著しく低下します)",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "ローカルストレージの挙動を確認する",
"cache_settings_tile_title": "ローカルストレージ",
"cache_settings_title": "キャッシュの設定",
"cancel": "Cancel",
"change_password_form_confirm_password": "確定",
"change_password_form_description": "{name}さん こんにちは\n\nサーバーにアクセスするのが初めてか、パスワードリセットのリクエストがされました。新しいパスワードを入力してください",
"change_password_form_new_password": "新しいパスワード",
"change_password_form_password_mismatch": "パスワードが一致しません",
"change_password_form_reenter_new_password": "再度パスワードを入力してください",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "了解",
"client_cert_enter_password": "パスワードを入力",
"client_cert_import": "インポート",
@ -199,6 +210,7 @@
"crop": "クロップ",
"curated_location_page_title": "撮影場所",
"curated_object_page_title": "被写体",
"current_server_address": "Current server address",
"daily_title_text_date": "MM DD, EE",
"daily_title_text_date_year": "yyyy MM DD, EE",
"date_format": "MM DD, EE • hh:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "タイムゾーン",
"edit_image_title": "編集",
"edit_location_dialog_title": "位置情報",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "エラー: {}",
"exif_bottom_sheet_description": "説明を追加",
"exif_bottom_sheet_details": "詳細",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "試験的なグリッドを有効化",
"experimental_settings_subtitle": "試験的機能につき自己責任で!",
"experimental_settings_title": "試験的機能",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "お気に入り",
"favorites_page_no_favorites": "お気に入り登録された写真またはビデオがありません",
"favorites_page_title": "お気に入り",
"filename_search": "ファイル名、又は拡張子",
"filter": "フィルター",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "ハプティックフィードバック",
"haptic_feedback_title": "ハプティックフィードバックを有効にする",
"header_settings_add_header_tip": "ヘッダを追加",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "一番古い項目",
"library_page_sort_most_recent_photo": "最近の項目",
"library_page_sort_title": "アルバム名",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "マップを選択",
"location_picker_latitude": "緯度",
"location_picker_latitude_error": "有効な緯度を入力してください",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "読み取り専用の項目の日付を変更できません",
"multiselect_grid_edit_gps_err_read_only": "読み取り専用の項目の位置情報を変更できません",
"my_albums": "自分のアルバム",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "表示する項目がありません",
"no_name": "名前がありません",
"notification_permission_dialog_cancel": "キャンセル",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "写真へのアクセスが制限されています。Immichが写真のバックアップと管理を行うには、システム設定から写真と動画のアクセス権限を変更してください。",
"permission_onboarding_request": "Immichは写真へのアクセス許可が必要です",
"places": "場所",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "設定",
"profile_drawer_app_logs": "ログ",
"profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください",
@ -412,6 +436,7 @@
"profile_drawer_trash": "ゴミ箱",
"recently_added": "最近追加された項目",
"recently_added_page_title": "最近",
"save": "Save",
"save_to_gallery": "ギャラリーに保存",
"scaffold_body_error_occurred": "エラーが発生しました",
"search_albums": "アルバムを探す",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "ユーザーリスト",
"select_user_for_sharing_page_err_album": "アルバム作成に失敗",
"select_user_for_sharing_page_share_suggestions": "ユーザ一覧",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "アプリのバージョン",
"server_info_box_latest_release": "最新バージョン",
"server_info_box_server_url": " サーバーのURL",
@ -480,6 +506,7 @@
"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": "{}時間後",
@ -612,6 +639,8 @@
"upload_dialog_info": "選択した項目のバックアップをしますか?",
"upload_dialog_ok": "アップロード",
"upload_dialog_title": "アップロード",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "了解",
"version_announcement_overlay_release_notes": "更新情報",
"version_announcement_overlay_text_1": "新しい",
@ -621,5 +650,7 @@
"videos": "動画",
"viewer_remove_from_stack": "スタックから外す",
"viewer_stack_use_as_main_asset": "メインの画像として使用する",
"viewer_unstack": "スタックを解除"
"viewer_unstack": "スタックを解除",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "선택",
"action_common_update": "업데이트",
"add_a_name": "이름 추가",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "{album}에 추가되었습니다.",
"add_to_album_bottom_sheet_already_exists": "{album}에 이미 존재하는 항목입니다.",
"advanced_settings_log_level_title": "로그 레벨: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "항목 {}개를 복원했습니다.",
"assets_trashed": "휴지통으로 항목 {}개가 이동되었습니다.",
"assets_trashed_from_server": "휴지통으로 Immich 항목 {}개가 이동되었습니다.",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "보기 옵션",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "기기의 앨범 ({})",
"backup_album_selection_page_albums_tap": "한 번 눌러 선택, 두 번 눌러 제외하세요.",
"backup_album_selection_page_assets_scatter": "각 항목은 여러 앨범에 포함될 수 있으며, 백업 진행 중에도 대상 앨범을 포함하거나 제외할 수 있습니다.",
@ -131,6 +137,7 @@
"backup_manual_success": "성공",
"backup_manual_title": "업로드 상태",
"backup_options_page_title": "백업 옵션",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "라이브러리 섬네일 ({})",
"cache_settings_clear_cache_button": "캐시 지우기",
"cache_settings_clear_cache_button_title": "앱 캐시를 지웁니다. 이 작업은 캐시가 다시 생성될 때까지 앱 성능에 상당한 영향을 미칠 수 있습니다.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "로컬 스토리지 동작 제어",
"cache_settings_tile_title": "로컬 스토리지",
"cache_settings_title": "캐시 설정",
"cancel": "Cancel",
"change_password_form_confirm_password": "현재 비밀번호 입력",
"change_password_form_description": "안녕하세요 {name}님,\n\n첫 로그인이거나, 비밀번호가 초기화되어 비밀번호를 설정해야 합니다. 아래에 새 비밀번호를 입력해주세요.",
"change_password_form_new_password": "새 비밀번호 입력",
"change_password_form_password_mismatch": "비밀번호가 일치하지 않습니다.",
"change_password_form_reenter_new_password": "새 비밀번호 확인",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "확인",
"client_cert_enter_password": "비밀번호 입력",
"client_cert_import": "가져오기",
@ -199,6 +210,7 @@
"crop": "자르기",
"curated_location_page_title": "장소",
"curated_object_page_title": "사물",
"current_server_address": "Current server address",
"daily_title_text_date": "M월 d일 EEEE",
"daily_title_text_date_year": "yyyy년 M월 d일 EEEE",
"date_format": "yyyy년 M월 d일 EEEE • a h:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "시간대",
"edit_image_title": "편집",
"edit_location_dialog_title": "위치",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "오류: {}",
"exif_bottom_sheet_description": "설명 추가...",
"exif_bottom_sheet_details": "상세 정보",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "새 사진 배열 사용 (실험적)",
"experimental_settings_subtitle": "본인 책임 하에 사용하세요!",
"experimental_settings_title": "실험적",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "즐겨찾기",
"favorites_page_no_favorites": "즐겨찾기된 항목 없음",
"favorites_page_title": "즐겨찾기",
"filename_search": "파일 이름 또는 확장자",
"filter": "필터",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "햅틱 피드백 활성화",
"haptic_feedback_title": "햅틱 피드백",
"header_settings_add_header_tip": "헤더 추가",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "오래된 순",
"library_page_sort_most_recent_photo": "최신순",
"library_page_sort_title": "앨범 제목",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "지도에서 선택",
"location_picker_latitude": "위도",
"location_picker_latitude_error": "유효한 위도를 입력하세요.",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "읽기 전용 항목의 날짜는 변경할 수 없습니다. 건너뜁니다.",
"multiselect_grid_edit_gps_err_read_only": "읽기 전용 항목의 위치는 변경할 수 없습니다. 건너뜁니다.",
"my_albums": "내 앨범",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "표시할 항목 없음",
"no_name": "이름 없음",
"notification_permission_dialog_cancel": "취소",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "권한이 없습니다. Immich가 전체 갤러리 컬렉션을 백업하고 관리할 수 있도록 하려면 설정에서 사진 및 동영상 권한을 부여하세요.",
"permission_onboarding_request": "사진 및 동영상 권한이 필요합니다.",
"places": "장소",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "설정",
"profile_drawer_app_logs": "로그",
"profile_drawer_client_out_of_date_major": "모바일 앱이 최신 버전이 아닙니다. 최신 버전으로 업데이트하세요.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "휴지통",
"recently_added": "최근 추가",
"recently_added_page_title": "최근 추가",
"save": "Save",
"save_to_gallery": "갤러리에 저장",
"scaffold_body_error_occurred": "문제가 발생했습니다.",
"search_albums": "앨범 검색",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "추천",
"select_user_for_sharing_page_err_album": "앨범을 생성하지 못했습니다.",
"select_user_for_sharing_page_share_suggestions": "제안",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "앱 버전",
"server_info_box_latest_release": "최신 버전",
"server_info_box_server_url": "서버 URL",
@ -480,6 +506,7 @@
"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": "{}시간 후",
@ -612,6 +639,8 @@
"upload_dialog_info": "선택한 항목을 서버에 백업하시겠습니까?",
"upload_dialog_ok": "업로드",
"upload_dialog_title": "항목 업로드",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "확인",
"version_announcement_overlay_release_notes": "릴리스 노트",
"version_announcement_overlay_text_1": "안녕하세요,",
@ -621,5 +650,7 @@
"videos": "동영상",
"viewer_remove_from_stack": "스택에서 제거",
"viewer_stack_use_as_main_asset": "대표 사진으로 설정",
"viewer_unstack": "스택 해제"
"viewer_unstack": "스택 해제",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancel",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Atjaunināt",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Pievienots {album}",
"add_to_album_bottom_sheet_already_exists": "Jau pievienots {album}",
"advanced_settings_log_level_title": "Žurnalēšanas līmenis: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Aktīvu Skatītājs",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "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.",
@ -131,6 +137,7 @@
"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",
"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.",
@ -149,11 +156,15 @@
"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",
"cancel": "Cancel",
"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",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Vietas",
"curated_object_page_title": "Lietas",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, gggg",
"date_format": "E, LLL d, g • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Laika zona",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Atrašanās vieta",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Pievienot Aprakstu...",
"exif_bottom_sheet_details": "INFORMĀCIJA",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Iespējot eksperimentālo fotorežģi",
"experimental_settings_subtitle": "Izmanto uzņemoties risku!",
"experimental_settings_title": "Eksperimentāls",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Nav atrasti iecienītākie aktīvi",
"favorites_page_title": "Izlase",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Iestatīt haptisku reakciju",
"haptic_feedback_title": "Haptiska Reakcija",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Vecākais fotoattēls",
"library_page_sort_most_recent_photo": "Jaunākais fotoattēls",
"library_page_sort_title": "Albuma virsraksts",
"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": "Ģeogrāfiskais platums",
"location_picker_latitude_error": "Ievadiet korektu ģeogrāfisko platumu",
@ -365,6 +386,8 @@
"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": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Nav uzrādāmo aktīvu",
"no_name": "No name",
"notification_permission_dialog_cancel": "Atcelt",
@ -398,6 +421,7 @@
"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.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Iestatījumi",
"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",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Atkritne",
"recently_added": "Recently added",
"recently_added_page_title": "Nesen Pievienotais",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Radās kļūda",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Ieteikumi",
"select_user_for_sharing_page_err_album": "Neizdevās izveidot albumu",
"select_user_for_sharing_page_share_suggestions": "Ieteikumi",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Aplikācijas Versija",
"server_info_box_latest_release": "Jaunākā Versija",
"server_info_box_server_url": "Servera URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Ielādēt priekšskatījuma attēlu",
"setting_image_viewer_title": "Attēli",
"setting_languages_apply": "Lietot",
"setting_languages_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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vai vēlaties veikt izvēlētā(-o) aktīva(-u) dublējumu uz servera?",
"upload_dialog_ok": "Augšupielādēt",
"upload_dialog_title": "Augšupielādēt Aktīvu",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Atzīt",
"version_announcement_overlay_release_notes": "informācija par laidienu",
"version_announcement_overlay_text_1": "Sveiks draugs, ir jauns izlaidums no",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Noņemt no Steka",
"viewer_stack_use_as_main_asset": "Izmantot kā Galveno Aktīvu",
"viewer_unstack": "At-Stekot"
"viewer_unstack": "At-Stekot",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Цуцлах",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Velg",
"action_common_update": "Oppdater",
"add_a_name": "Legg til navn",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Lagt til i {album}",
"add_to_album_bottom_sheet_already_exists": "Allerede i {album}",
"advanced_settings_log_level_title": "Loggnivå: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} objekt(er) gjenopprettet",
"assets_trashed": "{} objekt(er) slettet",
"assets_trashed_from_server": "{} objekt(er) slettet fra Immich serveren",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Objektviser",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Album på enhet ({})",
"backup_album_selection_page_albums_tap": "Trykk for å inkludere, dobbelttrykk for å ekskludere",
"backup_album_selection_page_assets_scatter": "Objekter kan bli spredd over flere album. Album kan derfor bli inkludert eller ekskludert under sikkerhetskopieringen.",
@ -131,6 +137,7 @@
"backup_manual_success": "Vellykket",
"backup_manual_title": "Opplastingsstatus",
"backup_options_page_title": "Backupinnstillinger",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Bibliotekminiatyrbilder ({} objekter)",
"cache_settings_clear_cache_button": "Tøm buffer",
"cache_settings_clear_cache_button_title": "Tømmer app-ens buffer. Dette vil ha betydelig innvirkning på appens ytelse inntil bufferen er gjenoppbygd.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Kontroller lokal lagring",
"cache_settings_tile_title": "Lokal lagring",
"cache_settings_title": "Bufringsinnstillinger",
"cancel": "Cancel",
"change_password_form_confirm_password": "Bekreft passord",
"change_password_form_description": "Hei {name}!\n\nDette er enten første gang du logger på systemet, eller det er sendt en forespørsel om å endre passordet ditt. Vennligst skriv inn det nye passordet nedenfor.",
"change_password_form_new_password": "Nytt passord",
"change_password_form_password_mismatch": "Passordene stemmer ikke",
"change_password_form_reenter_new_password": "Skriv nytt passord igjen",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Skriv inn passord",
"client_cert_import": "Importer",
@ -199,6 +210,7 @@
"crop": "Beskjær",
"curated_location_page_title": "Plasseringer",
"curated_object_page_title": "Ting",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Tidssone",
"edit_image_title": "Endre",
"edit_location_dialog_title": "Lokasjon",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Feil: {}",
"exif_bottom_sheet_description": "Legg til beskrivelse ...",
"exif_bottom_sheet_details": "DETALJER",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Aktiver eksperimentell rutenettsvisning",
"experimental_settings_subtitle": "Bruk på egen risiko!",
"experimental_settings_title": "Eksperimentelt",
"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",
"favorites": "Favoritter",
"favorites_page_no_favorites": "Ingen favorittobjekter funnet",
"favorites_page_title": "Favoritter",
"filename_search": "Filnavn eller filtype",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Aktivert haptisk tilbakemelding",
"haptic_feedback_title": "Haptisk tilbakemelding",
"header_settings_add_header_tip": "Legg til header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Eldste bilde",
"library_page_sort_most_recent_photo": "Siste bilde",
"library_page_sort_title": "Albumtittel",
"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": "Velg på kart",
"location_picker_latitude": "Breddegrad",
"location_picker_latitude_error": "Skriv inn en gyldig bredddegrad",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Kan ikke endre dato på objekt(er) med kun lese-rettigheter, hopper over",
"multiselect_grid_edit_gps_err_read_only": "Kan ikke endre lokasjon på objekt(er) med kun lese-rettigheter, hopper over",
"my_albums": "Mine albumer",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Ingen objekter å vise",
"no_name": "Ingen navn",
"notification_permission_dialog_cancel": "Avbryt",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Begrenset tilgang. For å la Immich sikkerhetskopiere og håndtere galleriet, tillatt bilde- og video-tilgang i Innstillinger.",
"permission_onboarding_request": "Immich trenger tilgang til å se dine bilder og videoer",
"places": "Steder",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Innstillinger",
"profile_drawer_app_logs": "Logg",
"profile_drawer_client_out_of_date_major": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Søppelbøtte",
"recently_added": "Nylig lagt til",
"recently_added_page_title": "Nylig lagt til",
"save": "Save",
"save_to_gallery": "Lagre til galleriet",
"scaffold_body_error_occurred": "Feil oppstått",
"search_albums": "Søk i albumer",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Forslag",
"select_user_for_sharing_page_err_album": "Feilet ved oppretting av album",
"select_user_for_sharing_page_share_suggestions": "Forslag",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App-versjon",
"server_info_box_latest_release": "Siste versjon",
"server_info_box_server_url": "Server-adresse",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Last forhåndsvisningsbilde",
"setting_image_viewer_title": "Bilder",
"setting_languages_apply": "Bekreft",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Språk",
"setting_notifications_notify_failures_grace_period": "Varsle om sikkerhetskopieringsfeil i bakgrunnen: {}",
"setting_notifications_notify_hours": "{} timer",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vil du utføre backup av valgte objekt(er) til serveren?",
"upload_dialog_ok": "Last opp",
"upload_dialog_title": "Last opp objekt",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Bekreft",
"version_announcement_overlay_release_notes": "endringsloggen",
"version_announcement_overlay_text_1": "Hei, det er en ny versjon av",
@ -621,5 +650,7 @@
"videos": "Videoer",
"viewer_remove_from_stack": "Fjern fra stabling",
"viewer_stack_use_as_main_asset": "Bruk som hovedobjekt",
"viewer_unstack": "avstable"
"viewer_unstack": "avstable",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Selecteren",
"action_common_update": "Bijwerken",
"add_a_name": "Naam toevoegen",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Toegevoegd aan {album}",
"add_to_album_bottom_sheet_already_exists": "Staat al in {album}",
"advanced_settings_log_level_title": "Log niveau: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) succesvol hersteld",
"assets_trashed": "{} asset(s) naar de prullenbak verplaatst",
"assets_trashed_from_server": "{} asset(s) naar de prullenbak verplaatst op de Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Foto weergave",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums 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.",
@ -131,6 +137,7 @@
"backup_manual_success": "Succes",
"backup_manual_title": "Uploadstatus",
"backup_options_page_title": "Back-up instellingen",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"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.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Beheer het gedrag van lokale opslag",
"cache_settings_tile_title": "Lokale opslag",
"cache_settings_title": "Cache-instellingen",
"cancel": "Cancel",
"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",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "Ok",
"client_cert_enter_password": "Voer wachtwoord in",
"client_cert_import": "Importeren",
@ -199,6 +210,7 @@
"crop": "Bijsnijden",
"curated_location_page_title": "Plaatsen",
"curated_object_page_title": "Dingen",
"current_server_address": "Current server address",
"daily_title_text_date": "E dd MMM",
"daily_title_text_date_year": "E dd MMM yyyy",
"date_format": "E d LLL y • H:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Tijdzone",
"edit_image_title": "Bewerken",
"edit_location_dialog_title": "Locatie",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Fout: {}",
"exif_bottom_sheet_description": "Beschrijving toevoegen...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Experimenteel fotoraster inschakelen",
"experimental_settings_subtitle": "Gebruik op eigen risico!",
"experimental_settings_title": "Experimenteel",
"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",
"favorites": "Favorieten",
"favorites_page_no_favorites": "Geen favoriete assets gevonden",
"favorites_page_title": "Favorieten",
"filename_search": "Bestandsnaam of extensie",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Aanraaktrillingen inschakelen",
"haptic_feedback_title": "Aanraaktrillingen",
"header_settings_add_header_tip": "Header toevoegen",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oudste foto",
"library_page_sort_most_recent_photo": "Meest recente foto",
"library_page_sort_title": "Albumtitel",
"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": "Kies op kaart",
"location_picker_latitude": "Breedtegraad",
"location_picker_latitude_error": "Voer een geldige breedtegraad in",
@ -365,6 +386,8 @@
"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",
"my_albums": "Mijn albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Geen foto's om te laten zien",
"no_name": "Geen naam",
"notification_permission_dialog_cancel": "Annuleren",
@ -398,6 +421,7 @@
"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.",
"places": "Plaatsen",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Voorkeuren",
"profile_drawer_app_logs": "Logboek",
"profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Prullenbak",
"recently_added": "Onlangs toegevoegd",
"recently_added_page_title": "Recent toegevoegd",
"save": "Save",
"save_to_gallery": "Opslaan in galerij",
"scaffold_body_error_occurred": "Fout opgetreden",
"search_albums": "Albums zoeken",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggesties",
"select_user_for_sharing_page_err_album": "Album aanmaken mislukt",
"select_user_for_sharing_page_share_suggestions": "Suggesties",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Appversie",
"server_info_box_latest_release": "Laatste Versie",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Voorbeeldafbeelding laden",
"setting_image_viewer_title": "Afbeeldingen",
"setting_languages_apply": "Toepassen",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Taal",
"setting_notifications_notify_failures_grace_period": "Fouten van de achtergrond back-up melden: {}",
"setting_notifications_notify_hours": "{} uur",
@ -612,6 +639,8 @@
"upload_dialog_info": "Wil je een backup maken van de geselecteerde asset(s) op de server?",
"upload_dialog_ok": "Uploaden",
"upload_dialog_title": "Asset uploaden",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Bevestig",
"version_announcement_overlay_release_notes": "releaseopmerkingen",
"version_announcement_overlay_text_1": "Hoi, er is een nieuwe versie beschikbaar van",
@ -621,5 +650,7 @@
"videos": "Video's",
"viewer_remove_from_stack": "Verwijder van Stapel",
"viewer_stack_use_as_main_asset": "Gebruik als Hoofd Asset",
"viewer_unstack": "Ontstapel"
"viewer_unstack": "Ontstapel",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Wybierz",
"action_common_update": "Aktualizuj",
"add_a_name": "Dodaj nazwę",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Dodano do {album}",
"add_to_album_bottom_sheet_already_exists": "Już w {album}",
"advanced_settings_log_level_title": "Poziom dziennika: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": " {} zasoby pomyślnie przywrócono",
"assets_trashed": "{} zasoby zostały usunięte",
"assets_trashed_from_server": "{} zasoby usunięte z serwera Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Przeglądarka zasobów",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albumy na urządzeniu ({})",
"backup_album_selection_page_albums_tap": "Stuknij, aby włączyć, stuknij dwukrotnie, aby wykluczyć",
"backup_album_selection_page_assets_scatter": "Pliki mogą być rozproszone w wielu albumach. Dzięki temu albumy mogą być włączane lub wyłączane podczas procesu tworzenia kopii zapasowej.",
@ -131,6 +137,7 @@
"backup_manual_success": "Sukces",
"backup_manual_title": "Stan przesyłania",
"backup_options_page_title": "Opcje kopi zapasowej",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniatury stron bibliotek ({} zasobów)",
"cache_settings_clear_cache_button": "Wyczyść Cache",
"cache_settings_clear_cache_button_title": "Czyści pamięć podręczną aplikacji. Wpłynie to znacząco na wydajność aplikacji, dopóki pamięć podręczna nie zostanie odbudowana.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Kontroluj zachowanie lokalnego magazynu",
"cache_settings_tile_title": "Lokalny magazyn",
"cache_settings_title": "Ustawienia Buforowania",
"cancel": "Cancel",
"change_password_form_confirm_password": "Potwierdź Hasło",
"change_password_form_description": "Cześć {name},\n\nPierwszy raz logujesz się do systemu, albo złożono prośbę o zmianę hasła. Wpisz poniżej nowe hasło.",
"change_password_form_new_password": "Nowe Hasło",
"change_password_form_password_mismatch": "Hasła nie są zgodne",
"change_password_form_reenter_new_password": "Wprowadź ponownie Nowe Hasło",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Wprowadź hasło",
"client_cert_import": "Importuj",
@ -199,6 +210,7 @@
"crop": "Przytnij",
"curated_location_page_title": "Miejsca",
"curated_object_page_title": "Rzeczy",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Strefa czasowa",
"edit_image_title": "Edytuj",
"edit_location_dialog_title": "Lokalizacja",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Błąd: {}",
"exif_bottom_sheet_description": "Dodaj Opis...",
"exif_bottom_sheet_details": "SZCZEGÓŁY",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Włącz eksperymentalną układ zdjęć",
"experimental_settings_subtitle": "Używaj na własne ryzyko!",
"experimental_settings_title": "Eksperymentalny",
"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",
"favorites": "Ulubione",
"favorites_page_no_favorites": "Nie znaleziono ulubionych zasobów",
"favorites_page_title": "Ulubione",
"filename_search": "Nazwa pliku lub rozszerzenie",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Dodaj nagłówek",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Najstarsze zdjęcie",
"library_page_sort_most_recent_photo": "Najnowsze zdjęcie",
"library_page_sort_title": "Tytuł albumu",
"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": "Wybierz na mapie",
"location_picker_latitude": "Szerokość geograficzna",
"location_picker_latitude_error": "Wprowadź prawidłową szerokość geograficzną",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Nie można edytować daty zasobów tylko do odczytu, pomijanie",
"multiselect_grid_edit_gps_err_read_only": "Nie można edytować lokalizacji zasobów tylko do odczytu, pomijanie",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Brak zasobów do pokazania",
"no_name": "Bez nazwy",
"notification_permission_dialog_cancel": "Anuluj",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Pozwolenie ograniczone. Aby umożliwić Immichowi tworzenie kopii zapasowych całej kolekcji galerii i zarządzanie nią, przyznaj uprawnienia do zdjęć i filmów w Ustawieniach.",
"permission_onboarding_request": "Immich potrzebuje pozwolenia na przeglądanie Twoich zdjęć i filmów.",
"places": "Miejsca",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Ustawienia",
"profile_drawer_app_logs": "Logi",
"profile_drawer_client_out_of_date_major": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji głównej.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Kosz",
"recently_added": "Recently added",
"recently_added_page_title": "Ostatnio Dodane",
"save": "Save",
"save_to_gallery": "Zapisz w galerii",
"scaffold_body_error_occurred": "Wystąpił błąd",
"search_albums": "Przeszukaj albumy",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Propozycje",
"select_user_for_sharing_page_err_album": "Nie udało się utworzyć albumu",
"select_user_for_sharing_page_share_suggestions": "Propozycje",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Wersja Aplikacji",
"server_info_box_latest_release": "Ostatnia wersja",
"server_info_box_server_url": "Adres URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Załaduj obraz podglądu",
"setting_image_viewer_title": "Zdjęcia",
"setting_languages_apply": "Zastosuj",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Języki",
"setting_notifications_notify_failures_grace_period": "Powiadomienie o awariach kopii zapasowych w tle: {}",
"setting_notifications_notify_hours": "{} godzin",
@ -612,6 +639,8 @@
"upload_dialog_info": "Czy chcesz wykonać kopię zapasową wybranych zasobów na serwerze?",
"upload_dialog_ok": "Prześlij",
"upload_dialog_title": "Prześlij Zasób",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Potwierdzam",
"version_announcement_overlay_release_notes": "informacje o wydaniu",
"version_announcement_overlay_text_1": "Cześć przyjacielu, jest nowe wydanie",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Usuń ze stosu",
"viewer_stack_use_as_main_asset": "Użyj jako głównego zasobu",
"viewer_unstack": "Usuń stos"
"viewer_unstack": "Usuń stos",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Selecionar",
"action_common_update": "Atualizar",
"add_a_name": "Adicionar nome",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Adicionado a {album}",
"add_to_album_bottom_sheet_already_exists": "Já existe em {album}",
"advanced_settings_log_level_title": "Nível de log: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} arquivo(s) restaurados com sucesso",
"assets_trashed": "{} arquivo(s) enviados para a lixeira",
"assets_trashed_from_server": "{} arquivo(s) do servidor foram enviados para a lixeira",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Visualizador",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Álbuns no dispositivo ({})",
"backup_album_selection_page_albums_tap": "Toque para incluir, duplo toque para excluir",
"backup_album_selection_page_assets_scatter": "Os arquivos podem estar espalhados em vários álbuns. Assim, os álbuns podem ser incluídos ou excluídos durante o processo de backup.",
@ -131,6 +137,7 @@
"backup_manual_success": "Sucesso",
"backup_manual_title": "Estado do envio",
"backup_options_page_title": "Opções de backup",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturas da página da biblioteca ({} arquivos)",
"cache_settings_clear_cache_button": "Limpar cache",
"cache_settings_clear_cache_button_title": "Limpa o cache do aplicativo. Isso afetará significativamente o desempenho do aplicativo até que o cache seja reconstruído.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controlar o comportamento do armazenamento local",
"cache_settings_tile_title": "Armazenamento local",
"cache_settings_title": "Configurações de cache",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirme a senha",
"change_password_form_description": "Esta é a primeira vez que você está acessando o sistema ou foi feita uma solicitação para alterar sua senha. Por favor, insira a nova senha abaixo.",
"change_password_form_new_password": "Nova senha",
"change_password_form_password_mismatch": "As senhas não estão iguais",
"change_password_form_reenter_new_password": "Confirme a nova senha",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Digite a senha",
"client_cert_import": "Importar",
@ -199,6 +210,7 @@
"crop": "Cortar",
"curated_location_page_title": "Locais",
"curated_object_page_title": "Objetos",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E, d LLL, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Fuso horário",
"edit_image_title": "Editar",
"edit_location_dialog_title": "Localização",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Erro: {}",
"exif_bottom_sheet_description": "Adicionar Descrição...",
"exif_bottom_sheet_details": "DETALHES",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Ativar visualização de grade experimental",
"experimental_settings_subtitle": "Use por sua conta e risco!",
"experimental_settings_title": "Experimental",
"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",
"favorites": "Favoritos",
"favorites_page_no_favorites": "Nenhum favorito encontrado",
"favorites_page_title": "Favoritos",
"filename_search": "Nome do arquivo ou extensão",
"filter": "Filtro",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Habilitar vibração",
"haptic_feedback_title": "Vibração",
"header_settings_add_header_tip": "Adicionar cabeçalho",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Foto mais antiga",
"library_page_sort_most_recent_photo": "Foto mais recente",
"library_page_sort_title": "Título do álbum",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Escolha no mapa",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Digite uma latitude válida",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Não é possível editar a data de arquivo só leitura, ignorando",
"multiselect_grid_edit_gps_err_read_only": "Não é possível editar a localização de arquivo só leitura, ignorando",
"my_albums": "Meus álbuns",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Não há arquivos para exibir",
"no_name": "Sem nome",
"notification_permission_dialog_cancel": "Cancelar",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permissão limitada. Para permitir que o Immich faça backups e gerencie sua galeria, conceda permissões para fotos e vídeos nas configurações.",
"permission_onboarding_request": "O Immich requer autorização para ver as suas fotos e vídeos.",
"places": "Lugares",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferências",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "O aplicativo está desatualizado. Por favor, atualize para a versão mais recente.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Lixeira",
"recently_added": "Adicionados Recentemente",
"recently_added_page_title": "Adicionado recentemente",
"save": "Save",
"save_to_gallery": "Salvar na galeria",
"scaffold_body_error_occurred": "Ocorreu um erro",
"search_albums": "Pesquisar Álbuns",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugestões",
"select_user_for_sharing_page_err_album": "Falha ao criar o álbum",
"select_user_for_sharing_page_share_suggestions": "Sugestões",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versão do app",
"server_info_box_latest_release": "Versão mais recente",
"server_info_box_server_url": "URL do servidor",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Carregar imagem de pré-visualização",
"setting_image_viewer_title": "Imagens",
"setting_languages_apply": "Aplicar",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Idioma",
"setting_notifications_notify_failures_grace_period": "Notifique falhas de backup em segundo plano: {}",
"setting_notifications_notify_hours": "{} horas",
@ -612,6 +639,8 @@
"upload_dialog_info": "Deseja fazer o backup dos arquivos selecionados no servidor?",
"upload_dialog_ok": "Enviar",
"upload_dialog_title": "Enviar arquivo",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Entendi",
"version_announcement_overlay_release_notes": "notas da versão",
"version_announcement_overlay_text_1": "Olá, há um novo lançamento de",
@ -621,5 +650,7 @@
"videos": "Vídeos",
"viewer_remove_from_stack": "Remover da pilha",
"viewer_stack_use_as_main_asset": "Usar como foto principal",
"viewer_unstack": "Desempilhar"
"viewer_unstack": "Desempilhar",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Actualizează",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Adăugat în {album}",
"add_to_album_bottom_sheet_already_exists": "Deja în {album}",
"advanced_settings_log_level_title": "Nivel log: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albume în dispozitiv ({})",
"backup_album_selection_page_albums_tap": "Apasă odata pentru a include, de două ori pentru a exclude",
"backup_album_selection_page_assets_scatter": "Resursele pot fi împrăștiate în mai multe albume. Prin urmare, albumele pot fi incluse sau excluse în timpul procesului de backup.",
@ -131,6 +137,7 @@
"backup_manual_success": "Succes",
"backup_manual_title": "Status încărcare",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniaturi pagină galerie ({} resurse)",
"cache_settings_clear_cache_button": "Șterge cache",
"cache_settings_clear_cache_button_title": "Șterge memoria cache a aplicatiei. Performanța aplicației va fi semnificativ afectată până când va fi reconstruită.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Controlează modul stocării locale",
"cache_settings_tile_title": "Stocare locală",
"cache_settings_title": "Setări pentru memoria cache",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirmă parola",
"change_password_form_description": "Salut {name},\n\nAceasta este fie prima dată când te conectazi la sistem, fie s-a făcut o cerere pentru schimbarea parolei. Te rugăm să introduci noua parolă mai jos.",
"change_password_form_new_password": "Parolă nouă",
"change_password_form_password_mismatch": "Parolele nu se potrivesc",
"change_password_form_reenter_new_password": "Reintrodu noua parolă",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Locuri",
"curated_object_page_title": "Obiecte",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Fus orar",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Locație",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Adaugă Descriere...",
"exif_bottom_sheet_details": "DETALII",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Activează grila experimentală de fotografii.",
"experimental_settings_subtitle": "Folosește pe propria răspundere!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "Nu au fost găsite resurse favorite",
"favorites_page_title": "Favorite",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Cea mai veche fotografie",
"library_page_sort_most_recent_photo": "Cea mai recentă fotografie",
"library_page_sort_title": "Titlu album",
"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": "Alege pe hartă",
"location_picker_latitude": "Latitudine",
"location_picker_latitude_error": "Introdu o latitudine validă",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Nu se poate edita data fișierului(lor) cu permisiuni doar pentru citire, omitere",
"multiselect_grid_edit_gps_err_read_only": "Nu se poate edita locația fișierului(lor) cu permisiuni doar pentru citire, omitere",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Anulează",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permisiune limitată. Pentru a permite Immich să facă copii de siguranță și să gestioneze întreaga colecție de galerii, acordă permisiuni pentru fotografii și videoclipuri în Setări.",
"permission_onboarding_request": "Immich necesită permisiunea de a vizualiza fotografiile și videoclipurile tale.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Log-uri",
"profile_drawer_client_out_of_date_major": "Aplicația nu folosește ultima versiune. Te rugăm să actulizezi la ultima versiune majoră.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Coș",
"recently_added": "Recently added",
"recently_added_page_title": "Adăugate recent",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "A apărut o eroare",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugestii",
"select_user_for_sharing_page_err_album": "Creare album eșuată",
"select_user_for_sharing_page_share_suggestions": "Sugestii",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Versiune Aplicatie",
"server_info_box_latest_release": "Ultima versiune",
"server_info_box_server_url": "URL-ul server-ului",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Încarcă imaginea de previzualizare",
"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": "Notificare eșuări backup în fundal: {}",
"setting_notifications_notify_hours": "{} ore",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vrei să backup resursele selectate pe server?",
"upload_dialog_ok": "Incarcă",
"upload_dialog_title": "Încarcă resursă",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Confirm",
"version_announcement_overlay_release_notes": "informații update",
"version_announcement_overlay_text_1": "Salut, există un update nou pentru",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Șterge din grup",
"viewer_stack_use_as_main_asset": "Folosește ca resursă principală",
"viewer_unstack": "Anulează grup"
"viewer_unstack": "Anulează grup",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Выбрать",
"action_common_update": "Обновить",
"add_a_name": "Добавить имя",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Добавлено в {album}",
"add_to_album_bottom_sheet_already_exists": "Уже в {album}",
"advanced_settings_log_level_title": "Уровень логирования:",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} объект(ы) успешно восстановлен(ы)",
"assets_trashed": "{} объект(ы) помещен(ы) в корзину",
"assets_trashed_from_server": "{} объект(ы) помещен(ы) в корзину на сервере Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Просмотр изображений",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Альбомы на устройстве ({})",
"backup_album_selection_page_albums_tap": "Нажмите, чтобы включить,\nнажмите дважды, чтобы исключить",
"backup_album_selection_page_assets_scatter": "Ваши изображения и видео могут находиться в разных альбомах. Вы можете выбрать, какие альбомы включить, а какие исключить из резервного копирования.",
@ -131,6 +137,7 @@
"backup_manual_success": "Успешно",
"backup_manual_title": "Статус загрузки",
"backup_options_page_title": "Резервное копирование",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Миниатюры страниц библиотеки ({} объектов)",
"cache_settings_clear_cache_button": "Очистить кэш",
"cache_settings_clear_cache_button_title": "Очищает кэш приложения. Это негативно повлияет на производительность, пока кэш не будет создан заново.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Управление локальным хранилищем",
"cache_settings_tile_title": "Локальное хранилище",
"cache_settings_title": "Настройки кэширования",
"cancel": "Cancel",
"change_password_form_confirm_password": "Подтвердите пароль",
"change_password_form_description": "Привет, {name}!\n\nЛибо ваш первый вход в систему, либо вы запросили смену пароля. Пожалуйста, введите новый пароль ниже.",
"change_password_form_new_password": "Новый пароль",
"change_password_form_password_mismatch": "Пароли не совпадают",
"change_password_form_reenter_new_password": "Повторно введите новый пароль",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Введите пароль",
"client_cert_import": "Импорт",
@ -199,6 +210,7 @@
"crop": "Обрезать",
"curated_location_page_title": "Места",
"curated_object_page_title": "Предметы",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Часовой пояс",
"edit_image_title": "Редактировать",
"edit_location_dialog_title": "Местоположение",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Ошибка: {}",
"exif_bottom_sheet_description": "Добавить описание...",
"exif_bottom_sheet_details": "ПОДРОБНОСТИ",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Включить экспериментальную сетку фотографий",
"experimental_settings_subtitle": "Используйте на свой страх и риск!",
"experimental_settings_title": "Экспериментальные функции",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Избранное",
"favorites_page_no_favorites": "В избранном сейчас пусто",
"favorites_page_title": "Избранное",
"filename_search": "Имя или расширение файла",
"filter": "Фильтр",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Включить тактильную отдачу",
"haptic_feedback_title": "Тактильная отдача",
"header_settings_add_header_tip": "Добавить заголовок",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Старые фото",
"library_page_sort_most_recent_photo": "Последние фото",
"library_page_sort_title": "Название альбома",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Выбрать на карте",
"location_picker_latitude": "Широта",
"location_picker_latitude_error": "Укажите правильную широту",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Невозможно изменить дату файлов только для чтения, пропуск",
"multiselect_grid_edit_gps_err_read_only": "Невозможно изменить местоположение файлов только для чтения, пропуск",
"my_albums": "Мои альбомы",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Медиа отсутствуют",
"no_name": "Без имени",
"notification_permission_dialog_cancel": "Отмена",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Доступ к файлам ограничен. Чтобы Immich мог создавать резервные копии и управлять вашей галереей, пожалуйста, предоставьте приложению разрешение на доступ к \"Фото и видео\" в настройках.",
"permission_onboarding_request": "Приложению необходимо разрешение на доступ к вашим фото и видео",
"places": "Места",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Параметры",
"profile_drawer_app_logs": "Журнал",
"profile_drawer_client_out_of_date_major": "Версия мобильного приложения устарела. Пожалуйста, обновите его.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Корзина",
"recently_added": "Недавно добавленные",
"recently_added_page_title": "Недавно добавленные",
"save": "Save",
"save_to_gallery": "Сохранить в галерею",
"scaffold_body_error_occurred": "Возникла ошибка",
"search_albums": "Поиск альбома",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Предложения",
"select_user_for_sharing_page_err_album": "Не удалось создать альбом",
"select_user_for_sharing_page_share_suggestions": "Предложения",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Версия приложения",
"server_info_box_latest_release": "Последняя версия",
"server_info_box_server_url": "URL сервера",
@ -480,6 +506,7 @@
"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": "{} ч.",
@ -612,6 +639,8 @@
"upload_dialog_info": "Хотите создать резервную копию выбранных объектов на сервере?",
"upload_dialog_ok": "Загрузить",
"upload_dialog_title": "Загрузить объект",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Понятно",
"version_announcement_overlay_release_notes": "примечания к выпуску",
"version_announcement_overlay_text_1": "Привет, друг! Вышла новая версия",
@ -621,5 +650,7 @@
"videos": "Видео",
"viewer_remove_from_stack": "Удалить из стека",
"viewer_stack_use_as_main_asset": "Использовать в качестве основного объекта",
"viewer_unstack": "Разобрать стек"
"viewer_unstack": "Разобрать стек",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Aktualizovať",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Pridané do {album}",
"add_to_album_bottom_sheet_already_exists": "Už v {album}",
"advanced_settings_log_level_title": "Úroveň logovania: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Zobrazovač položiek",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "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.",
@ -131,6 +137,7 @@
"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",
"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í.",
@ -149,11 +156,15 @@
"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",
"cancel": "Cancel",
"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",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Miesta",
"curated_object_page_title": "Veci",
"current_server_address": "Current server address",
"daily_title_text_date": "EEEE, d. MMMM",
"daily_title_text_date_year": "EEEE, d. MMMM y",
"date_format": "EEEE, d. MMMM y • H:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Časové pásmo",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Poloha",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Pridať popis...",
"exif_bottom_sheet_details": "PODROBNOSTI",
@ -246,11 +259,15 @@
"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",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Žiadne obľúbené médiá",
"favorites_page_title": "Obľúbené",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Povoliť hmatovú odozvu",
"haptic_feedback_title": "Hmatová odozva",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Najstaršia fotka",
"library_page_sort_most_recent_photo": "Najnovšia fotka",
"library_page_sort_title": "Podľa názvu albumu",
"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": "Zemepisná dĺžka",
"location_picker_latitude_error": "Zadajte platnú zemepisnú dĺžku",
@ -365,6 +386,8 @@
"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",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Žiadne položky",
"no_name": "No name",
"notification_permission_dialog_cancel": "Zrušiť",
@ -398,6 +421,7 @@
"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í.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferencie",
"profile_drawer_app_logs": "Logy",
"profile_drawer_client_out_of_date_major": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Kôš",
"recently_added": "Recently added",
"recently_added_page_title": "Nedávno pridané",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Vyskytla sa chyba",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Návrhy",
"select_user_for_sharing_page_err_album": "Nepodarilo sa vytvoriť album",
"select_user_for_sharing_page_share_suggestions": "Návrhy",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Verzia aplikácie",
"server_info_box_latest_release": "Najnovšia verzia",
"server_info_box_server_url": "URL Serveru",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Načítať náhľad obrázka",
"setting_image_viewer_title": "Obrázky",
"setting_languages_apply": "Použiť",
"setting_languages_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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Chcete zálohovať zvolené médiá na server?",
"upload_dialog_ok": "Nahrať",
"upload_dialog_title": "Nahrať médiá",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Potvrdiť",
"version_announcement_overlay_release_notes": "poznámky k vydaniu",
"version_announcement_overlay_text_1": "Ahoj, je tu nová verzia",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Odstrániť zo zoskupenia",
"viewer_stack_use_as_main_asset": "Použiť ako hlavnú fotku",
"viewer_unstack": "Odskupiť"
"viewer_unstack": "Odskupiť",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Posodobi",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Dodano v {album}",
"add_to_album_bottom_sheet_already_exists": "Že v {albumu}",
"advanced_settings_log_level_title": "Nivo dnevnika: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Pregledovalnik sredstev",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albumi v napravi ({})",
"backup_album_selection_page_albums_tap": "Tapnite za vključitev, dvakrat tapnite za izključitev",
"backup_album_selection_page_assets_scatter": "Sredstva so lahko razpršena po več albumih. Tako je mogoče med postopkom varnostnega kopiranja albume vključiti ali izključiti.",
@ -131,6 +137,7 @@
"backup_manual_success": "Uspeh",
"backup_manual_title": "Status nalaganja",
"backup_options_page_title": "Možnosti varnostne kopije",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Sličice strani knjižnice ({} sredstev)",
"cache_settings_clear_cache_button": "Počisti predpomnilnik",
"cache_settings_clear_cache_button_title": "Počisti predpomnilnik aplikacije. To bo znatno vplivalo na delovanje aplikacije, dokler se predpomnilnik ne obnovi.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Nadzoruj vedenje lokalnega shranjevanja",
"cache_settings_tile_title": "Lokalna shramba",
"cache_settings_title": "Nastavitve predpomnjenja",
"cancel": "Cancel",
"change_password_form_confirm_password": "Potrdi geslo",
"change_password_form_description": "Pozdravljeni {name},\n\nTo je bodisi prvič, da se vpisujete v sistem ali pa je bila podana zahteva za spremembo vašega gesla. Spodaj vnesite novo geslo.",
"change_password_form_new_password": "Novo geslo",
"change_password_form_password_mismatch": "Gesli se ne ujemata",
"change_password_form_reenter_new_password": "Znova vnesi novo geslo",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Lokacije",
"curated_object_page_title": "Stvari",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Časovni pas",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Lokacija",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Dodaj opis..",
"exif_bottom_sheet_details": "PODROBNOSTI",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Omogoči eksperimentalno mrežo fotografij",
"experimental_settings_subtitle": "Uporabljajte na lastno odgovornost!",
"experimental_settings_title": "Eksperimentalno",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Ni priljubljenih sredstev",
"favorites_page_title": "Priljubljene",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Uporabi haptičen odziv",
"haptic_feedback_title": "Haptičen odziv",
"header_settings_add_header_tip": "Dodaj glavo",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Najstarejša fotografija",
"library_page_sort_most_recent_photo": "Najnovejša fotografija",
"library_page_sort_title": "Naslov albuma",
"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": "Izberi na zemljevidu",
"location_picker_latitude": "Zemljepisna širina",
"location_picker_latitude_error": "Vnesi veljavno zemljepisno širino",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Ni mogoče urediti datuma sredstev samo za branje, preskočim",
"multiselect_grid_edit_gps_err_read_only": "Ni mogoče urediti lokacije sredstev samo za branje, preskočim",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Ni sredstev za prikaz",
"no_name": "No name",
"notification_permission_dialog_cancel": "Prekliči",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Dovoljenje je omejeno. Če želite Immichu dovoliti varnostno kopiranje in upravljanje vaše celotne zbirke galerij, v nastavitvah podelite dovoljenja za fotografije in videoposnetke.",
"permission_onboarding_request": "Immich potrebuje dovoljenje za ogled vaših fotografij in videoposnetkov.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Nastavitve",
"profile_drawer_app_logs": "Dnevniki",
"profile_drawer_client_out_of_date_major": "Mobilna aplikacija je zastarela. Posodobite na najnovejšo glavno različico.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Smetnjak",
"recently_added": "Recently added",
"recently_added_page_title": "Nedavno dodano",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Prišlo je do napake",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Predlogi",
"select_user_for_sharing_page_err_album": "Albuma ni bilo mogoče ustvariti",
"select_user_for_sharing_page_share_suggestions": "Predlogi",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Različica aplikacije",
"server_info_box_latest_release": "Zadnja verzija",
"server_info_box_server_url": "URL strežnika",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Naloži predogled slike",
"setting_image_viewer_title": "Slike",
"setting_languages_apply": "Uporabi",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Jeziki",
"setting_notifications_notify_failures_grace_period": "Obvesti o napakah varnostnega kopiranja v ozadju: {}",
"setting_notifications_notify_hours": "{} ur",
@ -612,6 +639,8 @@
"upload_dialog_info": "Ali želite varnostno kopirati izbrana sredstva na strežnik?",
"upload_dialog_ok": "Naloži",
"upload_dialog_title": "Naloži sredstvo",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Preverite",
"version_announcement_overlay_release_notes": "opombe ob izdaji",
"version_announcement_overlay_text_1": "Živjo prijatelj, na voljo je nova izdaja",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Odstrani iz sklada",
"viewer_stack_use_as_main_asset": "Uporabi kot glavno sredstvo",
"viewer_unstack": "Razkladi"
"viewer_unstack": "Razkladi",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancel",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Dodato u {album}",
"add_to_album_bottom_sheet_already_exists": "Već u {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albuma na uređaju ({})",
"backup_album_selection_page_albums_tap": "Dodirni da uključiš, dodirni dvaput da isključiš",
"backup_album_selection_page_assets_scatter": "Zapisi se mogu naći u više različitih albuma. Odatle albumi se mogu uključiti ili isključiti tokom procesa pravljenja pozadinskih kopija.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Sličice na stranici biblioteke",
"cache_settings_clear_cache_button": "Obriši keš memoriju",
"cache_settings_clear_cache_button_title": "Ova opcija briše keš memoriju aplikacije. Ovo će bitno uticati na performanse aplikacije dok se keš memorija ne učita ponovo.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Opcije za keširanje",
"cancel": "Cancel",
"change_password_form_confirm_password": "Ponovo unesite šifru",
"change_password_form_description": "Ćao, {name}\n\nOvo je verovatno Vaše prvo pristupanje sistemu, ili je podnešen zahtev za promenu šifre. Molimo Vas, unesite novu šifru ispod",
"change_password_form_new_password": "Nova šifra",
"change_password_form_password_mismatch": "Šifre se ne podudaraju",
"change_password_form_reenter_new_password": "Ponovo unesite novu šifru",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Dodaj opis...",
"exif_bottom_sheet_details": "DETALJI",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Aktiviraj eksperimentalni mrežni prikaz fotografija",
"experimental_settings_subtitle": "Koristiti na sopstvenu odgovornost!",
"experimental_settings_title": "Eksperimentalno",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Omiljeno",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Naziv albuma",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Odustani",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Evidencija",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Sugsetije",
"select_user_for_sharing_page_err_album": "Neuspešno kreiranje albuma",
"select_user_for_sharing_page_share_suggestions": "Sugestije",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Verzija Aplikacije",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Pregledaj sliku",
"setting_image_viewer_title": "Images",
"setting_languages_apply": "Apply",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Languages",
"setting_notifications_notify_failures_grace_period": "Neuspešne rezervne kopije: {}",
"setting_notifications_notify_hours": "{} sati",
@ -612,6 +639,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Priznati",
"version_announcement_overlay_release_notes": "novine nove verzije",
"version_announcement_overlay_text_1": "Ćao, nova verzija",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "Update",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Added to {album}",
"add_to_album_bottom_sheet_already_exists": "Already in {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Asset Viewer",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Albums on device ({})",
"backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude",
"backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.",
@ -131,6 +137,7 @@
"backup_manual_success": "Success",
"backup_manual_title": "Upload status",
"backup_options_page_title": "Backup options",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Library page thumbnails ({} assets)",
"cache_settings_clear_cache_button": "Clear cache",
"cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Control the local storage behaviour",
"cache_settings_tile_title": "Local Storage",
"cache_settings_title": "Caching Settings",
"cancel": "Cancel",
"change_password_form_confirm_password": "Confirm Password",
"change_password_form_description": "Hi {name},\n\nThis is either the first time you are signing into the system or a request has been made to change your password. Please enter the new password below.",
"change_password_form_new_password": "New Password",
"change_password_form_password_mismatch": "Passwords do not match",
"change_password_form_reenter_new_password": "Re-enter New Password",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "Places",
"curated_object_page_title": "Things",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Timezone",
"edit_image_title": "Edit",
"edit_location_dialog_title": "Location",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "Add Description...",
"exif_bottom_sheet_details": "DETAILS",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Enable experimental photo grid",
"experimental_settings_subtitle": "Use at your own risk!",
"experimental_settings_title": "Experimental",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "No favorite assets found",
"favorites_page_title": "Favorites",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Enable haptic feedback",
"haptic_feedback_title": "Haptic Feedback",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Oldest photo",
"library_page_sort_most_recent_photo": "Most recent photo",
"library_page_sort_title": "Album title",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Choose on map",
"location_picker_latitude": "Latitude",
"location_picker_latitude_error": "Enter a valid latitude",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping",
"multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "No assets to show",
"no_name": "No name",
"notification_permission_dialog_cancel": "Cancel",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.",
"permission_onboarding_request": "Immich requires permission to view your photos and videos.",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Preferences",
"profile_drawer_app_logs": "Logs",
"profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Trash",
"recently_added": "Recently added",
"recently_added_page_title": "Recently Added",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "Error occurred",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Suggestions",
"select_user_for_sharing_page_err_album": "Failed to create album",
"select_user_for_sharing_page_share_suggestions": "Suggestions",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App Version",
"server_info_box_latest_release": "Latest Version",
"server_info_box_server_url": "Server URL",
@ -480,6 +506,7 @@
"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",
@ -612,6 +639,8 @@
"upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?",
"upload_dialog_ok": "Upload",
"upload_dialog_title": "Upload Asset",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Acknowledge",
"version_announcement_overlay_release_notes": "release notes",
"version_announcement_overlay_text_1": "Hi friend, there is a new release of",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Remove from Stack",
"viewer_stack_use_as_main_asset": "Use as Main Asset",
"viewer_unstack": "Un-Stack"
"viewer_unstack": "Un-Stack",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Välj",
"action_common_update": "Uppdatera",
"add_a_name": "Lägg till namn",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Tillagd till {album}",
"add_to_album_bottom_sheet_already_exists": "Redan i {album}",
"advanced_settings_log_level_title": "Loggnivå: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} objekt har återställts",
"assets_trashed": "{} objekt raderade",
"assets_trashed_from_server": "{} objekt raderade från Immich-servern",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Objektvisare",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Album på enhet ({})",
"backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera",
"backup_album_selection_page_assets_scatter": "Objekt kan vara utspridda över flera album. Därför kan album inkluderas eller exkluderas under säkerhetskopieringsprocessen",
@ -131,6 +137,7 @@
"backup_manual_success": "Klart",
"backup_manual_title": "Uppladdningsstatus",
"backup_options_page_title": "Säkerhetskopieringsinställningar",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Miniatyrbilder för bibliotek ({} bilder och videor)",
"cache_settings_clear_cache_button": "Rensa cacheminnet",
"cache_settings_clear_cache_button_title": "Rensar appens cacheminne. Detta kommer att avsevärt påverka appens prestanda tills cachen har byggts om.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Kontrollera beteende för lokal lagring",
"cache_settings_tile_title": "Lokal Lagring",
"cache_settings_title": "Cache Inställningar",
"cancel": "Cancel",
"change_password_form_confirm_password": "Bekräfta lösenord",
"change_password_form_description": "Hej {name},\n\nDet är antingen första gången du loggar in i systemet, eller så har det skett en förfrågan om återställning av ditt lösenord. Ange ditt nya lösenord nedan.",
"change_password_form_new_password": "Nytt lösenord",
"change_password_form_password_mismatch": "Lösenorden matchar inte",
"change_password_form_reenter_new_password": "Ange Nytt Lösenord Igen",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Kontrollera",
"check_corrupt_asset_backup_description": "Kör kontrollen endast över Wi-Fi och när alla resurser har säkerhetskopierats. Det kan ta några minuter.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Ange Lösenord",
"client_cert_import": "Importera",
@ -199,6 +210,7 @@
"crop": "Beskär",
"curated_location_page_title": "Platser",
"curated_object_page_title": "Objekt",
"current_server_address": "Current server address",
"daily_title_text_date": "E, dd MMM",
"daily_title_text_date_year": "E, dd MMM, yyyy",
"date_format": "E d. LLL y • hh:mm",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Tidszon",
"edit_image_title": "Redigera",
"edit_location_dialog_title": "Plats",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Fel: {}",
"exif_bottom_sheet_description": "Lägg till beskrivning...",
"exif_bottom_sheet_details": "DETALJER",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Aktivera experimentellt fotorutnät",
"experimental_settings_subtitle": "Använd på egen risk!",
"experimental_settings_title": "Experimentellt",
"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",
"favorites": "Favoriter",
"favorites_page_no_favorites": "Inga favoritobjekt hittades",
"favorites_page_title": "Favoriter",
"filename_search": "Filnamn eller filändelse",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Aktivera haptisk feedback",
"haptic_feedback_title": "Haptisk Feedback",
"header_settings_add_header_tip": "Lägg Till Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Äldsta foto",
"library_page_sort_most_recent_photo": "Senaste foto",
"library_page_sort_title": "Albumtitel",
"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": "Välj på karta",
"location_picker_latitude": "Latitud",
"location_picker_latitude_error": "Ange en giltig latitud",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Kan inte ändra datum på skrivskyddade objekt, hoppar över",
"multiselect_grid_edit_gps_err_read_only": "Kan inte ändra plats på skrivskyddade objekt, hoppar över",
"my_albums": "Mina album",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Inga objekt att visa",
"no_name": "Inget namn",
"notification_permission_dialog_cancel": "Avbryt",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Rättighet begränsad. För att låta Immich säkerhetskopiera och hantera hela ditt galleri, tillåt foto- och video-rättigheter i Inställningar.",
"permission_onboarding_request": "Immich kräver tillstånd för att se dina foton och videor.",
"places": "Platser",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Inställningar",
"profile_drawer_app_logs": "Loggar",
"profile_drawer_client_out_of_date_major": "Mobilappen är utdaterad. Uppdatera till senaste huvudversionen.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Papperskorg",
"recently_added": "Nyligen tillagda",
"recently_added_page_title": "Nyligen tillagda",
"save": "Save",
"save_to_gallery": "Spara i galleri",
"scaffold_body_error_occurred": "Fel uppstod",
"search_albums": "Sök i album",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Förslag",
"select_user_for_sharing_page_err_album": "Kunde inte skapa nytt album",
"select_user_for_sharing_page_share_suggestions": "Förslag",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App-version",
"server_info_box_latest_release": "Senaste Version",
"server_info_box_server_url": "Server-URL",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Ladda förhandsgranskning av bild",
"setting_image_viewer_title": "Bilder",
"setting_languages_apply": "Verkställ",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Språk",
"setting_notifications_notify_failures_grace_period": "Rapportera säkerhetskopieringsfel i bakgrunden: {}",
"setting_notifications_notify_hours": "{} timmar",
@ -612,6 +639,8 @@
"upload_dialog_info": "Vill du säkerhetskopiera de valda objekten till servern?",
"upload_dialog_ok": "Ladda Upp",
"upload_dialog_title": "Ladda Upp Objekt",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Bekräfta",
"version_announcement_overlay_release_notes": "versionsinformation",
"version_announcement_overlay_text_1": "Hej vännen, det finns en ny version av",
@ -621,5 +650,7 @@
"videos": "Videor",
"viewer_remove_from_stack": "Ta bort från Stapeln",
"viewer_stack_use_as_main_asset": "Använd som Huvudobjekt",
"viewer_unstack": "Stapla Av"
"viewer_unstack": "Stapla Av",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Select",
"action_common_update": "อัปเดต",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "เพิ่มไปยัง {album}",
"add_to_album_bottom_sheet_already_exists": "อยู่ใน {album} อยู่แล้ว",
"advanced_settings_log_level_title": "ระดับการ Log: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} asset(s) restored successfully",
"assets_trashed": "{} asset(s) trashed",
"assets_trashed_from_server": "{} asset(s) trashed from the Immich server",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "ตัวดูทรัพยากร",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({})",
"backup_album_selection_page_albums_tap": "กดเพื่อรวม กดสองครั้งเพื่อยกเว้น",
"backup_album_selection_page_assets_scatter": "ทรัพยาการสามารถกระจายไปในหลายอัลบั้ม ดังนั้นอัลบั้มสามารถถูกรวมหรือยกเว้นในกระบวนการสำรองข้อมูล",
@ -131,6 +137,7 @@
"backup_manual_success": "สำเร็จ",
"backup_manual_title": "สถานะอัพโหลด",
"backup_options_page_title": "ตัวเลือกการสำรองข้อมูล",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "รูปย่อคลังภาพ ({} ทรัพยากร)",
"cache_settings_clear_cache_button": "ล้างแคช",
"cache_settings_clear_cache_button_title": "ล้างแคชของแอพ จะส่งผลกระทบต่อประสิทธิภาพแอพจนกว่าแคชจะถูกสร้างใหม่",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "ควบคุมพฤติกรรมของที่จัดเก็บในตัวเครื่อง",
"cache_settings_tile_title": "ที่จัดเก็บในตัวเครื่อง",
"cache_settings_title": "ตั้งค่าแคช",
"cancel": "Cancel",
"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": "กรอกรหัสผ่านใหม่",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Enter Password",
"client_cert_import": "Import",
@ -199,6 +210,7 @@
"crop": "Crop",
"curated_location_page_title": "สถานที่",
"curated_object_page_title": "สิ่งของ",
"current_server_address": "Current server address",
"daily_title_text_date": "E dd MMM",
"daily_title_text_date_year": "E dd MMM yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "เขดเวลา",
"edit_image_title": "Edit",
"edit_location_dialog_title": "ตำแหน่ง",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Error: {}",
"exif_bottom_sheet_description": "เพิ่มคำอธิบาย",
"exif_bottom_sheet_details": "รายละเอียด",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "เปิดตารางรูปภาพที่กำลังทดลอง",
"experimental_settings_subtitle": "ใช้ภายใต้ความเสี่ยงของคุณเอง!",
"experimental_settings_title": "ทดลอง",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Favorites",
"favorites_page_no_favorites": "ไม่พบทรัพยากรในรายการโปรด",
"favorites_page_title": "รายการโปรด",
"filename_search": "File name or extension",
"filter": "Filter",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "เปิดการตอบสนองแบบสัมผัส",
"haptic_feedback_title": "การตอบสนองแบบสัมผัส",
"header_settings_add_header_tip": "Add Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "รูปภาพที่เก่าที่สุด",
"library_page_sort_most_recent_photo": "รูปล่าสุด",
"library_page_sort_title": "ชื่ออัลบั้ม",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "เลือกบนแผนที่",
"location_picker_latitude": "ละติจูต",
"location_picker_latitude_error": "กรุณาเพิ่มละติจูตที่ถูกต้อง",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "ไม่สามารถแก้ไขวันที่ทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
"multiselect_grid_edit_gps_err_read_only": "ไม่สามารถแก้ตำแหน่งของทรัพยากรแบบอ่านอย่างเดียว กำลังข้าม",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "ไม่มีทรัพยากรให้แสดง",
"no_name": "No name",
"notification_permission_dialog_cancel": "ยกเลิก",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "สิทธ์จำกัด เพื่อให้ Immich สำรองข้อมูลและจัดการคลังภาพได้ ตั้งค่าสิทธิเข้าถึงรูปภาพและวิดีโอ",
"permission_onboarding_request": "Immich จำเป็นจะต้องได้รับสิทธิ์ดูรูปภาพและวิดีโอ",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "การตั้งค่า",
"profile_drawer_app_logs": "การบันทึก",
"profile_drawer_client_out_of_date_major": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด",
@ -412,6 +436,7 @@
"profile_drawer_trash": "ขยะ",
"recently_added": "Recently added",
"recently_added_page_title": "เพิ่มล่าสุด",
"save": "Save",
"save_to_gallery": "Save to gallery",
"scaffold_body_error_occurred": "เกิดข้อผิดพลาด",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "ข้อเสนอแนะ",
"select_user_for_sharing_page_err_album": "สร้างอัลบั้มล้มเหลว",
"select_user_for_sharing_page_share_suggestions": "ข้อเสนอแนะ",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "เวอร์ชันแอพ",
"server_info_box_latest_release": "เวอร์ชันล่าสุด",
"server_info_box_server_url": "URL เซิร์ฟเวอร์",
@ -480,6 +506,7 @@
"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": "{} ชั่วโมง",
@ -612,6 +639,8 @@
"upload_dialog_info": "คุณต้องการอัพโหลดทรัพยากรดังกล่าวบนเซิร์ฟเวอร์หรือไม่?",
"upload_dialog_ok": "อัปโหลด",
"upload_dialog_title": "อัปโหลดทรัพยากร",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "รับทราบ",
"version_announcement_overlay_release_notes": "รายงานการอัพเดท",
"version_announcement_overlay_text_1": "สวัสดีเพื่อน ขณะนี้มีเวอร์ชั้นใหม่ของ",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "เอาออกจากที่ซ้อน",
"viewer_stack_use_as_main_asset": "ใช้เป็นทรัพยากรหลัก",
"viewer_unstack": "หยุดซ้อน"
"viewer_unstack": "หยุดซ้อน",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Вибрати",
"action_common_update": "Оновити",
"add_a_name": "Додати ім'я",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Додати до {album}",
"add_to_album_bottom_sheet_already_exists": "Вже є в {album}",
"advanced_settings_log_level_title": "Log level: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "{} елемент(и) успішно відновлено",
"assets_trashed": "{} елемент(и) поміщено до кошика",
"assets_trashed_from_server": "{} елемент(и) поміщено до кошика на сервері Immich",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Переглядач зображень",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Альбоми на пристрої ({})",
"backup_album_selection_page_albums_tap": "Торкніться, щоб включити,\nторкніться двічі, щоб виключити",
"backup_album_selection_page_assets_scatter": "Елементи можуть належати до кількох альбомів водночас. Таким чином, альбоми можуть бути включені або вилучені під час резервного копіювання.",
@ -131,6 +137,7 @@
"backup_manual_success": "Успіх",
"backup_manual_title": "Стан завантаження",
"backup_options_page_title": "Резервне копіювання",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Мініатюри сторінок бібліотеки ({} елементи)",
"cache_settings_clear_cache_button": "Очистити кеш",
"cache_settings_clear_cache_button_title": "Очищає кеш програми. Це суттєво знизить продуктивність програми, доки кеш не буде перебудовано.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Керування поведінкою локального сховища",
"cache_settings_tile_title": "Локальне сховище",
"cache_settings_title": "Налаштування кешування",
"cancel": "Cancel",
"change_password_form_confirm_password": "Підтвердити пароль",
"change_password_form_description": "Привіт {name},\n\nВи або або вперше входите у систему, або було зроблено запит на зміну вашого пароля. \nВведіть ваш новий пароль.",
"change_password_form_new_password": "Новий пароль",
"change_password_form_password_mismatch": "Паролі не співпадають",
"change_password_form_reenter_new_password": "Повторіть новий пароль",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "OK",
"client_cert_enter_password": "Введіть пароль",
"client_cert_import": "Імпорт",
@ -199,6 +210,7 @@
"crop": "Кадрувати",
"curated_location_page_title": "Місця",
"curated_object_page_title": "Речі",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Часовий пояс",
"edit_image_title": "Редагувати",
"edit_location_dialog_title": "Місцезнаходження",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Помилка: {}",
"exif_bottom_sheet_description": "Додати опис...",
"exif_bottom_sheet_details": "ПОДРОБИЦІ",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "Експериментальний макет знімків",
"experimental_settings_subtitle": "На власний ризик!",
"experimental_settings_title": "Експериментальні",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "Вибране",
"favorites_page_no_favorites": "Немає улюблених елементів",
"favorites_page_title": "Улюблені",
"filename_search": "Ім'я або розширення файлу",
"filter": "Фільтр",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Увімкнути тактильну віддачу",
"haptic_feedback_title": "Тактильна віддача",
"header_settings_add_header_tip": "Додати заголовок",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Найдавніші фото",
"library_page_sort_most_recent_photo": "Найновіші фото",
"library_page_sort_title": "Назва альбому",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "Обрати на мапі",
"location_picker_latitude": "Широта",
"location_picker_latitude_error": "Вкажіть дійсну широту",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Неможливо редагувати дату елементів лише для читання, пропущено",
"multiselect_grid_edit_gps_err_read_only": "Неможливо редагувати місцезнаходження елементів лише для читання, пропущено",
"my_albums": "Мої альбоми",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Елементи відсутні",
"no_name": "Без імені",
"notification_permission_dialog_cancel": "Скасувати",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Обмежений доступ. Аби дозволити Immich резервне копіювання та керування вашою галереєю, надайте доступ до знімків та відео у Налаштуваннях",
"permission_onboarding_request": "Immich потребує доступу до ваших знімків та відео.",
"places": "Місця",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Параметри",
"profile_drawer_app_logs": "Журнал",
"profile_drawer_client_out_of_date_major": "Мобільний додаток застарів. Будь ласка, оновіть до останньої мажорної версії.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Кошик",
"recently_added": "Нещодавно додані",
"recently_added_page_title": "Нещодавні",
"save": "Save",
"save_to_gallery": "Зберегти в галерею",
"scaffold_body_error_occurred": "Виникла помилка",
"search_albums": "Пошук альбому",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Пропозиції",
"select_user_for_sharing_page_err_album": "Не вдалося створити альбом",
"select_user_for_sharing_page_share_suggestions": "Пропозиції",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Версія додатка",
"server_info_box_latest_release": "Остання версія",
"server_info_box_server_url": "URL сервера",
@ -480,6 +506,7 @@
"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": "{} годин",
@ -612,6 +639,8 @@
"upload_dialog_info": "Бажаєте створити резервну копію вибраних елементів на сервері?",
"upload_dialog_ok": "Завантажити",
"upload_dialog_title": "Завантажити Елементи",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Прийняти",
"version_announcement_overlay_release_notes": "примітки до випуску",
"version_announcement_overlay_text_1": "Вітаємо, є новий випуск ",
@ -621,5 +650,7 @@
"videos": "Відео",
"viewer_remove_from_stack": "Видалити зі стеку",
"viewer_stack_use_as_main_asset": "Використовувати як основний елементи",
"viewer_unstack": "Розібрати стек"
"viewer_unstack": "Розібрати стек",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "Chọn",
"action_common_update": "Cập nhật",
"add_a_name": "Add a name",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "Thêm vào {album}",
"add_to_album_bottom_sheet_already_exists": "Đã có sẵn trong {album}",
"advanced_settings_log_level_title": "Phân loại nhật ký: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "Đã khôi phục {} mục thành công",
"assets_trashed": "Đã chuyển {} mục vào thùng rác",
"assets_trashed_from_server": "Đã chuyển {} mục từ máy chủ Immich vào thùng rác",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "Trình xem ảnh",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "Album trên thiết bị ({})",
"backup_album_selection_page_albums_tap": "Nhấn để chọn, nhấn đúp để bỏ qua",
"backup_album_selection_page_assets_scatter": "Ảnh có thể có trong nhiều album khác nhau. Trong quá trình sao lưu, bạn có thể chọn để sao lưu tất cả các album hoặc chỉ một số album nhất định.",
@ -121,7 +127,7 @@
"backup_controller_page_total": "Tổng số",
"backup_controller_page_total_sub": "Tất cả ảnh và video không trùng lập từ các album được chọn",
"backup_controller_page_turn_off": "Tắt sao lưu khi ứng dụng hoạt động",
"backup_controller_page_turn_on": "Bật sao lưu khi ứng dụng hoạt động",
"backup_controller_page_turn_on": "Bật sao lưu khi mở ứng dụng",
"backup_controller_page_uploading_file_info": "Thông tin tệp đang tải lên",
"backup_err_only_album": "Không thể xóa album duy nhất",
"backup_info_card_assets": "ảnh",
@ -131,6 +137,7 @@
"backup_manual_success": "Thành công",
"backup_manual_title": "Trạng thái tải lên",
"backup_options_page_title": "Tuỳ chỉnh sao lưu",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "Trang thư viện hình thu nhỏ ({} ảnh)",
"cache_settings_clear_cache_button": "Xoá bộ nhớ đệm",
"cache_settings_clear_cache_button_title": "Xóa bộ nhớ đệm của ứng dụng. Điều này sẽ ảnh hưởng đến hiệu suất của ứng dụng đến khi bộ nhớ đệm được tạo lại.",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "Kiểm soát cách xử lý lưu trữ cục bộ",
"cache_settings_tile_title": "Lưu trữ cục bộ",
"cache_settings_title": "Cài đặt bộ nhớ đệm",
"cancel": "Cancel",
"change_password_form_confirm_password": "Xác nhận mật khẩu",
"change_password_form_description": "Xin chào {name},\n\nĐây là lần đầu tiên bạn đăng nhập vào hệ thống hoặc đã có yêu cầu thay đổi mật khẩu. Vui lòng nhập mật khẩu mới bên dưới.",
"change_password_form_new_password": "Mật khẩu mới",
"change_password_form_password_mismatch": "Mật khẩu không giống nhau",
"change_password_form_reenter_new_password": "Nhập lại mật khẩu mới",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "Đồng ý",
"client_cert_enter_password": "Nhập mật khẩu",
"client_cert_import": "Nhập",
@ -199,6 +210,7 @@
"crop": "Cắt",
"curated_location_page_title": "Địa điểm",
"curated_object_page_title": "Sự vật",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "Múi giờ",
"edit_image_title": "Sửa",
"edit_location_dialog_title": "Vị trí",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "Lỗi: {}",
"exif_bottom_sheet_description": "Thêm mô tả...",
"exif_bottom_sheet_details": "CHI TIẾT",
@ -246,13 +259,17 @@
"experimental_settings_new_asset_list_title": "Bật lưới ảnh thử nghiệm",
"experimental_settings_subtitle": "Sử dụng có thể rủi ro!",
"experimental_settings_title": "Chưa hoàn thiện",
"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",
"favorites": "Favorites",
"favorites_page_no_favorites": "Không tìm thấy ảnh yêu thích",
"favorites_page_title": "Ảnh yêu thích",
"filename_search": "Tên hoặc phần mở rộng tập tin",
"filter": "Bộ lọc",
"haptic_feedback_switch": "Bật phản hồi haptic\n",
"haptic_feedback_title": "Haptic Feedback\n",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "Bật phản hồi haptic",
"haptic_feedback_title": "Phản hồi Hapic",
"header_settings_add_header_tip": "Thêm Header",
"header_settings_field_validator_msg": "Trường này không được để trống",
"header_settings_header_name_input": "Tên Header",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "Ảnh cũ nhất",
"library_page_sort_most_recent_photo": "Ảnh gần đây nhất",
"library_page_sort_title": "Tiêu đề album",
"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": "Chọn trên bản đồ",
"location_picker_latitude": "Vĩ độ",
"location_picker_latitude_error": "Nhập vĩ độ hợp lệ",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "Không thể chỉnh sửa ngày của ảnh chỉ có quyền đọc, bỏ qua",
"multiselect_grid_edit_gps_err_read_only": "Không thể chỉnh sửa vị trí của ảnh chỉ có quyền đọc, bỏ qua",
"my_albums": "My albums",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "Không có mục nào để hiển thị",
"no_name": "Không có tên",
"notification_permission_dialog_cancel": "Từ chối",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "Quyền truy cập vào ảnh của bạn bị hạn chế. Để Immich sao lưu và quản lý toàn bộ thư viện ảnh của bạn, hãy cấp quyền truy cập toàn bộ ảnh trong Cài đặt.",
"permission_onboarding_request": "Immich cần quyền để xem ảnh và video của bạn",
"places": "Places",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "Tuỳ chỉnh",
"profile_drawer_app_logs": "Nhật ký",
"profile_drawer_client_out_of_date_major": "Ứng dụng đã lỗi thời. Vui lòng cập nhật lên phiên bản chính mới nhất.",
@ -412,6 +436,7 @@
"profile_drawer_trash": "Thùng rác",
"recently_added": "Recently added",
"recently_added_page_title": "Mới thêm gần đây",
"save": "Save",
"save_to_gallery": "Lưu vào thư viện",
"scaffold_body_error_occurred": "Xảy ra lỗi",
"search_albums": "Search albums",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "Gợi ý",
"select_user_for_sharing_page_err_album": "Tạo album thất bại",
"select_user_for_sharing_page_share_suggestions": "Gợi ý",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "Phiên bản ứng dụng",
"server_info_box_latest_release": "Phiên bản mới nhất",
"server_info_box_server_url": "Địa chỉ máy chủ",
@ -480,6 +506,7 @@
"setting_image_viewer_preview_title": "Tải ảnh xem trước",
"setting_image_viewer_title": "Hình ảnh",
"setting_languages_apply": "Áp dụng",
"setting_languages_subtitle": "Change the app's language",
"setting_languages_title": "Ngôn ngữ",
"setting_notifications_notify_failures_grace_period": "Thông báo sao lưu nền thất bại: {}",
"setting_notifications_notify_hours": "{} giờ",
@ -612,6 +639,8 @@
"upload_dialog_info": "Bạn có muốn sao lưu những mục đã chọn tới máy chủ không?",
"upload_dialog_ok": "Tải lên",
"upload_dialog_title": "Tải lên ảnh",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "Công nhận",
"version_announcement_overlay_release_notes": "ghi chú phát hành",
"version_announcement_overlay_text_1": "Chào bạn, có một bản phát hành mới của",
@ -621,5 +650,7 @@
"videos": "Videos",
"viewer_remove_from_stack": "Xoá khỏi nhóm",
"viewer_stack_use_as_main_asset": "Đặt làm lựa chọn hàng đầu",
"viewer_unstack": "Huỷ xếp nhóm"
"viewer_unstack": "Huỷ xếp nhóm",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "选择",
"action_common_update": "更新",
"add_a_name": "添加姓名",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "添加到 {album}",
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
"advanced_settings_log_level_title": "日志等级:{}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "已成功恢复{}个项目",
"assets_trashed": "{}个回收站项目",
"assets_trashed_from_server": "{}个项目已放入回收站",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "资源查看器",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "设备上的相册({}",
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
"backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。",
@ -131,6 +137,7 @@
"backup_manual_success": "成功",
"backup_manual_title": "上传状态",
"backup_options_page_title": "备份选项",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "图库缩略图({} 项)",
"cache_settings_clear_cache_button": "清除缓存",
"cache_settings_clear_cache_button_title": "清除应用缓存。在重新生成缓存之前,将显著影响应用的性能。",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "设置本地存储行为",
"cache_settings_tile_title": "本地存储",
"cache_settings_title": "缓存设置",
"cancel": "Cancel",
"change_password_form_confirm_password": "确认密码",
"change_password_form_description": "{name} 您好,\n\n这是您首次登录系统或被管理员要求更改密码。\n请在下方输入新密码。",
"change_password_form_new_password": "新密码",
"change_password_form_password_mismatch": "密码不匹配",
"change_password_form_reenter_new_password": "再次输入新密码",
"check_corrupt_asset_backup": "检查备份是否损坏",
"check_corrupt_asset_backup_button": "执行检查",
"check_corrupt_asset_backup_description": "仅在连接到Wi-Fi并完成所有项目备份后执行此检查。该过程可能需要几分钟。",
"client_cert_dialog_msg_confirm": "确定",
"client_cert_enter_password": "输入密码",
"client_cert_import": "导入",
@ -199,6 +210,7 @@
"crop": "裁剪",
"curated_location_page_title": "地点",
"curated_object_page_title": "事物",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "时区",
"edit_image_title": "编辑",
"edit_location_dialog_title": "位置",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "错误:{}",
"exif_bottom_sheet_description": "添加描述...",
"exif_bottom_sheet_details": "详情",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "启用实验性照片网格",
"experimental_settings_subtitle": "使用风险自负!",
"experimental_settings_title": "实验性功能",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "收藏",
"favorites_page_no_favorites": "未找到收藏项目",
"favorites_page_title": "收藏",
"filename_search": "文件名或扩展名",
"filter": "筛选",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "启用振动反馈",
"haptic_feedback_title": "振动反馈",
"header_settings_add_header_tip": "添加标头",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "最早的照片",
"library_page_sort_most_recent_photo": "最近的项目",
"library_page_sort_title": "相册标题",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "在地图上选择",
"location_picker_latitude": "纬度",
"location_picker_latitude_error": "输入有效的纬度值",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过",
"multiselect_grid_edit_gps_err_read_only": "无法编辑只读项目的位置信息,跳过",
"my_albums": "我的相册",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "无项目展示",
"no_name": "无姓名",
"notification_permission_dialog_cancel": "取消",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。",
"permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。",
"places": "地点",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "偏好设置",
"profile_drawer_app_logs": "日志",
"profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。",
@ -412,6 +436,7 @@
"profile_drawer_trash": "回收站",
"recently_added": "近期添加",
"recently_added_page_title": "最近添加",
"save": "Save",
"save_to_gallery": "保存到图库",
"scaffold_body_error_occurred": "发生错误",
"search_albums": "搜索相册",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "建议",
"select_user_for_sharing_page_err_album": "创建相册失败",
"select_user_for_sharing_page_share_suggestions": "建议",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App 版本",
"server_info_box_latest_release": "最新版本",
"server_info_box_server_url": "服务器地址",
@ -480,6 +506,7 @@
"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": "{} 小时",
@ -612,6 +639,8 @@
"upload_dialog_info": "是否要将所选项目备份到服务器?",
"upload_dialog_ok": "上传",
"upload_dialog_title": "上传项目",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "我知道了",
"version_announcement_overlay_release_notes": "发行说明",
"version_announcement_overlay_text_1": "号外号外,有新版本的",
@ -621,5 +650,7 @@
"videos": "视频",
"viewer_remove_from_stack": "从堆叠中移除",
"viewer_stack_use_as_main_asset": "作为主项目使用",
"viewer_unstack": "取消堆叠"
"viewer_unstack": "取消堆叠",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "选择",
"action_common_update": "更新",
"add_a_name": "添加姓名",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "添加到 {album}",
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
"advanced_settings_log_level_title": "日志等级:{}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "已成功恢复{}个项目",
"assets_trashed": "{}个回收站项目",
"assets_trashed_from_server": "{}个项目已放入回收站",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "资源查看器",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "设备上的相册({}",
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
"backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。",
@ -131,6 +137,7 @@
"backup_manual_success": "成功",
"backup_manual_title": "上传状态",
"backup_options_page_title": "备份选项",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "图库缩略图({} 项)",
"cache_settings_clear_cache_button": "清除缓存",
"cache_settings_clear_cache_button_title": "清除应用缓存。在重新生成缓存之前,将显著影响应用的性能。",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "设置本地存储行为",
"cache_settings_tile_title": "本地存储",
"cache_settings_title": "缓存设置",
"cancel": "Cancel",
"change_password_form_confirm_password": "确认密码",
"change_password_form_description": "{name} 您好,\n\n这是您首次登录系统或被管理员要求更改密码。\n请在下方输入新密码。",
"change_password_form_new_password": "新密码",
"change_password_form_password_mismatch": "密码不匹配",
"change_password_form_reenter_new_password": "再次输入新密码",
"check_corrupt_asset_backup": "检查备份是否损坏",
"check_corrupt_asset_backup_button": "执行检查",
"check_corrupt_asset_backup_description": "仅在连接到Wi-Fi并完成所有项目备份后执行此检查。该过程可能需要几分钟。",
"client_cert_dialog_msg_confirm": "确定",
"client_cert_enter_password": "输入密码",
"client_cert_import": "导入",
@ -199,6 +210,7 @@
"crop": "裁剪",
"curated_location_page_title": "地点",
"curated_object_page_title": "事物",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "时区",
"edit_image_title": "编辑",
"edit_location_dialog_title": "位置",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "错误:{}",
"exif_bottom_sheet_description": "添加描述...",
"exif_bottom_sheet_details": "详情",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "启用实验性照片网格",
"experimental_settings_subtitle": "使用风险自负!",
"experimental_settings_title": "实验性功能",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "收藏",
"favorites_page_no_favorites": "未找到收藏项目",
"favorites_page_title": "收藏",
"filename_search": "文件名或扩展名",
"filter": "筛选",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "启用振动反馈",
"haptic_feedback_title": "振动反馈",
"header_settings_add_header_tip": "添加标头",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "最早的照片",
"library_page_sort_most_recent_photo": "最近的项目",
"library_page_sort_title": "相册标题",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "在地图上选择",
"location_picker_latitude": "纬度",
"location_picker_latitude_error": "输入有效的纬度值",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过",
"multiselect_grid_edit_gps_err_read_only": "无法编辑只读项目的位置信息,跳过",
"my_albums": "我的相册",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "无项目展示",
"no_name": "无姓名",
"notification_permission_dialog_cancel": "取消",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。",
"permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。",
"places": "地点",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "偏好设置",
"profile_drawer_app_logs": "日志",
"profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。",
@ -412,6 +436,7 @@
"profile_drawer_trash": "回收站",
"recently_added": "近期添加",
"recently_added_page_title": "最近添加",
"save": "Save",
"save_to_gallery": "保存到图库",
"scaffold_body_error_occurred": "发生错误",
"search_albums": "搜索相册",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "建议",
"select_user_for_sharing_page_err_album": "创建相册失败",
"select_user_for_sharing_page_share_suggestions": "建议",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App 版本",
"server_info_box_latest_release": "最新版本",
"server_info_box_server_url": "服务器地址",
@ -480,6 +506,7 @@
"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": "{} 小时",
@ -612,6 +639,8 @@
"upload_dialog_info": "是否要将所选项目备份到服务器?",
"upload_dialog_ok": "上传",
"upload_dialog_title": "上传项目",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "我知道了",
"version_announcement_overlay_release_notes": "发行说明",
"version_announcement_overlay_text_1": "号外号外,有新版本的",
@ -621,5 +650,7 @@
"videos": "视频",
"viewer_remove_from_stack": "从堆叠中移除",
"viewer_stack_use_as_main_asset": "作为主项目使用",
"viewer_unstack": "取消堆叠"
"viewer_unstack": "取消堆叠",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -7,6 +7,7 @@
"action_common_select": "選擇",
"action_common_update": "更新",
"add_a_name": "新增姓名",
"add_endpoint": "Add endpoint",
"add_to_album_bottom_sheet_added": "新增到 {album}",
"add_to_album_bottom_sheet_already_exists": "已在 {album} 中",
"advanced_settings_log_level_title": "日誌等級: {}",
@ -65,7 +66,12 @@
"assets_restored_successfully": "已成功恢復 {} 個項目",
"assets_trashed": "{} 個回收桶項目",
"assets_trashed_from_server": "{} 個項目已放入回收桶",
"asset_viewer_settings_subtitle": "Manage your gallery viewer settings",
"asset_viewer_settings_title": "資源查看器",
"automatic_endpoint_switching_subtitle": "Connect locally over designated Wi-Fi when available and use alternative connections elsewhere",
"automatic_endpoint_switching_title": "Automatic URL switching",
"background_location_permission": "Background location permission",
"background_location_permission_content": "In order to switch networks when running in the background, Immich must *always* have precise location access so the app can read the Wi-Fi network's name",
"backup_album_selection_page_albums_device": "裝置上的相簿( {} ",
"backup_album_selection_page_albums_tap": "單擊選中,雙擊取消",
"backup_album_selection_page_assets_scatter": "項目會分散在多個相簿中。因此,可以在備份過程中包含或排除相簿。",
@ -131,6 +137,7 @@
"backup_manual_success": "成功",
"backup_manual_title": "上傳狀態",
"backup_options_page_title": "備份選項",
"backup_setting_subtitle": "Manage background and foreground upload settings",
"cache_settings_album_thumbnails": "圖庫縮圖( {} 項)",
"cache_settings_clear_cache_button": "清除緩存",
"cache_settings_clear_cache_button_title": "清除套用緩存。在重新生成緩存之前,將顯著影響套用的性能。",
@ -149,11 +156,15 @@
"cache_settings_tile_subtitle": "設定本地存儲行為",
"cache_settings_tile_title": "本地存儲",
"cache_settings_title": "緩存設定",
"cancel": "Cancel",
"change_password_form_confirm_password": "確認密碼",
"change_password_form_description": "您好 {name} \n\n這是您首次登入系統或被管理員要求更改密碼。\n請在下方輸入新密碼。",
"change_password_form_new_password": "新密碼",
"change_password_form_password_mismatch": "密碼不一致",
"change_password_form_reenter_new_password": "再次輸入新密碼",
"check_corrupt_asset_backup": "Check for corrupt asset backups",
"check_corrupt_asset_backup_button": "Perform check",
"check_corrupt_asset_backup_description": "Run this check only over Wi-Fi and once all assets have been backed-up. The procedure might take a few minutes.",
"client_cert_dialog_msg_confirm": "確定",
"client_cert_enter_password": "輸入密碼",
"client_cert_import": "匯入",
@ -199,6 +210,7 @@
"crop": "裁剪",
"curated_location_page_title": "地點",
"curated_object_page_title": "事物",
"current_server_address": "Current server address",
"daily_title_text_date": "E, MMM dd",
"daily_title_text_date_year": "E, MMM dd, yyyy",
"date_format": "E, LLL d, y • h:mm a",
@ -235,6 +247,7 @@
"edit_date_time_dialog_timezone": "時區",
"edit_image_title": "編輯",
"edit_location_dialog_title": "位置",
"enter_wifi_name": "Enter WiFi name",
"error_saving_image": "錯誤: {} ",
"exif_bottom_sheet_description": "新增描述...",
"exif_bottom_sheet_details": "詳情",
@ -246,11 +259,15 @@
"experimental_settings_new_asset_list_title": "啓用實驗性照片網格",
"experimental_settings_subtitle": "使用風險自負!",
"experimental_settings_title": "實驗性功能",
"external_network": "External network",
"external_network_sheet_info": "When not on the preferred WiFi network, the app will connect to the server through the first of the below URLs it can reach, starting from top to bottom",
"favorites": "收藏",
"favorites_page_no_favorites": "未找到收藏項目",
"favorites_page_title": "收藏",
"filename_search": "文件名或副檔名",
"filter": "篩選",
"get_wifiname_error": "Could not get Wi-Fi name. Make sure you have granted the necessary permissions and are connected to a Wi-Fi network",
"grant_permission": "Grant permission",
"haptic_feedback_switch": "啓用振動反饋",
"haptic_feedback_title": "振動反饋",
"header_settings_add_header_tip": "新增標頭",
@ -296,6 +313,10 @@
"library_page_sort_most_oldest_photo": "最早的照片",
"library_page_sort_most_recent_photo": "最近的項目",
"library_page_sort_title": "相簿標題",
"local_network": "Local network",
"local_network_sheet_info": "The app will connect to the server through this URL when using the specified Wi-Fi network",
"location_permission": "Location permission",
"location_permission_content": "In order to use the auto-switching feature, Immich needs precise location permission so it can read the current WiFi network's name",
"location_picker_choose_on_map": "在地圖上選擇",
"location_picker_latitude": "緯度",
"location_picker_latitude_error": "輸入有效的緯度值",
@ -365,6 +386,8 @@
"multiselect_grid_edit_date_time_err_read_only": "無法編輯唯讀項目的日期,略過",
"multiselect_grid_edit_gps_err_read_only": "無法編輯唯讀項目的位置資訊,略過",
"my_albums": "我的相簿",
"networking_settings": "Networking",
"networking_subtitle": "Manage the server endpoint settings",
"no_assets_to_show": "無項目展示",
"no_name": "無姓名",
"notification_permission_dialog_cancel": "取消",
@ -398,6 +421,7 @@
"permission_onboarding_permission_limited": "權限受限:要讓 Immich 備份和管理您的整個圖庫收藏,請在「設定」中授予照片和短片權限。",
"permission_onboarding_request": "Immich 需要權限才能查看您的照片和短片。",
"places": "地點",
"preferences_settings_subtitle": "Manage the app's preferences",
"preferences_settings_title": "偏好設定",
"profile_drawer_app_logs": "日誌",
"profile_drawer_client_out_of_date_major": "客戶端有大版本升級,請盡快升級至最新版。",
@ -412,6 +436,7 @@
"profile_drawer_trash": "回收桶",
"recently_added": "近期新增",
"recently_added_page_title": "最近新增",
"save": "Save",
"save_to_gallery": "儲存到圖庫",
"scaffold_body_error_occurred": "發生錯誤",
"search_albums": "搜尋相簿",
@ -469,6 +494,7 @@
"select_additional_user_for_sharing_page_suggestions": "建議",
"select_user_for_sharing_page_err_album": "新增相簿失敗",
"select_user_for_sharing_page_share_suggestions": "建議",
"server_endpoint": "Server Endpoint",
"server_info_box_app_version": "App 版本",
"server_info_box_latest_release": "最新版本",
"server_info_box_server_url": "伺服器地址",
@ -480,6 +506,7 @@
"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": " {} 小時",
@ -612,6 +639,8 @@
"upload_dialog_info": "是否要將所選項目備份到伺服器?",
"upload_dialog_ok": "上傳",
"upload_dialog_title": "上傳項目",
"use_current_connection": "use current connection",
"validate_endpoint_error": "Please enter a valid URL",
"version_announcement_overlay_ack": "我知道了",
"version_announcement_overlay_release_notes": "發行說明",
"version_announcement_overlay_text_1": "好消息,有新版本的",
@ -621,5 +650,7 @@
"videos": "短片",
"viewer_remove_from_stack": "從堆疊中移除",
"viewer_stack_use_as_main_asset": "作為主項目使用",
"viewer_unstack": "取消堆疊"
"viewer_unstack": "取消堆疊",
"wifi_name": "WiFi Name",
"your_wifi_name": "Your WiFi name"
}

View file

@ -102,6 +102,13 @@ post_install do |installer|
## dart: PermissionGroup.criticalAlerts
# 'PERMISSION_CRITICAL_ALERTS=1'
## The 'PERMISSION_LOCATION' macro enables the `locationWhenInUse` and `locationAlways` permission. If
## the application only requires `locationWhenInUse`, only specify the `PERMISSION_LOCATION_WHENINUSE`
## macro.
##
## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
'PERMISSION_LOCATION=1',
]
end

View file

@ -65,6 +65,10 @@ PODS:
- maplibre_gl (0.0.1):
- Flutter
- MapLibre (= 5.14.0-pre3)
- native_video_player (1.0.0):
- Flutter
- network_info_plus (0.0.1):
- Flutter
- package_info_plus (0.4.5):
- Flutter
- path_provider_foundation (0.0.1):
@ -93,9 +97,6 @@ PODS:
- Toast (4.0.0)
- url_launcher_ios (0.0.1):
- Flutter
- video_player_avfoundation (0.0.1):
- Flutter
- FlutterMacOS
- wakelock_plus (0.0.1):
- Flutter
@ -115,6 +116,8 @@ DEPENDENCIES:
- integration_test (from `.symlinks/plugins/integration_test/ios`)
- isar_flutter_libs (from `.symlinks/plugins/isar_flutter_libs/ios`)
- maplibre_gl (from `.symlinks/plugins/maplibre_gl/ios`)
- native_video_player (from `.symlinks/plugins/native_video_player/ios`)
- network_info_plus (from `.symlinks/plugins/network_info_plus/ios`)
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
- path_provider_ios (from `.symlinks/plugins/path_provider_ios/ios`)
@ -124,7 +127,6 @@ DEPENDENCIES:
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
- sqflite (from `.symlinks/plugins/sqflite/darwin`)
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
- video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`)
- wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`)
SPEC REPOS:
@ -168,6 +170,10 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/isar_flutter_libs/ios"
maplibre_gl:
:path: ".symlinks/plugins/maplibre_gl/ios"
native_video_player:
:path: ".symlinks/plugins/native_video_player/ios"
network_info_plus:
:path: ".symlinks/plugins/network_info_plus/ios"
package_info_plus:
:path: ".symlinks/plugins/package_info_plus/ios"
path_provider_foundation:
@ -186,15 +192,13 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/sqflite/darwin"
url_launcher_ios:
:path: ".symlinks/plugins/url_launcher_ios/ios"
video_player_avfoundation:
:path: ".symlinks/plugins/video_player_avfoundation/darwin"
wakelock_plus:
:path: ".symlinks/plugins/wakelock_plus/ios"
SPEC CHECKSUMS:
background_downloader: 9f788ffc5de45acf87d6380e91ca0841066c18cf
connectivity_plus: ddd7f30999e1faaef5967c23d5b6d503d10434db
device_info_plus: 97af1d7e84681a90d0693e63169a5d50e0839a0d
device_info_plus: bf2e3232933866d73fe290f2942f2156cdd10342
DKImagePickerController: 946cec48c7873164274ecc4624d19e3da4c1ef3c
DKPhotoGallery: b3834fecb755ee09a593d7c9e389d8b5d6deed60
file_picker: 09aa5ec1ab24135ccd7a1621c46c84134bfd6655
@ -210,22 +214,23 @@ SPEC CHECKSUMS:
isar_flutter_libs: fdf730ca925d05687f36d7f1d355e482529ed097
MapLibre: 620fc933c1d6029b33738c905c1490d024e5d4ef
maplibre_gl: a2efec727dd340e4c65e26d2b03b584f14881fd9
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
native_video_player: d12af78a1a4a8cf09775a5177d5b392def6fd23c
network_info_plus: 6613d9d7cdeb0e6f366ed4dbe4b3c51c52d567a9
package_info_plus: c0502532a26c7662a62a356cebe2692ec5fe4ec4
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
photo_manager: ff695c7a1dd5bc379974953a2b5c0a293f7c4c8a
SAMKeychain: 483e1c9f32984d50ca961e26818a534283b4cd5c
SDWebImage: 066c47b573f408f18caa467d71deace7c0f8280d
share_plus: 8875f4f2500512ea181eef553c3e27dba5135aad
share_plus: 8b6f8b3447e494cca5317c8c3073de39b3600d1f
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec
SwiftyGif: 706c60cf65fa2bc5ee0313beece843c8eb8194d4
Toast: 91b396c56ee72a5790816f40d3a94dd357abc196
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
video_player_avfoundation: 7c6c11d8470e1675df7397027218274b6d2360b3
wakelock_plus: 78ec7c5b202cab7761af8e2b2b3d0671be6c4ae1
PODFILE CHECKSUM: 64c9b5291666c0ca3caabdfe9865c141ac40321d
PODFILE CHECKSUM: 2282844f7aed70427ae663932332dad1225156c8
COCOAPODS: 1.15.2

View file

@ -51,6 +51,7 @@
97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
E0E99CDC17B3EB7FA8BA2332 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; };
F7101BB0391A314774615E89 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; };
FA9973382CF6DF4B000EF859 /* Runner.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Runner.entitlements; sourceTree = "<group>"; };
FAC7416727DB9F5500C668D8 /* RunnerProfile.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = RunnerProfile.entitlements; sourceTree = "<group>"; };
/* End PBXFileReference section */
@ -126,6 +127,7 @@
97C146F01CF9000F007C117D /* Runner */ = {
isa = PBXGroup;
children = (
FA9973382CF6DF4B000EF859 /* Runner.entitlements */,
65DD438629917FAD0047FFA8 /* BackgroundSync */,
FAC7416727DB9F5500C668D8 /* RunnerProfile.entitlements */,
97C146FA1CF9000F007C117D /* Main.storyboard */,
@ -541,6 +543,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 184;
@ -553,7 +556,7 @@
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.121.0;
PRODUCT_BUNDLE_IDENTIFIER = app.alextran.immich.debug;
PRODUCT_BUNDLE_IDENTIFIER = app.alextran.immich.vdebug;
PRODUCT_NAME = "Immich-Debug";
PROVISIONING_PROFILE_SPECIFIER = "";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
@ -569,6 +572,7 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = Runner/Runner.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 184;

View file

@ -1,48 +1,57 @@
import UIKit
import shared_preferences_foundation
import Flutter
import BackgroundTasks
import Flutter
import network_info_plus
import path_provider_ios
import photo_manager
import permission_handler_apple
import photo_manager
import shared_preferences_foundation
import UIKit
@main
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
// Required for flutter_local_notification
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
}
// Required for flutter_local_notification
if #available(iOS 10.0, *) {
UNUserNotificationCenter.current().delegate = self as? UNUserNotificationCenterDelegate
do {
try AVAudioSession.sharedInstance().setCategory(.playback, mode: .default)
try AVAudioSession.sharedInstance().setActive(true)
} catch {
print("Failed to set audio session category. Error: \(error)")
}
GeneratedPluginRegistrant.register(with: self)
BackgroundServicePlugin.registerBackgroundProcessing()
BackgroundServicePlugin.register(with: self.registrar(forPlugin: "BackgroundServicePlugin")!)
BackgroundServicePlugin.setPluginRegistrantCallback { registry in
if !registry.hasPlugin("org.cocoapods.path-provider-ios") {
FLTPathProviderPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.path-provider-ios")!)
}
GeneratedPluginRegistrant.register(with: self)
BackgroundServicePlugin.registerBackgroundProcessing()
BackgroundServicePlugin.register(with: self.registrar(forPlugin: "BackgroundServicePlugin")!)
BackgroundServicePlugin.setPluginRegistrantCallback { registry in
if !registry.hasPlugin("org.cocoapods.path-provider-ios") {
FLTPathProviderPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.path-provider-ios")!)
}
if !registry.hasPlugin("org.cocoapods.photo-manager") {
PhotoManagerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.photo-manager")!)
}
if !registry.hasPlugin("org.cocoapods.shared-preferences-foundation") {
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.shared-preferences-foundation")!)
}
if !registry.hasPlugin("org.cocoapods.permission-handler-apple") {
PermissionHandlerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.permission-handler-apple")!)
}
if !registry.hasPlugin("org.cocoapods.photo-manager") {
PhotoManagerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.photo-manager")!)
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
if !registry.hasPlugin("org.cocoapods.shared-preferences-foundation") {
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.shared-preferences-foundation")!)
}
if !registry.hasPlugin("org.cocoapods.permission-handler-apple") {
PermissionHandlerPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.permission-handler-apple")!)
}
if !registry.hasPlugin("org.cocoapods.network-info-plus") {
FPPNetworkInfoPlusPlugin.register(with: registry.registrar(forPlugin: "org.cocoapods.network-info-plus")!)
}
}
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}

View file

@ -58,7 +58,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.121.0</string>
<string>1.122.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
@ -82,8 +82,12 @@
</dict>
<key>NSCameraUsageDescription</key>
<string>We need to access the camera to let you take beautiful video using this app</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>We require this permission to access the local WiFi name for background upload mechanism</string>
<key>NSLocationUsageDescription</key>
<string>We require this permission to access the local WiFi name</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Enable location setting to show position of assets on map</string>
<string>We require this permission to access the local WiFi name</string>
<key>NSMicrophoneUsageDescription</key>
<string>We need to access the microphone to let you take beautiful video using this app</string>
<key>NSPhotoLibraryAddUsageDescription</key>

View file

@ -1,5 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
<dict>
<key>com.apple.developer.networking.wifi-info</key>
<true/>
</dict>
</plist>

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