mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
Merge branch 'main' into ocr
# Conflicts: # machine-learning/uv.lock
This commit is contained in:
commit
d82096a4e3
101 changed files with 3116 additions and 679 deletions
16
.github/workflows/merge-translations.yml
vendored
16
.github/workflows/merge-translations.yml
vendored
|
|
@ -10,6 +10,11 @@ on:
|
|||
required: true
|
||||
WEBLATE_TOKEN:
|
||||
required: true
|
||||
inputs:
|
||||
skip:
|
||||
description: 'Skip translations'
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
permissions: {}
|
||||
|
||||
|
|
@ -25,6 +30,7 @@ jobs:
|
|||
steps:
|
||||
- name: Find translation PR
|
||||
id: find_pr
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
run: |
|
||||
|
|
@ -51,18 +57,21 @@ jobs:
|
|||
|
||||
- name: Generate a token
|
||||
id: generate_token
|
||||
if: ${{ inputs.skip != true }}
|
||||
uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
|
||||
with:
|
||||
app-id: ${{ secrets.PUSH_O_MATIC_APP_ID }}
|
||||
private-key: ${{ secrets.PUSH_O_MATIC_APP_KEY }}
|
||||
|
||||
- name: Lock weblate
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
|
||||
run: |
|
||||
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=true
|
||||
|
||||
- name: Commit translations
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
|
||||
run: |
|
||||
|
|
@ -71,6 +80,7 @@ jobs:
|
|||
|
||||
- name: Merge PR
|
||||
id: merge_pr
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
|
||||
PR_NUMBER: ${{ steps.find_pr.outputs.PR_NUMBER }}
|
||||
|
|
@ -83,6 +93,7 @@ jobs:
|
|||
gh pr merge "$PR_NUMBER" --repo "$GITHUB_REPOSITORY" --auto --squash
|
||||
|
||||
- name: Wait for PR to merge
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
GH_TOKEN: ${{ steps.generate_token.outputs.token }}
|
||||
PR_NUMBER: ${{ steps.find_pr.outputs.PR_NUMBER }}
|
||||
|
|
@ -106,7 +117,12 @@ jobs:
|
|||
exit 1
|
||||
|
||||
- name: Unlock weblate
|
||||
if: ${{ inputs.skip != true }}
|
||||
env:
|
||||
WEBLATE_TOKEN: ${{ secrets.WEBLATE_TOKEN }}
|
||||
run: |
|
||||
curl --fail-with-body -X POST -H "Authorization: Token $WEBLATE_TOKEN" "$WEBLATE_HOST/api/components/$WEBLATE_COMPONENT/lock/" -d lock=false
|
||||
|
||||
- name: Report success
|
||||
run: |
|
||||
echo "Workflow completed successfully (or was skipped)"
|
||||
|
|
|
|||
9
.github/workflows/prepare-release.yml
vendored
9
.github/workflows/prepare-release.yml
vendored
|
|
@ -10,12 +10,17 @@ on:
|
|||
type: choice
|
||||
options:
|
||||
- 'false'
|
||||
- major
|
||||
- minor
|
||||
- patch
|
||||
mobileBump:
|
||||
description: 'Bump mobile build number'
|
||||
required: false
|
||||
type: boolean
|
||||
skipTranslations:
|
||||
description: 'Skip translations'
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}-root
|
||||
|
|
@ -26,6 +31,8 @@ permissions: {}
|
|||
jobs:
|
||||
merge_translations:
|
||||
uses: ./.github/workflows/merge-translations.yml
|
||||
with:
|
||||
skip: ${{ inputs.skipTranslations }}
|
||||
permissions:
|
||||
pull-requests: write
|
||||
secrets:
|
||||
|
|
@ -35,6 +42,7 @@ jobs:
|
|||
|
||||
bump_version:
|
||||
runs-on: ubuntu-latest
|
||||
needs: [merge_translations]
|
||||
outputs:
|
||||
ref: ${{ steps.push-tag.outputs.commit_long_sha }}
|
||||
permissions: {} # No job-level permissions are needed because it uses the app-token
|
||||
|
|
@ -51,6 +59,7 @@ jobs:
|
|||
with:
|
||||
token: ${{ steps.generate-token.outputs.token }}
|
||||
persist-credentials: true
|
||||
ref: main
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@immich/cli",
|
||||
"version": "2.2.90",
|
||||
"version": "2.2.92",
|
||||
"description": "Command Line Interface (CLI) for Immich",
|
||||
"type": "module",
|
||||
"exports": "./dist/index.js",
|
||||
|
|
|
|||
8
docs/static/archived-versions.json
vendored
8
docs/static/archived-versions.json
vendored
|
|
@ -1,4 +1,12 @@
|
|||
[
|
||||
{
|
||||
"label": "v1.143.1",
|
||||
"url": "https://v1.143.1.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.143.0",
|
||||
"url": "https://v1.143.0.archive.immich.app"
|
||||
},
|
||||
{
|
||||
"label": "v1.142.1",
|
||||
"url": "https://v1.142.1.archive.immich.app"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "immich-e2e",
|
||||
"version": "1.142.1",
|
||||
"version": "1.143.1",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
|
|
|
|||
38
i18n/af.json
38
i18n/af.json
|
|
@ -14,6 +14,7 @@
|
|||
"add_a_location": "Voeg 'n ligging by",
|
||||
"add_a_name": "Voeg 'n naam by",
|
||||
"add_a_title": "Voeg 'n titel by",
|
||||
"add_birthday": "Voeg 'n verjaarsdag by",
|
||||
"add_endpoint": "Voeg Koppelvlakpunt by",
|
||||
"add_exclusion_pattern": "Voeg uitsgluitingspatrone by",
|
||||
"add_import_path": "Voeg invoerpad by",
|
||||
|
|
@ -27,6 +28,8 @@
|
|||
"add_to_album": "Voeg na album",
|
||||
"add_to_album_bottom_sheet_added": "By {album} bygevoeg",
|
||||
"add_to_album_bottom_sheet_already_exists": "Reeds in {album}",
|
||||
"add_to_albums": "Voeg by albums",
|
||||
"add_to_albums_count": "Voeg by ({count}) albums",
|
||||
"add_to_shared_album": "Voeg toe aan gedeelde album",
|
||||
"add_url": "Voeg URL by",
|
||||
"added_to_archive": "By argief toegevoegd",
|
||||
|
|
@ -44,6 +47,11 @@
|
|||
"backup_database": "Skep Datastortlêer",
|
||||
"backup_database_enable_description": "Aktiveer databasisrugsteun",
|
||||
"backup_keep_last_amount": "Aantal vorige rugsteune om te hou",
|
||||
"backup_onboarding_3_description": "totale kopieë van jou data, insluitende die oorspronklikke lêers. Dit sluit in 1 kopie op 'n ander perseel en 2 kopieë om die huidige rekenaar.",
|
||||
"backup_onboarding_description": "'N <backblaze-link>3-2-1 rugsteun strategie</backblaze-link> word sterk aanbeveel om jou data veilig te hou. Hou kopieë van jou fotos/videos so wel as die Immich databasis vir 'n volledige rugsteun oplossing.",
|
||||
"backup_onboarding_footer": "Vir meer inligting oor hoe om 'n rugsteun kopie van Immich te maak, gaan lees asseblief hierdie <link>dokument</link>.",
|
||||
"backup_onboarding_parts_title": "'N 3-2-1 rugsteun sluit in:",
|
||||
"backup_onboarding_title": "Rugsteun kopieë",
|
||||
"backup_settings": "Rugsteun instellings",
|
||||
"backup_settings_description": "Bestuur databasis rugsteun instellings.",
|
||||
"cleared_jobs": "Poste gevee vir: {job}",
|
||||
|
|
@ -62,8 +70,8 @@
|
|||
"duplicate_detection_job_description": "Begin masjienleer op bates om soortgelyke beelde op te spoor. Maak staat op Smart Search",
|
||||
"exclusion_pattern_description": "Met uitsluitingspatrone kan jy lêers en vouers ignoreer wanneer jy jou biblioteek skandeer. Dit is nuttig as jy vouers het wat lêers bevat wat jy nie wil invoer nie, soos RAW-lêers.",
|
||||
"external_library_management": "Eksterne Biblioteekbestuur",
|
||||
"face_detection": "Gesig deteksie",
|
||||
"face_detection_description": "Detecteer die gesigte in media deur middel van masjienleer. Vir videos word slegs die duimnaelskets oorweeg. “Herlaai” (ver)werk al die media weer. “Stel terug” verwyder boonop alle huidige gesigdata. “Onverwerk” plaas bates in die tou wat nog nie verwerk is nie. Gedekte gesigte sal ná voltooiing van Gesigdetectie vir Gesigherkenning in die tou geplaas word, om hulle in bestaande of nuwe persone te groepeer.",
|
||||
"face_detection": "Gesig herkenning",
|
||||
"face_detection_description": "Identifiseer die gesigte in media deur middel van masjienleer. Vir videos word slegs die duimnaelskets oorweeg. “Herlaai” (ver)werk al die media weer. “Stel terug” verwyder alle huidige gesigdata. “Onverwerk” plaas bates in die tou wat nog nie verwerk is nie. Geidentifiseerde gesigte sal ná voltooiing van Gesigidentifikasie vir Gesigherkenning in die tou geplaas word, om hulle in bestaande of nuwe persone te groepeer.",
|
||||
"facial_recognition_job_description": "Groepeer gesigte in mense in. Die stap is vinniger nadat Gesig Deteksie klaar is. \"Herstel\" (her-)groepeer alle gesigte. \"Vermiste\" plaas gesigte in ry wat nie 'n persoon gekoppel het nie.",
|
||||
"failed_job_command": "Opdrag {command} het misluk vir werk: {job}",
|
||||
"force_delete_user_warning": "WAARSKUWING: Dit sal onmiddellik die gebruiker en alle bates verwyder. Dit kan nie ontdoen word nie en die lêers kan nie herstel word nie.",
|
||||
|
|
@ -93,15 +101,33 @@
|
|||
"job_status": "Werkstatus",
|
||||
"library_created": "Biblioteek geskep: {library}",
|
||||
"library_deleted": "Biblioteek verwyder",
|
||||
"library_import_path_description": "Spesifiseer 'n leer om in te neem. Hierdie leer, en al die sub leers, gaan geskandeer for vir prente en videos.",
|
||||
"library_scanning": "Periodieke Skandering",
|
||||
"library_scanning_description": "Stel periodieke skandering van biblioteek in",
|
||||
"library_import_path_description": "Spesifiseer 'n leer om in te neem. Hierdie leer, en al die sub leers, gaan deursoek word vir prente en videos.",
|
||||
"library_scanning": "Periodieke Soek",
|
||||
"library_scanning_description": "Stel periodieke deursoek van biblioteek in",
|
||||
"library_scanning_enable_description": "Aktiveer periodieke biblioteekskandering",
|
||||
"library_settings": "Eksterne Biblioteek",
|
||||
"library_settings_description": "Eksterne biblioteek verstellings",
|
||||
"library_tasks_description": "Deursoek eksterne biblioteke vir nuwe of veranderde bates",
|
||||
"library_watching_enable_description": "Hou eksterne biblioteke dop vir leer veranderinge",
|
||||
"library_watching_settings": "Biblioteek dop hou (EKSPERIMENTEEL)",
|
||||
"library_watching_settings_description": "Hou automaties dop vir veranderinge",
|
||||
"logging_enable_description": "Aktifeer \"logging\"",
|
||||
"logging_level_description": "Wanneer aktief, watter vlak van \"logs\" om te skep.",
|
||||
"logging_settings": "\"Logs\"",
|
||||
"machine_learning_clip_model": "CLIP model",
|
||||
"machine_learning_duplicate_detection": "Duplikaat herkenning",
|
||||
"machine_learning_duplicate_detection_enabled": "Aktifeer duplikaat herkenning",
|
||||
"machine_learning_enabled": "Aktifeer masjienleer",
|
||||
"machine_learning_facial_recognition": "Gesigsherkenning",
|
||||
"machine_learning_facial_recognition_description": "Herken, identifiseer en groepeer gesigte in fotos",
|
||||
"machine_learning_facial_recognition_model": "Gesigsherkennings model",
|
||||
"machine_learning_facial_recognition_setting": "Aktifeer gesigsherkenning",
|
||||
"machine_learning_max_detection_distance": "Maksimum herkennings afstand",
|
||||
"map_settings": "Kaart",
|
||||
"migration_job": "Migrasie",
|
||||
"oauth_settings": "OAuth",
|
||||
"transcoding_acceleration_vaapi": "VAAPI"
|
||||
"transcoding_acceleration_vaapi": "VAAPI",
|
||||
"transcoding_preferred_hardware_device": "Verkiesde hardeware"
|
||||
},
|
||||
"administration": "Administrasie",
|
||||
"advanced": "Gevorderde",
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@
|
|||
"logging_enable_description": "تفعيل تسجيل الأحداث",
|
||||
"logging_level_description": "عند التفعيل، أي مستوى تسجيل سيستخدم.",
|
||||
"logging_settings": "تسجيل الاحداث",
|
||||
"machine_learning_availability_checks": "تحقق من التوفر",
|
||||
"machine_learning_clip_model": "نموذج CLIP",
|
||||
"machine_learning_clip_model_description": "اسم نموذج CLIP مدرجٌ <link>هنا</link>. يرجى ملاحظة أنه يجب إعادة تشغيل وظيفة \"البحث الذكي\" لجميع الصور بعد تغيير النموذج.",
|
||||
"machine_learning_duplicate_detection": "كشف التكرار",
|
||||
|
|
@ -387,8 +388,6 @@
|
|||
"admin_password": "كلمة سر المشرف",
|
||||
"administration": "الإدارة",
|
||||
"advanced": "متقدم",
|
||||
"advanced_settings_beta_timeline_subtitle": "جرب تجربة التطبيق الجديدة",
|
||||
"advanced_settings_beta_timeline_title": "الجدول الزمني التجريبي",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "استخدم هذا الخيار لتصفية الوسائط اثناء المزامنه بناء على معايير بديلة. جرب هذا الخيار فقط كان لديك مشاكل مع التطبيق بالكشف عن جميع الالبومات.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[تجريبي] استخدم جهاز تصفية مزامنه البومات بديل",
|
||||
"advanced_settings_log_level_title": "مستوى السجل: {level}",
|
||||
|
|
|
|||
40
i18n/bg.json
40
i18n/bg.json
|
|
@ -387,8 +387,6 @@
|
|||
"admin_password": "Администраторска парола",
|
||||
"administration": "Администрация",
|
||||
"advanced": "Разширено",
|
||||
"advanced_settings_beta_timeline_subtitle": "Опитайте новите функции на приложението",
|
||||
"advanced_settings_beta_timeline_title": "Бета версия на времевата линия",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "При синхронизация, използвайте тази опция като филтър, основан на промяна на даден критерии. Опитайте само в случай, че приложението има проблем с откриване на всички албуми.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[ЕКСПЕРИМЕНТАЛНО] Използвай филтъра на алтернативното устройство за синхронизация на албуми",
|
||||
"advanced_settings_log_level_title": "Ниво на запис в дневника: {level}",
|
||||
|
|
@ -404,7 +402,7 @@
|
|||
"advanced_settings_sync_remote_deletions_title": "Синхронизация на дистанционни изтривания [ЕКСПЕРИМЕНТАЛНО]",
|
||||
"advanced_settings_tile_subtitle": "Разширени потребителски настройки",
|
||||
"advanced_settings_troubleshooting_subtitle": "Разреши допълнителни възможности за отстраняване на проблеми",
|
||||
"advanced_settings_troubleshooting_title": "Отстраняване на проблеми",
|
||||
"advanced_settings_troubleshooting_title": "Отстраняванe на проблеми",
|
||||
"age_months": "Възраст {months, plural, one {# месец} other {# месеци}}",
|
||||
"age_year_months": "Възраст 1 година, {months, plural, one {# месец} other {# месеци}}",
|
||||
"age_years": "{years, plural, other {Година #}}",
|
||||
|
|
@ -425,6 +423,7 @@
|
|||
"album_remove_user_confirmation": "Сигурни ли сте, че искате да премахнете {user}?",
|
||||
"album_search_not_found": "Няма намерени албуми, отговарящи на търсенето ви",
|
||||
"album_share_no_users": "Изглежда, че сте споделили този албум с всички потребители или нямате друг потребител, с когото да го споделите.",
|
||||
"album_summary": "Обобщение на албума",
|
||||
"album_updated": "Албумът е актуализиран",
|
||||
"album_updated_setting_description": "Получавайте известие по имейл, когато споделен албум има нови файлове",
|
||||
"album_user_left": "Напусна {album}",
|
||||
|
|
@ -496,6 +495,8 @@
|
|||
"asset_restored_successfully": "Успешно възстановен обект",
|
||||
"asset_skipped": "Пропуснато",
|
||||
"asset_skipped_in_trash": "В кошчето",
|
||||
"asset_trashed": "Обектът е изхвърлен",
|
||||
"asset_troubleshoot": "Поправка на грешки с обекта",
|
||||
"asset_uploaded": "Качено",
|
||||
"asset_uploading": "Качване…",
|
||||
"asset_viewer_settings_subtitle": "Управление на настройките за изглед",
|
||||
|
|
@ -529,8 +530,10 @@
|
|||
"autoplay_slideshow": "Автоматична смяна на слайдовете",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, затваряне или премахване на избора",
|
||||
"background_backup_running_error": "Стартирано е фоново архивиране, не може да се пусне ръчно архивиране",
|
||||
"background_location_permission": "Разрешение за достъп до местоположението във фонов режим",
|
||||
"background_location_permission_content": "За да може да чете имената на Wi-Fi мрежите и да ги превключва при работа във фонов режим, Immich трябва *винаги* да има достъп до точното местоположение",
|
||||
"background_options": "Опции за фоновите задачи",
|
||||
"backup": "Архивиране",
|
||||
"backup_album_selection_page_albums_device": "Албуми на устройството ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Натисни за да включиш, двойно за да изключиш",
|
||||
|
|
@ -538,6 +541,7 @@
|
|||
"backup_album_selection_page_select_albums": "Избор на албуми",
|
||||
"backup_album_selection_page_selection_info": "Информация за избраното",
|
||||
"backup_album_selection_page_total_assets": "Уникални обекти общо",
|
||||
"backup_albums_sync": "Синхронизиране на архивите",
|
||||
"backup_all": "Всичко",
|
||||
"backup_background_service_backup_failed_message": "Неуспешно архивиране. Нов опит…",
|
||||
"backup_background_service_connection_failed_message": "Неуспешно свързване към сървъра. Нов опит…",
|
||||
|
|
@ -587,7 +591,7 @@
|
|||
"backup_controller_page_turn_on": "Включи архивиране в активен режим",
|
||||
"backup_controller_page_uploading_file_info": "Инфо за архивирания файл",
|
||||
"backup_err_only_album": "Не може да се премахне единствения албум",
|
||||
"backup_info_card_assets": "обекти",
|
||||
"backup_info_card_assets": "обекта",
|
||||
"backup_manual_cancelled": "Отменено",
|
||||
"backup_manual_in_progress": "Върви архивиране. Опитай след малко",
|
||||
"backup_manual_success": "Успешно",
|
||||
|
|
@ -654,6 +658,8 @@
|
|||
"change_pin_code": "Смени PIN кода",
|
||||
"change_your_password": "Променете паролата си",
|
||||
"changed_visibility_successfully": "Видимостта е променена успешно",
|
||||
"charging": "При зареждане",
|
||||
"charging_requirement_mobile_backup": "Фоново архивиране само при зареждане на устройството",
|
||||
"check_corrupt_asset_backup": "Провери за повредени архивни копия",
|
||||
"check_corrupt_asset_backup_button": "Провери",
|
||||
"check_corrupt_asset_backup_description": "Изпълни тази проверка само при Wi-Fi и след архивиране на всички обекти. Процедурата може да продължи няколко минути.",
|
||||
|
|
@ -740,6 +746,7 @@
|
|||
"create_user": "Създай потребител",
|
||||
"created": "Създадено",
|
||||
"created_at": "Създаден",
|
||||
"creating_linked_albums": "Създаване на свързани албуми...",
|
||||
"crop": "Изрежи",
|
||||
"curated_object_page_title": "Неща",
|
||||
"current_device": "Текущо устройство",
|
||||
|
|
@ -889,7 +896,9 @@
|
|||
"error": "Грешка",
|
||||
"error_change_sort_album": "Неуспешна промяна на реда на сортиране на албум",
|
||||
"error_delete_face": "Грешка при изтриване на лице от актива",
|
||||
"error_getting_places": "Грешка при събиране на местата",
|
||||
"error_loading_image": "Грешка при зареждане на изображението",
|
||||
"error_loading_partners": "Грешка при зареждане на партньори: {error}",
|
||||
"error_saving_image": "Грешка: {error}",
|
||||
"error_tag_face_bounding_box": "Грешка при отбелязване на лице - неуспешно получаване на координати на рамката",
|
||||
"error_title": "Грешка - нещо се обърка",
|
||||
|
|
@ -1054,6 +1063,7 @@
|
|||
"favorites_page_no_favorites": "Не са намерени любими обекти",
|
||||
"feature_photo_updated": "Представителната снимка е променена",
|
||||
"features": "Функции",
|
||||
"features_in_development": "Функции в процес на разработка",
|
||||
"features_setting_description": "Управление на функциите на приложението",
|
||||
"file_name": "Име на файла",
|
||||
"file_name_or_extension": "Име на файл или разширение",
|
||||
|
|
@ -1218,6 +1228,7 @@
|
|||
"local": "Локално",
|
||||
"local_asset_cast_failed": "Не може да се предава обект, който още не е качен на сървъра",
|
||||
"local_assets": "Локални обекти",
|
||||
"local_media_summary": "Обобщение на локалните медийни файлове",
|
||||
"local_network": "Локална мрежа",
|
||||
"local_network_sheet_info": "Приложението ще се свърже със сървъра на този URL, когато устройството е свързано към зададената Wi-Fi мрежа",
|
||||
"location_permission": "Разрешение за местоположение",
|
||||
|
|
@ -1229,6 +1240,7 @@
|
|||
"location_picker_longitude_hint": "Въведете географска дължина тук",
|
||||
"lock": "Заключи",
|
||||
"locked_folder": "Заключена папка",
|
||||
"log_detail_title": "Подробности от дневника",
|
||||
"log_out": "Излизане",
|
||||
"log_out_all_devices": "Излизане с всички устройства",
|
||||
"logged_in_as": "Вписан като {user}",
|
||||
|
|
@ -1259,6 +1271,7 @@
|
|||
"login_password_changed_success": "Успешно обновена парола",
|
||||
"logout_all_device_confirmation": "Сигурни ли сте, че искате да излезете от всички устройства?",
|
||||
"logout_this_device_confirmation": "Сигурни ли сте, че искате да излезете от това устройство?",
|
||||
"logs": "Дневник",
|
||||
"longitude": "Дължина",
|
||||
"look": "Изглед",
|
||||
"loop_videos": "Повтаряне на видеата",
|
||||
|
|
@ -1301,6 +1314,7 @@
|
|||
"mark_as_read": "Маркирай като четено",
|
||||
"marked_all_as_read": "Всички маркирани като прочетени",
|
||||
"matches": "Съвпадения",
|
||||
"matching_assets": "Съвпадащи обекти",
|
||||
"media_type": "Вид медия",
|
||||
"memories": "Спомени",
|
||||
"memories_all_caught_up": "Това е всичко за днес",
|
||||
|
|
@ -1341,6 +1355,7 @@
|
|||
"name_or_nickname": "Име или прякор",
|
||||
"network_requirement_photos_upload": "Използвай мобилни данни за архивиране на снимки",
|
||||
"network_requirement_videos_upload": "Използвай мобилни данни за архивиране на видео",
|
||||
"network_requirements": "Изисквания към мрежата",
|
||||
"network_requirements_updated": "Мрежовите настройки са променени, нулиране на опашката за архивиране",
|
||||
"networking_settings": "Мрежа",
|
||||
"networking_subtitle": "Управление на настройките за връзка със сървъра",
|
||||
|
|
@ -1351,6 +1366,7 @@
|
|||
"new_person": "Нов човек",
|
||||
"new_pin_code": "Нов PIN код",
|
||||
"new_pin_code_subtitle": "Това е първи достъп до заключена папка. Създайте PIN код за защитен достъп до тази страница",
|
||||
"new_timeline": "Нова времева линия",
|
||||
"new_user_created": "Създаден нов потребител",
|
||||
"new_version_available": "НАЛИЧНА НОВА ВЕРСИЯ",
|
||||
"newest_first": "Най-новите първи",
|
||||
|
|
@ -1364,20 +1380,25 @@
|
|||
"no_assets_message": "КЛИКНЕТЕ, ЗА ДА КАЧИТЕ ПЪРВАТА СИ СНИМКА",
|
||||
"no_assets_to_show": "Няма обекти за показване",
|
||||
"no_cast_devices_found": "Няма намерени устройства за предаване",
|
||||
"no_checksum_local": "Липсват контролни суми - не може да се получат локални обекти",
|
||||
"no_checksum_remote": "Липсват контролни суми - не може да се получат обекти от сървъра",
|
||||
"no_duplicates_found": "Не бяха открити дубликати.",
|
||||
"no_exif_info_available": "Няма exif информация",
|
||||
"no_explore_results_message": "Качете още снимки, за да разгледате колекцията си.",
|
||||
"no_favorites_message": "Добавете в любими, за да намирате бързо най-добрите си снимки и видеоклипове",
|
||||
"no_libraries_message": "Създайте външна библиотека за да разглеждате снимки и видеоклипове",
|
||||
"no_local_assets_found": "Не е намерен локален обект с такава контролна сума",
|
||||
"no_locked_photos_message": "Снимките и видеата в заключената папка са скрити и не се показват при разглеждане на библиотеката.",
|
||||
"no_name": "Без име",
|
||||
"no_notifications": "Няма известия",
|
||||
"no_people_found": "Не са намерени съответстващи хора",
|
||||
"no_places": "Няма места",
|
||||
"no_remote_assets_found": "Не е намерен обект на сървъра с такава контролна сума",
|
||||
"no_results": "Няма резултати",
|
||||
"no_results_description": "Опитайте със синоним или по-обща ключова дума",
|
||||
"no_shared_albums_message": "Създайте албум, за да споделяте снимки и видеоклипове с хората в мрежата си",
|
||||
"no_uploads_in_progress": "Няма качване в момента",
|
||||
"not_available": "Неналично",
|
||||
"not_in_any_album": "Не е в никой албум",
|
||||
"not_selected": "Не е избрано",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Забележка: За да приложите етикета за съхранение към предварително качени активи, стартирайте",
|
||||
|
|
@ -1515,7 +1536,7 @@
|
|||
"profile_drawer_client_out_of_date_minor": "Мобилното приложение е остаряло. Моля, актуализирай до най-новата версия.",
|
||||
"profile_drawer_client_server_up_to_date": "Клиента и сървъра са обновени",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_readonly_mode": "Режима само за четене е активиран. С двоен клик върху картиката-аватар на потребителя ще деактивирате само за четене.",
|
||||
"profile_drawer_readonly_mode": "Режима само за четене е активиран. С дълго натискане върху картиката-аватар на потребителя ще деактивирате само за четене.",
|
||||
"profile_drawer_server_out_of_date_major": "Версията на сървъра е остаряла. Моля, актуализирай поне до последната главна версия.",
|
||||
"profile_drawer_server_out_of_date_minor": "Версията на сървъра е остаряла. Моля, актуализирай до последната версия.",
|
||||
"profile_image_of_user": "Профилна снимка на {user}",
|
||||
|
|
@ -1588,6 +1609,7 @@
|
|||
"regenerating_thumbnails": "Пресъздаване на миниатюрите",
|
||||
"remote": "На сървъра",
|
||||
"remote_assets": "Обекти на сървъра",
|
||||
"remote_media_summary": "Обобщение на медийните файлове на сървъра",
|
||||
"remove": "Премахни",
|
||||
"remove_assets_album_confirmation": "Сигурни ли сте, че искате да премахнете {count, plural, one {# елемент} other {# елемента}} от албума?",
|
||||
"remove_assets_shared_link_confirmation": "Сигурни ли сте, че искате да премахнете {count, plural, one {# елемент} other {# елемента}} от този споеделен линк?",
|
||||
|
|
@ -1640,6 +1662,7 @@
|
|||
"restore_user": "Възстанови потребител",
|
||||
"restored_asset": "Възстановен елемент",
|
||||
"resume": "Продължаване",
|
||||
"resume_paused_jobs": "Продължи изпълнението на {count, plural, one {# задача} other {# задачи}}",
|
||||
"retry_upload": "Опитай качването отново",
|
||||
"review_duplicates": "Разгледай дубликатите",
|
||||
"review_large_files": "Преглед на големи файлове",
|
||||
|
|
@ -1862,6 +1885,7 @@
|
|||
"show_slideshow_transition": "Покажи прехода на слайдшоуто",
|
||||
"show_supporter_badge": "Значка поддръжник",
|
||||
"show_supporter_badge_description": "Покажи значка поддръжник",
|
||||
"show_text_search_menu": "Покажи менюто за търсене на текст",
|
||||
"shuffle": "Разбъркване",
|
||||
"sidebar": "Странична лента",
|
||||
"sidebar_display_description": "Показване на връзка към изгледа в страничната лента",
|
||||
|
|
@ -1916,6 +1940,8 @@
|
|||
"sync_albums_manual_subtitle": "Синхронизирай всички заредени видеа и снимки в избраните архивни албуми",
|
||||
"sync_local": "Локална синхронизация",
|
||||
"sync_remote": "Синхронизация със сървъра",
|
||||
"sync_status": "Състояние на синхронизацията",
|
||||
"sync_status_subtitle": "Преглед и управление на системата за синхронизация",
|
||||
"sync_upload_album_setting_subtitle": "Създавайте и зареждайте снимки и видеа в избрани албуми в Immich",
|
||||
"tag": "Таг",
|
||||
"tag_assets": "Тагни елементи",
|
||||
|
|
@ -1975,6 +2001,7 @@
|
|||
"trash_page_select_assets_btn": "Избери обекти",
|
||||
"trash_page_title": "В коша ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Изхвърлените в кошчето елементи ще бъдат изтрити за постоянно след {days, plural, one {# ден} other {# дни}}.",
|
||||
"troubleshoot": "Отстраняване на проблеми",
|
||||
"type": "Тип",
|
||||
"unable_to_change_pin_code": "Невъзможна промяна на PIN кода",
|
||||
"unable_to_setup_pin_code": "Неуспешно задаване на PIN кода",
|
||||
|
|
@ -2091,5 +2118,6 @@
|
|||
"yes": "Да",
|
||||
"you_dont_have_any_shared_links": "Нямате споделени връзки",
|
||||
"your_wifi_name": "Вашата Wi-Fi мрежа",
|
||||
"zoom_image": "Увеличаване на изображението"
|
||||
"zoom_image": "Увеличаване на изображението",
|
||||
"zoom_to_bounds": "Приближи до събиране в границите"
|
||||
}
|
||||
|
|
|
|||
32
i18n/ca.json
32
i18n/ca.json
|
|
@ -84,10 +84,10 @@
|
|||
"image_fullsize_enabled": "Activa la generació d'imatges a tamany complet",
|
||||
"image_fullsize_enabled_description": "Genera imatges a tamany complet per formats no compatibles amb la web. Quan \"Prefereix vista prèvia incrustada\" està activat, les vistes prèvies incrustades s'utilitzen directament sense conversió. No afecta els formats compatibles amb la web com JPEG.",
|
||||
"image_fullsize_quality_description": "De 1 a 100, qualitat de l'imatge a tamany complet. Un valor més alt és millor, però resulta en fitxers de major tamany.",
|
||||
"image_fullsize_title": "Configuració d'imatges a tamany complet",
|
||||
"image_fullsize_title": "Configuració de les imatges a tamany complet",
|
||||
"image_prefer_embedded_preview": "Prefereix vista prèvia incrustada",
|
||||
"image_prefer_embedded_preview_setting_description": "Empra vista prèvia incrustada en les fotografies RAW com a entrada per al processament d'imatge, quan sigui possible. Aquesta acció pot produir colors més acurats en algunes imatges, però la qualitat de la vista prèvia depèn de la càmera i la imatge pot tenir més artefactes de compressió.",
|
||||
"image_prefer_wide_gamut": "Prefereix àmplia gamma",
|
||||
"image_prefer_wide_gamut": "Prefereix la gamma àmplia",
|
||||
"image_prefer_wide_gamut_setting_description": "Uitlitza Display P3 per a les miniatures. Això preserva més bé la vitalitat de les imatges amb espais de color àmplis, però les imatges es poden veure diferent en aparells antics amb una versió antiga del navegador. Les imatges sRGB romandran com a sRGB per a evitar canvis de color.",
|
||||
"image_preview_description": "Imatge de mida mitjana amb metadades eliminades, que s'utilitza quan es visualitza un sol recurs i per a l'aprenentatge automàtic",
|
||||
"image_preview_quality_description": "Vista prèvia de la qualitat de l'1 al 100. Més alt és millor, però produeix fitxers més grans i pot reduir la capacitat de resposta de l'aplicació. Establir un valor baix pot afectar la qualitat de l'aprenentatge automàtic.",
|
||||
|
|
@ -95,11 +95,11 @@
|
|||
"image_quality": "Qualitat",
|
||||
"image_resolution": "Resolució",
|
||||
"image_resolution_description": "Les resolucions més altes poden conservar més detalls però triguen més a codificar-se, tenen mides de fitxer més grans i poden reduir la capacitat de resposta de l'aplicació.",
|
||||
"image_settings": "Configuració d'imatges",
|
||||
"image_settings": "Configuració de les imatges",
|
||||
"image_settings_description": "Gestiona la qualitat i resolució de les imatges generades",
|
||||
"image_thumbnail_description": "Miniatura petita amb metadades eliminades, que s'utilitza quan es visualitzen grups de fotos com la línia de temps principal",
|
||||
"image_thumbnail_quality_description": "Qualitat de miniatura d'1 a 100. Més alt és millor, però produeix fitxers més grans i pot reduir la capacitat de resposta de l'aplicació.",
|
||||
"image_thumbnail_title": "Configuració de miniatures",
|
||||
"image_thumbnail_title": "Configuració de les miniatures",
|
||||
"job_concurrency": "{job} simultàniament",
|
||||
"job_created": "Tasca creada",
|
||||
"job_not_concurrency_safe": "Aquesta tasca no és segura per a la conconcurrència.",
|
||||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Habilitar el registrament",
|
||||
"logging_level_description": "Quan està habilitat, quin nivell de registre es vol emprar.",
|
||||
"logging_settings": "Registre",
|
||||
"machine_learning_availability_checks": "Comprovacions de disponibilitat",
|
||||
"machine_learning_availability_checks_description": "Detectar i preferir automàticament els servidors d'aprenentatge automàtic disponibles",
|
||||
"machine_learning_availability_checks_enabled": "Habilita les comprovacions de disponibilitat",
|
||||
"machine_learning_availability_checks_interval": "Interval de comprovació",
|
||||
"machine_learning_availability_checks_interval_description": "Interval en mil·lisegons entre comprovacions de disponibilitat",
|
||||
"machine_learning_availability_checks_timeout": "Temps d'espera de la sol·licitud",
|
||||
"machine_learning_availability_checks_timeout_description": "Temps d'espera en mil·lisegons per a les comprovacions de disponibilitat",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "El nom d'un model CLIP que apareix a <link>aquí</link>. Tingues en compte que has de tornar a executar la cerca intel·ligent per a totes les imatges quan es canvia de model.",
|
||||
"machine_learning_duplicate_detection": "Detecció de duplicats",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Contrasenya de l'administrador",
|
||||
"administration": "Administració",
|
||||
"advanced": "Avançat",
|
||||
"advanced_settings_beta_timeline_subtitle": "Prova la nova experiència de l'aplicació",
|
||||
"advanced_settings_beta_timeline_title": "Cronologia beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Feu servir aquesta opció per filtrar els continguts multimèdia durant la sincronització segons criteris alternatius. Només proveu-ho si teniu problemes amb l'aplicació per detectar tots els àlbums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "Utilitza el filtre de sincronització d'àlbums de dispositius alternatius",
|
||||
"advanced_settings_log_level_title": "Nivell de registre: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Esteu segurs que voleu eliminar {user}?",
|
||||
"album_search_not_found": "No s'ha trobat cap àlbum que coincideixi amb la teva cerca",
|
||||
"album_share_no_users": "Sembla que has compartit aquest àlbum amb tots els usuaris o no tens cap usuari amb qui compartir-ho.",
|
||||
"album_summary": "Resum de l'àlbum",
|
||||
"album_updated": "Àlbum actualitzat",
|
||||
"album_updated_setting_description": "Rep una notificació per correu electrònic quan un àlbum compartit tingui recursos nous",
|
||||
"album_user_left": "Surt de {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Element recuperat correctament",
|
||||
"asset_skipped": "Saltat",
|
||||
"asset_skipped_in_trash": "A la paperera",
|
||||
"asset_trashed": "Recurs a la paperera",
|
||||
"asset_troubleshoot": "Diagnòstic de l'element",
|
||||
"asset_uploaded": "Carregat",
|
||||
"asset_uploading": "S'està carregant…",
|
||||
"asset_viewer_settings_subtitle": "Gestiona la configuració del visualitzador de la galeria",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Reprodueix automàticament les diapositives",
|
||||
"back": "Enrere",
|
||||
"back_close_deselect": "Tornar, tancar o anul·lar la selecció",
|
||||
"background_backup_running_error": "La còpia de seguretat en segon pla s'està executant actualment, no es pot iniciar la còpia de seguretat manual",
|
||||
"background_location_permission": "Permís d'ubicació en segon pla",
|
||||
"background_location_permission_content": "Per canviar de xarxa quan s'executa en segon pla, Immich ha de *sempre* tenir accés a la ubicació precisa perquè l'aplicació pugui llegir el nom de la xarxa Wi-Fi",
|
||||
"background_options": "Opcions en segon pla",
|
||||
"backup": "Còpia",
|
||||
"backup_album_selection_page_albums_device": "Àlbums al dispositiu ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Un toc per incloure, doble toc per excloure",
|
||||
|
|
@ -654,6 +664,7 @@
|
|||
"change_pin_code": "Canviar el codi PIN",
|
||||
"change_your_password": "Canvia la teva contrasenya",
|
||||
"changed_visibility_successfully": "Visibilitat canviada amb èxit",
|
||||
"charging": "Carregant",
|
||||
"check_corrupt_asset_backup": "Comprovar les còpies de seguretat corruptes",
|
||||
"check_corrupt_asset_backup_button": "Realitzar comprovació",
|
||||
"check_corrupt_asset_backup_description": "Executeu aquesta comprovació només mitjançant Wi-Fi i un cop s'hagi fet una còpia de seguretat de tots els actius. El procediment pot trigar uns minuts.",
|
||||
|
|
@ -740,6 +751,7 @@
|
|||
"create_user": "Crea un usuari",
|
||||
"created": "Creat",
|
||||
"created_at": "Creat",
|
||||
"creating_linked_albums": "Creant àlbums enllaçats...",
|
||||
"crop": "Retalla",
|
||||
"curated_object_page_title": "Coses",
|
||||
"current_device": "Dispositiu actual",
|
||||
|
|
@ -878,7 +890,7 @@
|
|||
"empty_trash": "Buidar la paperera",
|
||||
"empty_trash_confirmation": "Esteu segur que voleu buidar la paperera? Això eliminarà tots els recursos a la paperera permanentment d'Immich.\nNo podeu desfer aquesta acció!",
|
||||
"enable": "Activar",
|
||||
"enable_backup": "Habilitar Còpia de Seguretat",
|
||||
"enable_backup": "Còpia de Seguretat",
|
||||
"enable_biometric_auth_description": "Introduïu el codi PIN per a habilitar l'autenticació biomètrica",
|
||||
"enabled": "Activat",
|
||||
"end_date": "Data final",
|
||||
|
|
@ -889,6 +901,7 @@
|
|||
"error": "Error",
|
||||
"error_change_sort_album": "No s'ha pogut canviar l'ordre d'ordenació dels àlbums",
|
||||
"error_delete_face": "Error esborrant cara de les cares reconegudes",
|
||||
"error_getting_places": "S'ha produït un error en obtenir els llocs",
|
||||
"error_loading_image": "Error carregant la imatge",
|
||||
"error_saving_image": "Error: {error}",
|
||||
"error_tag_face_bounding_box": "Error a l'etiquetar la cara - no s'han pogut obtenir les coordenades de l'àrea",
|
||||
|
|
@ -1054,6 +1067,7 @@
|
|||
"favorites_page_no_favorites": "No s'han trobat preferits",
|
||||
"feature_photo_updated": "Foto destacada actualitzada",
|
||||
"features": "Característiques",
|
||||
"features_in_development": "Funcions en desenvolupament",
|
||||
"features_setting_description": "Administrar les funcions de l'aplicació",
|
||||
"file_name": "Nom de l'arxiu",
|
||||
"file_name_or_extension": "Nom de l'arxiu o extensió",
|
||||
|
|
@ -1513,9 +1527,9 @@
|
|||
"profile_drawer_app_logs": "Registres",
|
||||
"profile_drawer_client_out_of_date_major": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_client_out_of_date_minor": "L'aplicació mòbil està desactualitzada. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_drawer_client_server_up_to_date": "El Client i el Servidor estan actualitzats",
|
||||
"profile_drawer_client_server_up_to_date": "El client i el servidor estan actualitzats",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_readonly_mode": "Manera de només lectura activada. Feu doble click a la icona de l'avatar de l'usuari per sortir.",
|
||||
"profile_drawer_readonly_mode": "Mode només lectura. Feu pulsació llarga a la icona de l'avatar d'usuari per sortir.",
|
||||
"profile_drawer_server_out_of_date_major": "El servidor està desactualitzat. Si us plau, actualitzeu a l'última versió major.",
|
||||
"profile_drawer_server_out_of_date_minor": "El servidor està desactualitzat. Si us plau, actualitzeu a l'última versió menor.",
|
||||
"profile_image_of_user": "Imatge de perfil de {user}",
|
||||
|
|
|
|||
42
i18n/cs.json
42
i18n/cs.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Povolit protokolování",
|
||||
"logging_level_description": "Když je povoleno, jakou úroveň protokolu použít.",
|
||||
"logging_settings": "Protokolování",
|
||||
"machine_learning_availability_checks": "Kontroly dostupnosti",
|
||||
"machine_learning_availability_checks_description": "Automaticky zvolit a preferovat dostupné servery strojového učení",
|
||||
"machine_learning_availability_checks_enabled": "Povolit kontroly dostupnosti",
|
||||
"machine_learning_availability_checks_interval": "Interval kontrol",
|
||||
"machine_learning_availability_checks_interval_description": "Interval v milisekundách mezi kontrolami dostupnosti",
|
||||
"machine_learning_availability_checks_timeout": "Vypršení požadavku",
|
||||
"machine_learning_availability_checks_timeout_description": "Časové vypršení požadavku v milisekundách u kontrol dostupnosti",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "Název CLIP modelu je uvedený <link>zde</link>. Pamatujte, že při změně modelu je nutné znovu spustit úlohu 'Chytré vyhledávání' pro všechny obrázky.",
|
||||
"machine_learning_duplicate_detection": "Kontrola duplicit",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Heslo správce",
|
||||
"administration": "Administrace",
|
||||
"advanced": "Pokročilé",
|
||||
"advanced_settings_beta_timeline_subtitle": "Vyzkoušejte nové prostředí aplikace",
|
||||
"advanced_settings_beta_timeline_title": "Časová osa (beta)",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Tuto možnost použijte k filtrování médií během synchronizace na základě alternativních kritérií. Tuto možnost vyzkoušejte pouze v případě, že máte problémy s detekcí všech alb v aplikaci.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTÁLNÍ] Použít alternativní filtr pro synchronizaci alb zařízení",
|
||||
"advanced_settings_log_level_title": "Úroveň protokolování: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Opravdu chcete odebrat uživatele {user}?",
|
||||
"album_search_not_found": "Nebyla nalezena žádná alba odpovídající vašemu hledání",
|
||||
"album_share_no_users": "Zřejmě jste toto album sdíleli se všemi uživateli, nebo nemáte žádného uživatele, se kterým byste ho mohli sdílet.",
|
||||
"album_summary": "Souhrn alba",
|
||||
"album_updated": "Album aktualizováno",
|
||||
"album_updated_setting_description": "Dostávat e-mailová oznámení o nových položkách sdíleného alba",
|
||||
"album_user_left": "Opustil {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Položka úspěšně obnovena",
|
||||
"asset_skipped": "Přeskočeno",
|
||||
"asset_skipped_in_trash": "V koši",
|
||||
"asset_trashed": "Položka vyhozena",
|
||||
"asset_troubleshoot": "Řešení problémů s položkami",
|
||||
"asset_uploaded": "Nahráno",
|
||||
"asset_uploading": "Nahrávání…",
|
||||
"asset_viewer_settings_subtitle": "Správa nastavení prohlížeče galerie",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatické přehrávání prezentace",
|
||||
"back": "Zpět",
|
||||
"back_close_deselect": "Zpět, zavřít nebo zrušit výběr",
|
||||
"background_backup_running_error": "Právě probíhá zálohování na pozadí, nelze spustit ruční zálohování",
|
||||
"background_location_permission": "Povolení polohy na pozadí",
|
||||
"background_location_permission_content": "Aby bylo možné přepínat sítě při běhu na pozadí, musí mít Immich *vždy* přístup k přesné poloze, aby mohl zjistit název Wi-Fi sítě",
|
||||
"background_options": "Možnosti běhu na pozadí",
|
||||
"backup": "Záloha",
|
||||
"backup_album_selection_page_albums_device": "Alba v zařízení ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Klepnutím na položku ji zahrnete, opětovným klepnutím ji vyloučíte",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Vybraná alba",
|
||||
"backup_album_selection_page_selection_info": "Informace o výběru",
|
||||
"backup_album_selection_page_total_assets": "Celkový počet jedinečných položek",
|
||||
"backup_albums_sync": "Synchronizace zálohovaných alb",
|
||||
"backup_all": "Vše",
|
||||
"backup_background_service_backup_failed_message": "Zálohování médií selhalo. Zkouším to znovu…",
|
||||
"backup_background_service_connection_failed_message": "Nepodařilo se připojit k serveru. Zkouším to znovu…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Změnit PIN kód",
|
||||
"change_your_password": "Změna vašeho hesla",
|
||||
"changed_visibility_successfully": "Změna viditelnosti proběhla úspěšně",
|
||||
"charging": "Nabíjení",
|
||||
"charging_requirement_mobile_backup": "Zálohování na pozadí vyžaduje, aby bylo zařízení nabíjeno",
|
||||
"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.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Vytvořit uživatele",
|
||||
"created": "Vytvořeno",
|
||||
"created_at": "Vytvořeno",
|
||||
"creating_linked_albums": "Vytváření propojených alb...",
|
||||
"crop": "Oříznout",
|
||||
"curated_object_page_title": "Věci",
|
||||
"current_device": "Současné zařízení",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Chyba",
|
||||
"error_change_sort_album": "Nepodařilo se změnit pořadí alba",
|
||||
"error_delete_face": "Chyba při odstraňování obličeje z položky",
|
||||
"error_getting_places": "Chyba při zjišťování míst",
|
||||
"error_loading_image": "Chyba při načítání obrázku",
|
||||
"error_loading_partners": "Chyba při načítání partnerů: {error}",
|
||||
"error_saving_image": "Chyba: {error}",
|
||||
"error_tag_face_bounding_box": "Chyba při označování obličeje - nelze získat souřadnice ohraničujícího rámečku",
|
||||
"error_title": "Chyba - Něco se pokazilo",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Nebyla nalezena žádná oblíbená média",
|
||||
"feature_photo_updated": "Hlavní fotka aktualizována",
|
||||
"features": "Funkce",
|
||||
"features_in_development": "Funkce ve vývoji",
|
||||
"features_setting_description": "Správa funkcí aplikace",
|
||||
"file_name": "Název souboru",
|
||||
"file_name_or_extension": "Název nebo přípona souboru",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Místní",
|
||||
"local_asset_cast_failed": "Nelze odeslat položku, která není nahraná na serveru",
|
||||
"local_assets": "Místní položky",
|
||||
"local_media_summary": "Souhrn místních médií",
|
||||
"local_network": "Místní síť",
|
||||
"local_network_sheet_info": "Aplikace se při použití zadané sítě Wi-Fi připojí k serveru prostřednictvím tohoto URL",
|
||||
"location_permission": "Oprávnění polohy",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Zadejte vlastní zeměpisnou délku",
|
||||
"lock": "Zamknout",
|
||||
"locked_folder": "Uzamčená složka",
|
||||
"log_detail_title": "Podrobnosti protokolu",
|
||||
"log_out": "Odhlásit",
|
||||
"log_out_all_devices": "Odhlásit všechna zařízení",
|
||||
"logged_in_as": "Přihlášen jako {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Heslo bylo úspěšně aktualizováno",
|
||||
"logout_all_device_confirmation": "Opravdu chcete odhlásit všechna zařízení?",
|
||||
"logout_this_device_confirmation": "Opravdu chcete odhlásit toto zařízení?",
|
||||
"logs": "Protokoly",
|
||||
"longitude": "Zeměpisná délka",
|
||||
"look": "Zobrazení",
|
||||
"loop_videos": "Videa ve smyčce",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Označit jako přečtené",
|
||||
"marked_all_as_read": "Vše označeno jako přečtené",
|
||||
"matches": "Shody",
|
||||
"matching_assets": "Odpovídající položky",
|
||||
"media_type": "Typ média",
|
||||
"memories": "Vzpomínky",
|
||||
"memories_all_caught_up": "To je všechno",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Jméno nebo přezdívka",
|
||||
"network_requirement_photos_upload": "Pro zálohování fotografií používat mobilní data",
|
||||
"network_requirement_videos_upload": "Pro zálohování videí používat mobilní data",
|
||||
"network_requirements": "Požadavky na síť",
|
||||
"network_requirements_updated": "Požadavky na síť se změnily, fronta zálohování se vytvoří znovu",
|
||||
"networking_settings": "Síť",
|
||||
"networking_subtitle": "Správa nastavení koncového bodu serveru",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nová osoba",
|
||||
"new_pin_code": "Nový PIN kód",
|
||||
"new_pin_code_subtitle": "Poprvé přistupujete k uzamčené složce. Vytvořte si kód PIN pro bezpečný přístup na tuto stránku",
|
||||
"new_timeline": "Nová časová osa",
|
||||
"new_user_created": "Vytvořen nový uživatel",
|
||||
"new_version_available": "NOVÁ VERZE K DISPOZICI",
|
||||
"newest_first": "Nejnovější první",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIKNĚTE PRO NAHRÁNÍ PRVNÍ FOTOGRAFIE",
|
||||
"no_assets_to_show": "Žádné položky k zobrazení",
|
||||
"no_cast_devices_found": "Nebyla nalezena žádná zařízení",
|
||||
"no_checksum_local": "Není k dispozici kontrolní součet - nelze načíst místní položky",
|
||||
"no_checksum_remote": "Není k dispozici kontrolní součet - nelze načíst vzdálenou položku",
|
||||
"no_duplicates_found": "Nebyly nalezeny žádné duplicity.",
|
||||
"no_exif_info_available": "Exif není k dispozici",
|
||||
"no_explore_results_message": "Nahrajte další fotografie a prozkoumejte svou sbírku.",
|
||||
"no_favorites_message": "Přidejte si oblíbené položky a rychle najděte své nejlepší obrázky a videa",
|
||||
"no_libraries_message": "Vytvořte si externí knihovnu pro zobrazení fotografií a videí",
|
||||
"no_local_assets_found": "Nebyly nalezeny žádné místní položky s tímto kontrolním součtem",
|
||||
"no_locked_photos_message": "Fotky a videa v uzamčené složce jsou skryté a při procházení nebo vyhledávání v knihovně se nezobrazují.",
|
||||
"no_name": "Bez jména",
|
||||
"no_notifications": "Žádná oznámení",
|
||||
"no_people_found": "Nebyli nalezeni žádní odpovídající lidé",
|
||||
"no_places": "Žádná místa",
|
||||
"no_remote_assets_found": "Nebyly nalezeny žádné vzdálené položky s tímto kontrolním součtem",
|
||||
"no_results": "Žádné výsledky",
|
||||
"no_results_description": "Zkuste použít synonymum nebo obecnější klíčové slovo",
|
||||
"no_shared_albums_message": "Vytvořte si album a sdílejte fotografie a videa s lidmi ve své síti",
|
||||
"no_uploads_in_progress": "Neprobíhá žádné nahrávání",
|
||||
"not_available": "Není k dispozici",
|
||||
"not_in_any_album": "Bez alba",
|
||||
"not_selected": "Není vybráno",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Upozornění: Chcete-li použít štítek úložiště na dříve nahrané položky, spusťte příkaz",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Správa předvoleb aplikace",
|
||||
"preferences_settings_title": "Předvolby",
|
||||
"preparing": "Příprava",
|
||||
"preset": "Přednastavení",
|
||||
"preview": "Náhled",
|
||||
"previous": "Předchozí",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Přečtěte si seznam změn",
|
||||
"readonly_mode_disabled": "Režim pouze pro čtení je deaktivován",
|
||||
"readonly_mode_enabled": "Režim pouze pro čtení povolen",
|
||||
"ready_for_upload": "Připraveno k nahrání",
|
||||
"reassign": "Přeřadit",
|
||||
"reassigned_assets_to_existing_person": "Přeřadit {count, plural, one {# položku} few {# položky} other {# položek}} na {name, select, null {existující osobu} other {{name}}}",
|
||||
"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",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regenerace miniatur",
|
||||
"remote": "Vzdálený",
|
||||
"remote_assets": "Vzdálené položky",
|
||||
"remote_media_summary": "Souhrn vzdálených médií",
|
||||
"remove": "Odstranit",
|
||||
"remove_assets_album_confirmation": "Opravdu chcete z alba odstranit {count, plural, one {# položku} few {# položky} other {# položek}}?",
|
||||
"remove_assets_shared_link_confirmation": "Opravdu chcete ze sdíleného odkazu odstranit {count, plural, one {# položku} few {# položky} other {# položek}}?",
|
||||
|
|
@ -1653,7 +1684,7 @@
|
|||
"saved_api_key": "API klíč uložen",
|
||||
"saved_profile": "Profil uložen",
|
||||
"saved_settings": "Nastavení uloženo",
|
||||
"say_something": "Řekněte něco",
|
||||
"say_something": "Napište něco",
|
||||
"scaffold_body_error_occurred": "Došlo k chybě",
|
||||
"scan_all_libraries": "Prohledat všechny knihovny",
|
||||
"scan_library": "Prohledat",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Zobrazit přechod prezentace",
|
||||
"show_supporter_badge": "Odznak podporovatele",
|
||||
"show_supporter_badge_description": "Zobrazit odznak podporovatele",
|
||||
"show_text_search_menu": "Zobrazit nabídku pro vyhledávání textu",
|
||||
"shuffle": "Náhodný výběr",
|
||||
"sidebar": "Postranní panel",
|
||||
"sidebar_display_description": "Zobrazení odkazu na zobrazení v postranním panelu",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Výpis zásobníku",
|
||||
"start": "Start",
|
||||
"start_date": "Počáteční datum",
|
||||
"start_date_before_end_date": "Počáteční datum se musí nacházet před konečným datem",
|
||||
"state": "Stát",
|
||||
"status": "Stav",
|
||||
"stop_casting": "Zastavit odesílání",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ano",
|
||||
"you_dont_have_any_shared_links": "Nemáte žádné sdílené odkazy",
|
||||
"your_wifi_name": "Název vaší Wi-Fi",
|
||||
"zoom_image": "Zvětšit obrázek"
|
||||
"zoom_image": "Zvětšit obrázek",
|
||||
"zoom_to_bounds": "Přiblížit na okraje"
|
||||
}
|
||||
|
|
|
|||
44
i18n/da.json
44
i18n/da.json
|
|
@ -2,7 +2,7 @@
|
|||
"about": "Om os",
|
||||
"account": "Konto",
|
||||
"account_settings": "Kontoindstillinger",
|
||||
"acknowledge": "Anerkendelse",
|
||||
"acknowledge": "Accepter",
|
||||
"action": "Handling",
|
||||
"action_common_update": "Opdater",
|
||||
"actions": "Handlinger",
|
||||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Aktiver logning",
|
||||
"logging_level_description": "Når slået til, hvilket logniveau, der skal bruges.",
|
||||
"logging_settings": "Logning",
|
||||
"machine_learning_availability_checks": "Tilgængelighedstjek",
|
||||
"machine_learning_availability_checks_description": "Opdag og foretræk automatisk tilgængelige maskinlæringsservere",
|
||||
"machine_learning_availability_checks_enabled": "Aktivér tilgængelighedstjek",
|
||||
"machine_learning_availability_checks_interval": "Kontroller interval",
|
||||
"machine_learning_availability_checks_interval_description": "Interval i millisekunder mellem tilgængelighedstjeks",
|
||||
"machine_learning_availability_checks_timeout": "Timeout på anmodning",
|
||||
"machine_learning_availability_checks_timeout_description": "Timeout i millisekunder på tilgængelighedstjeks",
|
||||
"machine_learning_clip_model": "CLIP-model",
|
||||
"machine_learning_clip_model_description": "Navnet på CLIP-modellen på listen <link>her</link>. Bemærk at du skal genkøre \"Smart Søgning\"-jobbet for alle billeder, hvis du skifter model.",
|
||||
"machine_learning_duplicate_detection": "Dubletdetektion",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administratoradgangskode",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avanceret",
|
||||
"advanced_settings_beta_timeline_subtitle": "Prøv den nye app-oplevelse",
|
||||
"advanced_settings_beta_timeline_title": "Beta-tidslinje",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Brug denne valgmulighed for at filtrere media under synkronisering baseret på alternative kriterier. Prøv kun denne hvis du har problemer med at appen ikke opdager alle albums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTEL] Brug alternativ enheds album synkroniserings filter",
|
||||
"advanced_settings_log_level_title": "Logniveau: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
|
||||
"album_search_not_found": "Ingen album fundet som matcher din søgning",
|
||||
"album_share_no_users": "Det ser ud til at du har delt denne album med alle brugere, eller du har ikke nogen brugere til at dele med.",
|
||||
"album_summary": "Albumoversigt",
|
||||
"album_updated": "Album opdateret",
|
||||
"album_updated_setting_description": "Modtag en emailnotifikation når et delt album får nye mediefiler",
|
||||
"album_user_left": "Forlod {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Elementet blev gendannet succesfuldt",
|
||||
"asset_skipped": "Sprunget over",
|
||||
"asset_skipped_in_trash": "I skraldespand",
|
||||
"asset_trashed": "Objekt kasseret",
|
||||
"asset_troubleshoot": "Fejlsøg på objekt",
|
||||
"asset_uploaded": "Uploadet",
|
||||
"asset_uploading": "Uploader…",
|
||||
"asset_viewer_settings_subtitle": "Administrer indstillinger for gallerifremviser",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Afspil slideshow automatisk",
|
||||
"back": "Tilbage",
|
||||
"back_close_deselect": "Tilbage, luk eller fravælg",
|
||||
"background_backup_running_error": "Backup kører lige nu i baggrund; kan ikke starte manuel backup",
|
||||
"background_location_permission": "Tilladelse til baggrundsplacering",
|
||||
"background_location_permission_content": "For at skifte netværk, når appen kører i baggrunden, skal Immich *altid* have præcis placeringsadgang, så appen kan læse WiFi-netværkets navn",
|
||||
"background_options": "Baggrundsmuligheder",
|
||||
"backup": "Sikkerhedskopier",
|
||||
"backup_album_selection_page_albums_device": "Albummer på enheden ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Vælg albummer",
|
||||
"backup_album_selection_page_selection_info": "Oplysninger om valgte",
|
||||
"backup_album_selection_page_total_assets": "Samlede unikke elementer",
|
||||
"backup_albums_sync": "Synkronisering af backupalbums",
|
||||
"backup_all": "Alt",
|
||||
"backup_background_service_backup_failed_message": "Sikkerhedskopiering af elementer fejlede. Forsøger igen…",
|
||||
"backup_background_service_connection_failed_message": "Forbindelsen til serveren blev tabt. Forsøger igen…",
|
||||
|
|
@ -635,7 +646,7 @@
|
|||
"cannot_merge_people": "Kan ikke sammenflette personer",
|
||||
"cannot_undo_this_action": "Du kan ikke fortryde denne handling!",
|
||||
"cannot_update_the_description": "Kan ikke opdatere beskrivelsen",
|
||||
"cast": "Cast",
|
||||
"cast": "Caste",
|
||||
"cast_description": "Konfigurer tilgængelige cast destinationer",
|
||||
"change_date": "Ændr dato",
|
||||
"change_description": "Beskrivelse af ændringer",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Skift PIN kode",
|
||||
"change_your_password": "Skift dit kodeord",
|
||||
"changed_visibility_successfully": "Synlighed blev ændret",
|
||||
"charging": "Lader",
|
||||
"charging_requirement_mobile_backup": "Baggrundsbackup kræver, at enheden er tilsluttet oplader",
|
||||
"check_corrupt_asset_backup": "Tjek for korrupte sikkerhedskopier af elementer",
|
||||
"check_corrupt_asset_backup_button": "Foretag kontrol",
|
||||
"check_corrupt_asset_backup_description": "Kør kun denne kontrol via Wi-Fi, og når alle elementer er blevet sikkerhedskopieret. Proceduren kan tage et par minutter.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Opret bruger",
|
||||
"created": "Oprettet",
|
||||
"created_at": "Oprettet",
|
||||
"creating_linked_albums": "Opretter sammenkædede albums...",
|
||||
"crop": "Beskær",
|
||||
"curated_object_page_title": "Ting",
|
||||
"current_device": "Nuværende enhed",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Fejl",
|
||||
"error_change_sort_album": "Ændring af sorteringsrækkefølgen mislykkedes",
|
||||
"error_delete_face": "Fejl ved sletning af ansigt fra mediefil",
|
||||
"error_getting_places": "Fejl ved hentning af steder",
|
||||
"error_loading_image": "Fejl ved indlæsning af billede",
|
||||
"error_loading_partners": "Fejl ved indlæsning af partnere: {error}",
|
||||
"error_saving_image": "Fejl: {error}",
|
||||
"error_tag_face_bounding_box": "Fejl ved tagging af ansigt - kan ikke finde koordinator for afgrænsningskasse",
|
||||
"error_title": "Fejl - Noget gik galt",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Ingen favoritter blev fundet",
|
||||
"feature_photo_updated": "Forsidebillede uploadet",
|
||||
"features": "Funktioner",
|
||||
"features_in_development": "Funktioner under udvikling",
|
||||
"features_setting_description": "Administrer app-funktioner",
|
||||
"file_name": "Filnavn",
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokal",
|
||||
"local_asset_cast_failed": "Kan ikke caste et aktiv, der ikke er uploadet til serveren",
|
||||
"local_assets": "Lokale objekter",
|
||||
"local_media_summary": "Opsummering af lokale media",
|
||||
"local_network": "Lokalt netværk",
|
||||
"local_network_sheet_info": "Appen vil oprette forbindelse til serveren via denne URL, når du bruger det angivne WiFi-netværk",
|
||||
"location_permission": "Tilladelse til placering",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Indtast din længdegrad her",
|
||||
"lock": "Lås",
|
||||
"locked_folder": "Låst mappe",
|
||||
"log_detail_title": "Logdetaljer",
|
||||
"log_out": "Log ud",
|
||||
"log_out_all_devices": "Log ud af alle enheder",
|
||||
"logged_in_as": "Logget ind som {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Kodeordet blev opdateret",
|
||||
"logout_all_device_confirmation": "Er du sikker på, at du vil logge ud af alle enheder?",
|
||||
"logout_this_device_confirmation": "Er du sikker på, at du vil logge denne enhed ud?",
|
||||
"logs": "Logs",
|
||||
"longitude": "Længdegrad",
|
||||
"look": "Kig",
|
||||
"loop_videos": "Gentag videoer",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Marker som læst",
|
||||
"marked_all_as_read": "Markerede alle som læst",
|
||||
"matches": "Parringer",
|
||||
"matching_assets": "Matchende objekter",
|
||||
"media_type": "Medietype",
|
||||
"memories": "Minder",
|
||||
"memories_all_caught_up": "Ajour",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Navn eller kælenavn",
|
||||
"network_requirement_photos_upload": "Benyt mobildatanettet for at sikkerhedskopiere dine fotos",
|
||||
"network_requirement_videos_upload": "Benyt mobildatanettet for at sikkerhedskopiere dine videoer",
|
||||
"network_requirements": "Netværkskrav",
|
||||
"network_requirements_updated": "Netværkskravene er ændret, backup-køen nulstilles",
|
||||
"networking_settings": "Netværk",
|
||||
"networking_subtitle": "Administrer serverens endepunktindstillinger",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Ny person",
|
||||
"new_pin_code": "Ny PIN kode",
|
||||
"new_pin_code_subtitle": "Dette er første gang du tilgår den låste mappe. Lav en PIN kode for sikkert at tilgå denne side",
|
||||
"new_timeline": "Ny tidslinje",
|
||||
"new_user_created": "Ny bruger oprettet",
|
||||
"new_version_available": "NY VERSION TILGÆNGELIG",
|
||||
"newest_first": "Nyeste først",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIK FOR AT UPLOADE DIT FØRSTE BILLEDE",
|
||||
"no_assets_to_show": "Ingen elementer at vise",
|
||||
"no_cast_devices_found": "Ingen Cast-enheder fundet",
|
||||
"no_checksum_local": "Ingen checksum tilgængelig – kan ikke hente lokale objekter",
|
||||
"no_checksum_remote": "Ingen checksum tilgængelig – kan ikke hente eksterne objekter",
|
||||
"no_duplicates_found": "Ingen duplikater fundet.",
|
||||
"no_exif_info_available": "Ingen tilgængelig exif information",
|
||||
"no_explore_results_message": "Upload flere billeder for at udforske din samling.",
|
||||
"no_favorites_message": "Tilføj favoritter for hurtigt at finde dine bedst billeder og videoer",
|
||||
"no_libraries_message": "Opret et eksternt bibliotek for at se dine billeder og videoer",
|
||||
"no_local_assets_found": "Ingen lokale objekter fundet med denne checksum",
|
||||
"no_locked_photos_message": "Billeder og videoer i den låste mappe er skjulte og vil ikke blive vist i dit bibliotek.",
|
||||
"no_name": "Intet navn",
|
||||
"no_notifications": "Ingen notifikationer",
|
||||
"no_people_found": "Ingen tilsvarende personer fundet",
|
||||
"no_places": "Ingen steder",
|
||||
"no_remote_assets_found": "Ingen eksterne objekter fundet med denne checksum",
|
||||
"no_results": "Ingen resultater",
|
||||
"no_results_description": "Prøv et synonym eller et mere generelt søgeord",
|
||||
"no_shared_albums_message": "Opret et album for at dele billeder og videoer med personer i dit netværk",
|
||||
"no_uploads_in_progress": "Ingen upload i gang",
|
||||
"not_available": "ikke tilgængelig",
|
||||
"not_in_any_album": "Ikke i noget album",
|
||||
"not_selected": "Ikke valgt",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Bemærk: For at anvende Lagringsmærkat på tidligere uploadede medier, kør",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Administrer app-præferencer",
|
||||
"preferences_settings_title": "Præferencer",
|
||||
"preparing": "Forberedelse",
|
||||
"preset": "Forudindstilling",
|
||||
"preview": "Forhåndsvisning",
|
||||
"previous": "Forrige",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Læs ændringslog",
|
||||
"readonly_mode_disabled": "Skrivebeskyttet tilstand deaktiveret",
|
||||
"readonly_mode_enabled": "Skrivebeskyttet tilstand aktiveret",
|
||||
"ready_for_upload": "Klar til upload",
|
||||
"reassign": "Gentildel",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {# mediefil} other {# mediefiler}} er blevet gentildelt til {name, select, null {en eksisterende person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Gentildelt {count, plural, one {# aktiv} other {# aktiver}} til en ny person",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regenererer forhåndsvisninger",
|
||||
"remote": "Eksternt",
|
||||
"remote_assets": "Eksterne objekter",
|
||||
"remote_media_summary": "Oversigt over eksterne media",
|
||||
"remove": "Fjern",
|
||||
"remove_assets_album_confirmation": "Er du sikker på, at du vil fjerne {count, plural, one {# aktiv} other {# aktiver}} fra albummet?",
|
||||
"remove_assets_shared_link_confirmation": "Er du sikker på, at du vil fjerne {count, plural, one {# aktiv} other {# aktiver}} fra dette delte link?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Vis overgang til diasshow",
|
||||
"show_supporter_badge": "Supportermærke",
|
||||
"show_supporter_badge_description": "Vis et supportermærke",
|
||||
"show_text_search_menu": "Vis tekstsøgningsmenu",
|
||||
"shuffle": "Bland",
|
||||
"sidebar": "Sidebjælke",
|
||||
"sidebar_display_description": "Vis et link til visningen i sidebjælken",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stacktrace",
|
||||
"start": "Start",
|
||||
"start_date": "Startdato",
|
||||
"start_date_before_end_date": "Startdato skal ligge før slutdato",
|
||||
"state": "Stat",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stop støbning",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har ikke nogen delte links",
|
||||
"your_wifi_name": "Dit Wi-Fi navn",
|
||||
"zoom_image": "Zoom billede"
|
||||
"zoom_image": "Zoom billede",
|
||||
"zoom_to_bounds": "Zoom til grænserne"
|
||||
}
|
||||
|
|
|
|||
50
i18n/de.json
50
i18n/de.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Aktiviere Logging",
|
||||
"logging_level_description": "Wenn aktiviert, welches Log-Level genutzt wird.",
|
||||
"logging_settings": "Protokollierung",
|
||||
"machine_learning_availability_checks": "Verfügbarkeitschecks",
|
||||
"machine_learning_availability_checks_description": "Erkenne und bevorzuge verfügbare Machine Learning Servers",
|
||||
"machine_learning_availability_checks_enabled": "Verfügbarkeitschecks einschalten",
|
||||
"machine_learning_availability_checks_interval": "Überprüfungsinterval",
|
||||
"machine_learning_availability_checks_interval_description": "Interval in Millisekunden zwischen Verfügbarkeitschecks",
|
||||
"machine_learning_availability_checks_timeout": "Anfragenzeitüberschreitung",
|
||||
"machine_learning_availability_checks_timeout_description": "Zeitüberschreitung in Millisekunden für Verfügbarkeitschecks",
|
||||
"machine_learning_clip_model": "CLIP-Modell",
|
||||
"machine_learning_clip_model_description": "Der Name eines CLIP-Modells, welches <link>hier</link> aufgeführt ist. Beachte, dass du die Aufgabe \"Intelligente Suche\" für alle Bilder erneut ausführen musst, wenn du das Modell wechselst.",
|
||||
"machine_learning_duplicate_detection": "Duplikaterkennung",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administrator Passwort",
|
||||
"administration": "Verwaltung",
|
||||
"advanced": "Erweitert",
|
||||
"advanced_settings_beta_timeline_subtitle": "Probier die neue App-Erfahrung aus",
|
||||
"advanced_settings_beta_timeline_title": "Beta-Timeline",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Verwende diese Option, um Medien während der Synchronisierung nach anderen Kriterien zu filtern. Versuchen dies nur, wenn Probleme mit der Erkennung aller Alben durch die App auftreten.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTELL] Benutze alternativen Filter für Synchronisierung der Gerätealben",
|
||||
"advanced_settings_log_level_title": "Log-Level: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Bist du sicher, dass du {user} entfernen willst?",
|
||||
"album_search_not_found": "Keine Alben gefunden, die zur Suche passen",
|
||||
"album_share_no_users": "Es sieht so aus, als hättest du dieses Album mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
|
||||
"album_summary": "Album Zusammenfassung",
|
||||
"album_updated": "Album aktualisiert",
|
||||
"album_updated_setting_description": "Erhalte eine E-Mail-Benachrichtigung, wenn ein freigegebenes Album neue Dateien enthält",
|
||||
"album_user_left": "{album} verlassen",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Datei erfolgreich wiederhergestellt",
|
||||
"asset_skipped": "Übersprungen",
|
||||
"asset_skipped_in_trash": "Im Papierkorb",
|
||||
"asset_trashed": "Datei Gelöscht",
|
||||
"asset_troubleshoot": "Datei Fehlerbehebung",
|
||||
"asset_uploaded": "Hochgeladen",
|
||||
"asset_uploading": "Hochladen…",
|
||||
"asset_viewer_settings_subtitle": "Verwaltung der Einstellungen für die Fotoanzeige",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatische Diashow",
|
||||
"back": "Zurück",
|
||||
"back_close_deselect": "Zurück, Schließen oder Abwählen",
|
||||
"background_backup_running_error": "Hintergrund Sicherung läuft, kann manuelle Sicherung nicht starten",
|
||||
"background_location_permission": "Hintergrund Standortfreigabe",
|
||||
"background_location_permission_content": "Um im Hintergrund zwischen den Netzwerken wechseln zu können, muss Immich *immer* Zugriff auf den genauen Standort haben, damit die App den Namen des WLAN-Netzwerks ermitteln kann",
|
||||
"background_options": "Hintergrund Optionen",
|
||||
"backup": "Sicherung",
|
||||
"backup_album_selection_page_albums_device": "Alben auf dem Gerät ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Einmalig das Album antippen um es zu sichern, doppelt antippen um es nicht mehr zu sichern",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Alben auswählen",
|
||||
"backup_album_selection_page_selection_info": "Information",
|
||||
"backup_album_selection_page_total_assets": "Elemente",
|
||||
"backup_albums_sync": "Synchronisation von Alben beim Backup",
|
||||
"backup_all": "Alle",
|
||||
"backup_background_service_backup_failed_message": "Es trat ein Fehler bei der Sicherung auf. Erneuter Versuch…",
|
||||
"backup_background_service_connection_failed_message": "Es konnte keine Verbindung zum Server hergestellt werden. Erneuter Versuch…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "PIN Code ändern",
|
||||
"change_your_password": "Ändere dein Passwort",
|
||||
"changed_visibility_successfully": "Die Sichtbarkeit wurde erfolgreich geändert",
|
||||
"charging": "Aufladen",
|
||||
"charging_requirement_mobile_backup": "Backup im Hintergrund erfordert Aufladen des Geräts",
|
||||
"check_corrupt_asset_backup": "Auf beschädigte Asset-Backups überprüfen",
|
||||
"check_corrupt_asset_backup_button": "Überprüfung durchführen",
|
||||
"check_corrupt_asset_backup_description": "Führe diese Prüfung nur mit aktivierten WLAN durch, nachdem alle Dateien gesichert worden sind. Dieser Vorgang kann ein paar Minuten dauern.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Nutzer erstellen",
|
||||
"created": "Erstellt",
|
||||
"created_at": "Erstellt",
|
||||
"creating_linked_albums": "Erstelle verknüpfte Alben...",
|
||||
"crop": "Zuschneiden",
|
||||
"curated_object_page_title": "Dinge",
|
||||
"current_device": "Aktuelles Gerät",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Fehler",
|
||||
"error_change_sort_album": "Ändern der Anzeigereihenfolge fehlgeschlagen",
|
||||
"error_delete_face": "Fehler beim Löschen des Gesichts",
|
||||
"error_getting_places": "Fehler beim Abrufen der Orte",
|
||||
"error_loading_image": "Fehler beim Laden des Bildes",
|
||||
"error_loading_partners": "Fehler beim Laden der Partner: {error}",
|
||||
"error_saving_image": "Fehler: {error}",
|
||||
"error_tag_face_bounding_box": "Fehler beim Markieren des Gesichts - Begrenzungen können nicht abgerufen werden",
|
||||
"error_title": "Fehler - Etwas ist schief gelaufen",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Keine favorisierten Inhalte gefunden",
|
||||
"feature_photo_updated": "Profilbild aktualisiert",
|
||||
"features": "Funktionen",
|
||||
"features_in_development": "Feature in Entwicklung",
|
||||
"features_setting_description": "Funktionen der App verwalten",
|
||||
"file_name": "Dateiname",
|
||||
"file_name_or_extension": "Dateiname oder -erweiterung",
|
||||
|
|
@ -1190,7 +1207,7 @@
|
|||
"large_files": "Große Dateien",
|
||||
"last": "Letzte",
|
||||
"last_seen": "Zuletzt gesehen",
|
||||
"latest_version": "Aktuellste Version",
|
||||
"latest_version": "Aktuelle Version",
|
||||
"latitude": "Breitengrad",
|
||||
"leave": "Verlassen",
|
||||
"leave_album": "Album verlassen",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokal",
|
||||
"local_asset_cast_failed": "Eine Datei, die nicht auf den Server hochgeladen wurde, kann nicht gecastet werden",
|
||||
"local_assets": "Lokale Dateien",
|
||||
"local_media_summary": "Zusammenfassung der lokalen Medien",
|
||||
"local_network": "Lokales Netzwerk",
|
||||
"local_network_sheet_info": "Die App stellt über diese URL eine Verbindung zum Server her, wenn sie das angegebene WLAN-Netzwerk verwendet",
|
||||
"location_permission": "Standort Genehmigung",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Längengrad eingeben",
|
||||
"lock": "Sperren",
|
||||
"locked_folder": "Gesperrter Ordner",
|
||||
"log_detail_title": "Protokoll Details",
|
||||
"log_out": "Abmelden",
|
||||
"log_out_all_devices": "Alle Geräte abmelden",
|
||||
"logged_in_as": "Angemeldet als {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Passwort erfolgreich geändert",
|
||||
"logout_all_device_confirmation": "Bist du sicher, dass du alle Geräte abmelden willst?",
|
||||
"logout_this_device_confirmation": "Bist du sicher, dass du dieses Gerät abmelden willst?",
|
||||
"logs": "Protokolle",
|
||||
"longitude": "Längengrad",
|
||||
"look": "Erscheinungsbild",
|
||||
"loop_videos": "Loop-Videos",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Als gelesen markieren",
|
||||
"marked_all_as_read": "Alle als gelesen markiert",
|
||||
"matches": "Treffer",
|
||||
"matching_assets": "Passende Dateien",
|
||||
"media_type": "Medientyp",
|
||||
"memories": "Erinnerungen",
|
||||
"memories_all_caught_up": "Alles aufgeholt",
|
||||
|
|
@ -1339,8 +1360,9 @@
|
|||
"my_albums": "Meine Alben",
|
||||
"name": "Name",
|
||||
"name_or_nickname": "Name oder Nickname",
|
||||
"network_requirement_photos_upload": "Mobiles Datennetz verwenden, um Fotos zu sichern",
|
||||
"network_requirement_videos_upload": "Mobiles Datennetz verwenden, um Videos zu sichern",
|
||||
"network_requirement_photos_upload": "Mobile Daten verwenden, um Fotos zu sichern",
|
||||
"network_requirement_videos_upload": "Mobile Daten verwenden, um Videos zu sichern",
|
||||
"network_requirements": "Anforderungen ans Netzwerk",
|
||||
"network_requirements_updated": "Netzwerk-Abhängigkeiten haben sich geändert, Backup-Warteschlange wird zurückgesetzt",
|
||||
"networking_settings": "Netzwerk",
|
||||
"networking_subtitle": "Verwaltung von Server-Endpunkt-Einstellungen",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Neue Person",
|
||||
"new_pin_code": "Neuer PIN Code",
|
||||
"new_pin_code_subtitle": "Dies ist dein erster Zugriff auf den gesperrten Ordner. Erstelle einen PIN Code für den sicheren Zugriff auf diese Seite",
|
||||
"new_timeline": "Neue Zeitleiste",
|
||||
"new_user_created": "Neuer Benutzer wurde erstellt",
|
||||
"new_version_available": "NEUE VERSION VERFÜGBAR",
|
||||
"newest_first": "Neueste zuerst",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLICKE, UM DEIN ERSTES FOTO HOCHZULADEN",
|
||||
"no_assets_to_show": "Keine Vorschau vorhanden",
|
||||
"no_cast_devices_found": "Keine Geräte zum Übertragen gefunden",
|
||||
"no_checksum_local": "Prüfsumme nicht verfügbar - kann lokale Datei/en nicht laden",
|
||||
"no_checksum_remote": "Prüfsumme nicht verfügbar - kann entfernte Datei/en nicht laden",
|
||||
"no_duplicates_found": "Es wurden keine Duplikate gefunden.",
|
||||
"no_exif_info_available": "Keine EXIF-Informationen vorhanden",
|
||||
"no_explore_results_message": "Lade weitere Fotos hoch, um deine Sammlung zu erkunden.",
|
||||
"no_favorites_message": "Füge Favoriten hinzu, um deine besten Bilder und Videos schnell zu finden",
|
||||
"no_libraries_message": "Eine externe Bibliothek erstellen, um deine Fotos und Videos anzusehen",
|
||||
"no_local_assets_found": "Keine lokale Datei mit dieser Prüfsumme gefunden",
|
||||
"no_locked_photos_message": "Fotos und Videos im gesperrten Ordner sind versteckt und werden nicht angezeigt, wenn du deine Bibliothek durchsuchst.",
|
||||
"no_name": "Kein Name",
|
||||
"no_notifications": "Keine Benachrichtigungen",
|
||||
"no_people_found": "Keine passenden Personen gefunden",
|
||||
"no_places": "Keine Orte",
|
||||
"no_remote_assets_found": "Keine entfernten Dateien mit dieser Prüfsumme gefunden",
|
||||
"no_results": "Keine Ergebnisse",
|
||||
"no_results_description": "Versuche es mit einem Synonym oder einem allgemeineren Stichwort",
|
||||
"no_shared_albums_message": "Erstelle ein Album, um Fotos und Videos mit Personen in deinem Netzwerk zu teilen",
|
||||
"no_uploads_in_progress": "Kein Upload in Bearbeitung",
|
||||
"not_available": "N/A",
|
||||
"not_in_any_album": "In keinem Album",
|
||||
"not_selected": "Nicht ausgewählt",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Hinweis: Um eine Speicherpfadbezeichnung anzuwenden, starte den",
|
||||
|
|
@ -1475,7 +1503,7 @@
|
|||
"person": "Person",
|
||||
"person_age_months": "{months, plural, one {# month} other {# months}} alt",
|
||||
"person_age_year_months": "1 Jahr, {months, plural, one {# month} other {# months}} alt",
|
||||
"person_age_years": "{years, plural, other {# years}} alt",
|
||||
"person_age_years": "{years, plural, one {# Jahr} other {# Jahre}} alt",
|
||||
"person_birthdate": "Geboren am {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (verborgen)} other {}}",
|
||||
"photo_shared_all_users": "Es sieht so aus, als hättest du deine Fotos mit allen Benutzern geteilt oder du hast keine Benutzer, mit denen du teilen kannst.",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "App-Einstellungen verwalten",
|
||||
"preferences_settings_title": "Voreinstellungen",
|
||||
"preparing": "Vorbereiten",
|
||||
"preset": "Voreinstellung",
|
||||
"preview": "Vorschau",
|
||||
"previous": "Vorherige",
|
||||
|
|
@ -1541,7 +1570,7 @@
|
|||
"purchase_license_subtitle": "Kaufe Immich, um die fortlaufende Entwicklung zu unterstützen",
|
||||
"purchase_lifetime_description": "Lebenslange Gültigkeit",
|
||||
"purchase_option_title": "KAUFOPTIONEN",
|
||||
"purchase_panel_info_1": "Die Entwicklung von Immich erfordert viel Zeit und Mühe, und wir haben Vollzeit-Entwickler, die daran arbeiten es möglichst perfekt zu machen. Unser Ziel ist es, dass Open-Source-Software und moralische Geschäftsmethoden zu einer nachhaltigen Einkommensquelle für Entwickler werden und ein datenschutzfreundliches Ökosystem mit echten Alternativen zu ausbeuterischen Cloud-Diensten geschaffen wird.",
|
||||
"purchase_panel_info_1": "Die Entwicklung von Immich erfordert viel Zeit und Mühe und wir haben Vollzeit-Entwickler, die daran arbeiten Immich möglichst perfekt zu machen. Unser Ziel ist es, Open-Source-Software und ethische Geschäftspraktiken zu einer verlässlichen Einkommensquelle für Entwickler zu machen und ein datenschutzfreundliches Ökosystem mit echten Alternativen zu ausbeuterischen Cloud-Diensten zu schaffen.",
|
||||
"purchase_panel_info_2": "Weil wir uns dagegen entschieden haben, eine Bezahlschranke einzusetzen, wird dieser Kauf keine zusätzlichen Funktionen in Immich freischalten. Wir verlassen uns auf Nutzende wie dich, um die Entwicklung von Immich zu unterstützen.",
|
||||
"purchase_panel_title": "Das Projekt unterstützen",
|
||||
"purchase_per_server": "Pro Server",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Changelog lesen",
|
||||
"readonly_mode_disabled": "Schreibgeschützter Modus deaktiviert",
|
||||
"readonly_mode_enabled": "Schreibgeschützter Modus aktiviert",
|
||||
"ready_for_upload": "Bereit zum Hochladen",
|
||||
"reassign": "Neu zuweisen",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {# Datei wurde} other {# Dateien wurden}} {name, select, null {einer vorhandenen Person} other {{name}}} zugewiesen",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {# Datei wurde} other {# Dateien wurden}} einer neuen Person zugewiesen",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Miniaturansichten werden neu erstellt",
|
||||
"remote": "Server",
|
||||
"remote_assets": "Server-Dateien",
|
||||
"remote_media_summary": "Zusammenfassung der entfernten Medien",
|
||||
"remove": "Entfernen",
|
||||
"remove_assets_album_confirmation": "Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} aus dem Album entfernen willst?",
|
||||
"remove_assets_shared_link_confirmation": "Bist du sicher, dass du {count, plural, one {# Datei} other {# Dateien}} von diesem geteilten Link entfernen willst?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Slideshow-Übergang anzeigen",
|
||||
"show_supporter_badge": "Unterstützerabzeichen",
|
||||
"show_supporter_badge_description": "Zeige Unterstützerabzeichen",
|
||||
"show_text_search_menu": "Zeige Menü für Textsuche",
|
||||
"shuffle": "Durchmischen",
|
||||
"sidebar": "Seitenleiste",
|
||||
"sidebar_display_description": "Zeige einen Link zu der Ansicht in der Seitenleiste an",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stapelaufgaben",
|
||||
"start": "Starten",
|
||||
"start_date": "Anfangsdatum",
|
||||
"start_date_before_end_date": "Anfangsdatum muss vor dem Enddatum liegen",
|
||||
"state": "Bundesland / Provinz",
|
||||
"status": "Status",
|
||||
"stop_casting": "Übertragung stoppen",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du hast keine geteilten Links",
|
||||
"your_wifi_name": "Dein WLAN-Name",
|
||||
"zoom_image": "Bild vergrößern"
|
||||
"zoom_image": "Bild vergrößern",
|
||||
"zoom_to_bounds": "In die Grenzen zoomen"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Ενεργοποίηση καταγραφής συμβάντων",
|
||||
"logging_level_description": "Το επίπεδο καταγραφής συμβάντων που θα εφαρμοστεί, όταν αυτή είναι ενεργοποιημένη.",
|
||||
"logging_settings": "Καταγραφή Συμβάντων",
|
||||
"machine_learning_availability_checks": "Έλεγχοι διαθεσιμότητας",
|
||||
"machine_learning_availability_checks_description": "Αυτόματος ανίχνευση και προτίμηση διαθέσιμων διακομιστών μηχανικής μάθησης",
|
||||
"machine_learning_availability_checks_enabled": "Ενεργοποίηση ελέγχων διαθεσιμότητας",
|
||||
"machine_learning_availability_checks_interval": "Διάστημα ελέγχου",
|
||||
"machine_learning_availability_checks_interval_description": "Διάστημα σε χιλιοστά δευτερολέπτου μεταξύ των ελέγχων διαθεσιμότητας",
|
||||
"machine_learning_availability_checks_timeout": "Αίτημα χρονικού ορίου λήξης",
|
||||
"machine_learning_availability_checks_timeout_description": "Χρονικό όριο σε χιλιοστά δευτερολέπτου για ελέγχους διαθεσιμότητας",
|
||||
"machine_learning_clip_model": "Μοντέλο CLIP",
|
||||
"machine_learning_clip_model_description": "Το όνομα ενός μοντέλου CLIP που αναφέρεται <link>εδώ</link>. Σημειώστε ότι πρέπει να επανεκτελέσετε την εργασία 'Έξυπνη Αναζήτηση' για όλες τις εικόνες μετά την αλλαγή μοντέλου.",
|
||||
"machine_learning_duplicate_detection": "Εντοπισμός Διπλότυπων",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Κωδικός πρόσβασης Διαχειριστή",
|
||||
"administration": "Διαχείριση",
|
||||
"advanced": "Για προχωρημένους",
|
||||
"advanced_settings_beta_timeline_subtitle": "Δοκίμασε τη νέα εμπειρία της εφαρμογής",
|
||||
"advanced_settings_beta_timeline_title": "Δοκιμαστικό χρονολόγιο",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Χρησιμοποιήστε αυτήν την επιλογή για να φιλτράρετε τα μέσα ενημέρωσης κατά τον συγχρονισμό με βάση εναλλακτικά κριτήρια. Δοκιμάστε αυτή τη δυνατότητα μόνο αν έχετε προβλήματα με την εφαρμογή που εντοπίζει όλα τα άλμπουμ.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[ΠΕΙΡΑΜΑΤΙΚΟ] Χρήση εναλλακτικού φίλτρου συγχρονισμού άλμπουμ συσκευής",
|
||||
"advanced_settings_log_level_title": "Επίπεδο σύνδεσης: {level}",
|
||||
|
|
|
|||
|
|
@ -933,7 +933,6 @@
|
|||
"cant_get_number_of_comments": "Can't get number of comments",
|
||||
"cant_search_people": "Can't search people",
|
||||
"cant_search_places": "Can't search places",
|
||||
"clipboard_unsupported_mime_type": "The system clipboard does not support copying this type of content: {mimeType}",
|
||||
"error_adding_assets_to_album": "Error adding assets to album",
|
||||
"error_adding_users_to_album": "Error adding users to album",
|
||||
"error_deleting_shared_user": "Error deleting shared user",
|
||||
|
|
@ -1542,6 +1541,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Manage the app's preferences",
|
||||
"preferences_settings_title": "Preferences",
|
||||
"preparing": "Preparing",
|
||||
"preset": "Preset",
|
||||
"preview": "Preview",
|
||||
"previous": "Previous",
|
||||
|
|
@ -1607,6 +1607,7 @@
|
|||
"read_changelog": "Read Changelog",
|
||||
"readonly_mode_disabled": "Read-only mode disabled",
|
||||
"readonly_mode_enabled": "Read-only mode enabled",
|
||||
"ready_for_upload": "Ready for upload",
|
||||
"reassign": "Reassign",
|
||||
"reassigned_assets_to_existing_person": "Re-assigned {count, plural, one {# asset} other {# assets}} to {name, select, null {an existing person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Re-assigned {count, plural, one {# asset} other {# assets}} to a new person",
|
||||
|
|
|
|||
48
i18n/es.json
48
i18n/es.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Habilitar registro",
|
||||
"logging_level_description": "Indica el nivel de registro a utilizar cuando está habilitado.",
|
||||
"logging_settings": "Registro",
|
||||
"machine_learning_availability_checks": "Comprobaciones de disponibilidad",
|
||||
"machine_learning_availability_checks_description": "Automáticamente detectar y preferir servidores de machine learning disponibles",
|
||||
"machine_learning_availability_checks_enabled": "Habilitar comprobaciones de disponibilidad",
|
||||
"machine_learning_availability_checks_interval": "Intervalo de comprobación",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalo en milisegundos entre las comprobaciones de disponibilidad",
|
||||
"machine_learning_availability_checks_timeout": "Tiempo de espera de solicitud",
|
||||
"machine_learning_availability_checks_timeout_description": "Tiempo de espera en milisegundos para comprobaciones de disponibilidad",
|
||||
"machine_learning_clip_model": "Modelo CLIP (Contrastive Language-Image Pre-Training)",
|
||||
"machine_learning_clip_model_description": "El nombre de un modelo CLIP listado <link>aquí</link>. Tendrás que relanzar el trabajo 'Búsqueda Inteligente' para todos los elementos al cambiar de modelo.",
|
||||
"machine_learning_duplicate_detection": "Detección de duplicados",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Contraseña del administrador",
|
||||
"administration": "Administración",
|
||||
"advanced": "Avanzada",
|
||||
"advanced_settings_beta_timeline_subtitle": "Prueba la nueva experiencia de la aplicación",
|
||||
"advanced_settings_beta_timeline_title": "Cronología beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Usa esta opción para filtrar medios durante la sincronización según criterios alternativos. Intenta esto solo si tienes problemas con que la aplicación detecte todos los álbumes.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Usar filtro alternativo de sincronización de álbumes del dispositivo",
|
||||
"advanced_settings_log_level_title": "Nivel de registro: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "¿Estás seguro de que quieres eliminar a {user}?",
|
||||
"album_search_not_found": "No se encontraron álbumes que coincidan con tu búsqueda",
|
||||
"album_share_no_users": "Parece que has compartido este álbum con todos los usuarios o no tienes ningún usuario con quien compartirlo.",
|
||||
"album_summary": "Resumen del álbum",
|
||||
"album_updated": "Album actualizado",
|
||||
"album_updated_setting_description": "Reciba una notificación por correo electrónico cuando un álbum compartido tenga nuevos archivos",
|
||||
"album_user_left": "Salida {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Elementos restaurados exitosamente",
|
||||
"asset_skipped": "Omitido",
|
||||
"asset_skipped_in_trash": "En la papelera",
|
||||
"asset_trashed": "Elemento eliminado",
|
||||
"asset_troubleshoot": "Diagnóstico del elemento",
|
||||
"asset_uploaded": "Subido",
|
||||
"asset_uploading": "Subiendo…",
|
||||
"asset_viewer_settings_subtitle": "Administra las configuracioens de tu visor de fotos",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Presentación con reproducción automática",
|
||||
"back": "Atrás",
|
||||
"back_close_deselect": "Atrás, cerrar o anular la selección",
|
||||
"background_backup_running_error": "Ya se está ejecutando la copia de seguridad en segundo plano, no se puede iniciar la copia de seguridad manual",
|
||||
"background_location_permission": "Permiso de ubicación en segundo plano",
|
||||
"background_location_permission_content": "Para poder cambiar de red mientras se ejecuta en segundo plano, Immich debe tener *siempre* acceso a la ubicación precisa para que la aplicación pueda leer el nombre de la red Wi-Fi",
|
||||
"background_options": "Opciones de segundo plano",
|
||||
"backup": "Copia de Seguridad",
|
||||
"backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Seleccionar álbumes",
|
||||
"backup_album_selection_page_selection_info": "Información sobre la Selección",
|
||||
"backup_album_selection_page_total_assets": "Total de elementos únicos",
|
||||
"backup_albums_sync": "Sincronización de álbumes de respaldo",
|
||||
"backup_all": "Todos",
|
||||
"backup_background_service_backup_failed_message": "Error al copiar elementos. Reintentando…",
|
||||
"backup_background_service_connection_failed_message": "Error al conectar con el servidor. Reintentando…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Cambiar PIN",
|
||||
"change_your_password": "Cambia tu contraseña",
|
||||
"changed_visibility_successfully": "Visibilidad cambiada correctamente",
|
||||
"charging": "Cargando",
|
||||
"charging_requirement_mobile_backup": "La copia de seguridad en segundo plano requiere que el dispositivo se esté cargando",
|
||||
"check_corrupt_asset_backup": "Comprobar copias de seguridad de archivos corruptos",
|
||||
"check_corrupt_asset_backup_button": "Realizar comprobación",
|
||||
"check_corrupt_asset_backup_description": "Ejecutar esta comprobación solo por Wi-Fi y una vez que todos los archivos hayan sido respaldados. El procedimiento puede tardar unos minutos.",
|
||||
|
|
@ -685,7 +698,7 @@
|
|||
"comments_and_likes": "Comentarios y me gusta",
|
||||
"comments_are_disabled": "Los comentarios están deshabilitados",
|
||||
"common_create_new_album": "Crear nuevo álbum",
|
||||
"common_server_error": "Por favor, verifica tu conexión de red, asegúrate de que el servidor esté accesible y las versiones de la aplicación y del servidor sean compatibles.",
|
||||
"common_server_error": "Por favor, comprueba tu conexión de red, asegúrate de que el servidor esté accesible y las versiones de la aplicación y del servidor sean compatibles.",
|
||||
"completed": "Completado",
|
||||
"confirm": "Confirmar",
|
||||
"confirm_admin_password": "Confirmar contraseña del administrador",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Crear usuario",
|
||||
"created": "Creado",
|
||||
"created_at": "Creado",
|
||||
"creating_linked_albums": "Creando álbumes vinculados...",
|
||||
"crop": "Recortar",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_device": "Dispositivo actual",
|
||||
|
|
@ -798,7 +812,7 @@
|
|||
"deletes_missing_assets": "Elimina archivos que faltan en el disco duro",
|
||||
"description": "Descripción",
|
||||
"description_input_hint_text": "Agregar descripción...",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, verifica el registro para obtener más detalles",
|
||||
"description_input_submit_error": "Error al actualizar la descripción, comprueba el registro para obtener más detalles",
|
||||
"deselect_all": "Deseleccionar Todo",
|
||||
"details": "Detalles",
|
||||
"direction": "Dirección",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Error",
|
||||
"error_change_sort_album": "No se pudo cambiar el orden de visualización del álbum",
|
||||
"error_delete_face": "Error al eliminar la cara del archivo",
|
||||
"error_getting_places": "Error obteniendo lugares",
|
||||
"error_loading_image": "Error al cargar la imagen",
|
||||
"error_loading_partners": "Error al cargar compañeros: {error}",
|
||||
"error_saving_image": "Error: {error}",
|
||||
"error_tag_face_bounding_box": "Error al etiquetar la cara: no se pueden obtener las coordenadas del marco",
|
||||
"error_title": "Error: algo salió mal",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "No se encontraron elementos marcados como favoritos",
|
||||
"feature_photo_updated": "Foto destacada actualizada",
|
||||
"features": "Características",
|
||||
"features_in_development": "Funciones en Desarrollo",
|
||||
"features_setting_description": "Administrar las funciones de la aplicación",
|
||||
"file_name": "Nombre de archivo",
|
||||
"file_name_or_extension": "Nombre del archivo o extensión",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Local",
|
||||
"local_asset_cast_failed": "No es posible transmitir un recurso que no está subido al servidor",
|
||||
"local_assets": "Archivos Locales",
|
||||
"local_media_summary": "Resumen de Medios Locales",
|
||||
"local_network": "Red local",
|
||||
"local_network_sheet_info": "La aplicación se conectará al servidor a través de esta URL cuando utilice la red Wi-Fi especificada",
|
||||
"location_permission": "Permiso de ubicación",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Introduce tu longitud aquí",
|
||||
"lock": "Bloquear",
|
||||
"locked_folder": "Carpeta protegida",
|
||||
"log_detail_title": "Detalle del registro",
|
||||
"log_out": "Cerrar sesión",
|
||||
"log_out_all_devices": "Cerrar sesión en todos los dispositivos",
|
||||
"logged_in_as": "Sesión iniciada como {user}",
|
||||
|
|
@ -1236,7 +1255,7 @@
|
|||
"logged_out_device": "Dispositivo desconectado",
|
||||
"login": "Inicio de sesión",
|
||||
"login_disabled": "El inicio de sesión ha sido desactivado",
|
||||
"login_form_api_exception": "Excepción producida por API. Por favor, verifica el URL del servidor e inténtalo de nuevo.",
|
||||
"login_form_api_exception": "Excepción producida por API. Por favor, comprueba el URL del servidor e inténtalo de nuevo.",
|
||||
"login_form_back_button_text": "Atrás",
|
||||
"login_form_email_hint": "tucorreo@correo.com",
|
||||
"login_form_endpoint_hint": "http://tu-ip-de-servidor:puerto",
|
||||
|
|
@ -1246,7 +1265,7 @@
|
|||
"login_form_err_invalid_url": "URL no válida",
|
||||
"login_form_err_leading_whitespace": "Espacio en blanco inicial",
|
||||
"login_form_err_trailing_whitespace": "Espacio en blanco al final",
|
||||
"login_form_failed_get_oauth_server_config": "Error al iniciar sesión con OAuth, verifica la URL del servidor",
|
||||
"login_form_failed_get_oauth_server_config": "Error al iniciar sesión con OAuth, comprueba la URL del servidor",
|
||||
"login_form_failed_get_oauth_server_disable": "La función de OAuth no está disponible en este servidor",
|
||||
"login_form_failed_login": "Error al iniciar sesión, comprueba la URL del servidor, el correo electrónico y la contraseña",
|
||||
"login_form_handshake_exception": "Hubo una excepción de handshake con el servidor. Activa la compatibilidad con certificados autofirmados en la configuración si estás utilizando un certificado autofirmado.",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Contraseña cambiado con éxito",
|
||||
"logout_all_device_confirmation": "¿Estás seguro de que quieres cerrar sesión en todos los dispositivos?",
|
||||
"logout_this_device_confirmation": "¿Estás seguro de que quieres cerrar sesión en este dispositivo?",
|
||||
"logs": "Registros",
|
||||
"longitude": "Longitud",
|
||||
"look": "Mirar",
|
||||
"loop_videos": "Vídeos en bucle",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Marcar como leído",
|
||||
"marked_all_as_read": "Todos marcados como leídos",
|
||||
"matches": "Coincidencias",
|
||||
"matching_assets": "Elementos Coincidentes",
|
||||
"media_type": "Tipo de medio",
|
||||
"memories": "Recuerdos",
|
||||
"memories_all_caught_up": "Puesto al día",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nombre o apodo",
|
||||
"network_requirement_photos_upload": "Usar datos móviles para crear una copia de seguridad de las fotos",
|
||||
"network_requirement_videos_upload": "Usar datos móviles para crear una copia de seguridad de los videos",
|
||||
"network_requirements": "Requisitos de red",
|
||||
"network_requirements_updated": "Los requisitos de red han cambiado, reiniciando la cola de copias de seguridad",
|
||||
"networking_settings": "Red",
|
||||
"networking_subtitle": "Configuraciones de acceso por URL al servidor",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nueva persona",
|
||||
"new_pin_code": "Nuevo PIN",
|
||||
"new_pin_code_subtitle": "Esta es la primera vez que accedes a la carpeta protegida. Crea un código PIN seguro para acceder a esta página",
|
||||
"new_timeline": "Nueva Línea de tiempo",
|
||||
"new_user_created": "Nuevo usuario creado",
|
||||
"new_version_available": "NUEVA VERSIÓN DISPONIBLE",
|
||||
"newest_first": "El más reciente primero",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "HAZ CLIC PARA SUBIR TU PRIMERA FOTO",
|
||||
"no_assets_to_show": "No hay elementos a mostrar",
|
||||
"no_cast_devices_found": "No se encontraron dispositivos de transmisión",
|
||||
"no_checksum_local": "Suma de verificación no disponible. No se pueden obtener los elementos locales",
|
||||
"no_checksum_remote": "Suma de verificación no disponible. No se puede obtener el elemento remoto",
|
||||
"no_duplicates_found": "No se encontraron duplicados.",
|
||||
"no_exif_info_available": "No hay información exif disponible",
|
||||
"no_explore_results_message": "Sube más fotos para explorar tu colección.",
|
||||
"no_favorites_message": "Agregue favoritos para encontrar rápidamente sus mejores fotos y videos",
|
||||
"no_libraries_message": "Crea una biblioteca externa para ver tus fotos y vídeos",
|
||||
"no_local_assets_found": "No se encontraron elementos locales con esta suma de comprobación",
|
||||
"no_locked_photos_message": "Las fotos y los vídeos de la carpeta protegida se mantienen ocultos; no aparecerán cuando veas o busques elementos en tu biblioteca.",
|
||||
"no_name": "Sin nombre",
|
||||
"no_notifications": "Ninguna notificación",
|
||||
"no_people_found": "No se encontraron personas coincidentes",
|
||||
"no_places": "Sin lugares",
|
||||
"no_remote_assets_found": "No se encontraron elementos remotos con esta suma de comprobación",
|
||||
"no_results": "Sin resultados",
|
||||
"no_results_description": "Pruebe con un sinónimo o una palabra clave más general",
|
||||
"no_shared_albums_message": "Crea un álbum para compartir fotos y vídeos con personas de tu red",
|
||||
"no_uploads_in_progress": "No hay cargas en progreso",
|
||||
"not_available": "N/D",
|
||||
"not_in_any_album": "Sin álbum",
|
||||
"not_selected": "No seleccionado",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar la etiqueta de almacenamiento a los archivos que ya se subieron, ejecute la",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Puerto",
|
||||
"preferences_settings_subtitle": "Configuraciones de la aplicación",
|
||||
"preferences_settings_title": "Preferencias",
|
||||
"preparing": "Preparando",
|
||||
"preset": "Preestablecido",
|
||||
"preview": "Posterior",
|
||||
"previous": "Anterior",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Leer registro de cambios",
|
||||
"readonly_mode_disabled": "Modo Solo lectura deshabilitado",
|
||||
"readonly_mode_enabled": "Modo Solo lectura habilitado",
|
||||
"ready_for_upload": "Listo para subir",
|
||||
"reassign": "Reasignar",
|
||||
"reassigned_assets_to_existing_person": "Reasignado {count, plural, one {# elemento} other {# elementos}} a {name, select, null {una persona existente} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Reasignado {count, plural, one {# elemento} other {# elementos}} a un nuevo usuario",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Recargando miniaturas",
|
||||
"remote": "Remoto",
|
||||
"remote_assets": "Elementos remotos",
|
||||
"remote_media_summary": "Resumen de Medios Remotos",
|
||||
"remove": "Eliminar",
|
||||
"remove_assets_album_confirmation": "¿Estás seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del álbum?",
|
||||
"remove_assets_shared_link_confirmation": "¿Estás seguro que quieres eliminar {count, plural, one {# elemento} other {# elementos}} del enlace compartido?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Mostrar la transición de las diapositivas",
|
||||
"show_supporter_badge": "Insignia de colaborador",
|
||||
"show_supporter_badge_description": "Mostrar una insignia de colaborador",
|
||||
"show_text_search_menu": "Mostrar el menú de búsqueda",
|
||||
"shuffle": "Modo aleatorio",
|
||||
"sidebar": "Barra lateral",
|
||||
"sidebar_display_description": "Muestra un enlace a la vista en la barra lateral",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Seguimiento de pila",
|
||||
"start": "Inicio",
|
||||
"start_date": "Fecha de inicio",
|
||||
"start_date_before_end_date": "Fecha de inicio debe ser antes de fecha final",
|
||||
"state": "Estado",
|
||||
"status": "Estado",
|
||||
"stop_casting": "Detener transmisión",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Sí",
|
||||
"you_dont_have_any_shared_links": "No tienes ningún enlace compartido",
|
||||
"your_wifi_name": "El nombre de tu Wi-Fi",
|
||||
"zoom_image": "Acercar Imagen"
|
||||
"zoom_image": "Acercar Imagen",
|
||||
"zoom_to_bounds": "Ajustar a los límites"
|
||||
}
|
||||
|
|
|
|||
45
i18n/et.json
45
i18n/et.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Luba logimine",
|
||||
"logging_level_description": "Kui lubatud, millist logimistaset kasutada.",
|
||||
"logging_settings": "Logimine",
|
||||
"machine_learning_availability_checks": "Saadavuskontrollid",
|
||||
"machine_learning_availability_checks_description": "Tuvasta ja eelista automaatselt saadavalolevaid masinõppeservereid",
|
||||
"machine_learning_availability_checks_enabled": "Luba saadavuskontrollid",
|
||||
"machine_learning_availability_checks_interval": "Kontrolli intervall",
|
||||
"machine_learning_availability_checks_interval_description": "Saadavuskontrollide intervall millisekundites",
|
||||
"machine_learning_availability_checks_timeout": "Päringu ajalõpp",
|
||||
"machine_learning_availability_checks_timeout_description": "Saadavuskontrollide ajalõpp millisekundites",
|
||||
"machine_learning_clip_model": "CLIP mudel",
|
||||
"machine_learning_clip_model_description": "CLIP mudeli nimi, mis on loetletud <link>siin</link>. Pane tähele, et mudeli muutmisel pead kõigi piltide peal nutiotsingu tööte uuesti käivitama.",
|
||||
"machine_learning_duplicate_detection": "Duplikaatide leidmine",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administraatori parool",
|
||||
"administration": "Administratsioon",
|
||||
"advanced": "Täpsemad valikud",
|
||||
"advanced_settings_beta_timeline_subtitle": "Koge uut rakendust",
|
||||
"advanced_settings_beta_timeline_title": "Beeta ajajoon",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Kasuta seda valikut, et filtreerida sünkroonimise ajal üksuseid alternatiivsete kriteeriumite alusel. Proovi seda ainult siis, kui rakendusel on probleeme kõigi albumite tuvastamisega.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTAALNE] Kasuta alternatiivset seadme albumi sünkroonimise filtrit",
|
||||
"advanced_settings_log_level_title": "Logimistase: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Kas oled kindel, et soovid kasutaja {user} eemaldada?",
|
||||
"album_search_not_found": "Otsingule vastavaid albumeid ei leitud",
|
||||
"album_share_no_users": "Paistab, et oled seda albumit kõikide kasutajatega jaganud, või pole ühtegi kasutajat, kellega jagada.",
|
||||
"album_summary": "Albumi kokkuvõte",
|
||||
"album_updated": "Album muudetud",
|
||||
"album_updated_setting_description": "Saa teavitus e-posti teel, kui jagatud albumis on uusi üksuseid",
|
||||
"album_user_left": "Lahkutud albumist {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Üksus edukalt taastatud",
|
||||
"asset_skipped": "Vahele jäetud",
|
||||
"asset_skipped_in_trash": "Prügikastis",
|
||||
"asset_trashed": "Üksus liigutatud prügikasti",
|
||||
"asset_troubleshoot": "Üksuse tõrkeotsing",
|
||||
"asset_uploaded": "Üleslaaditud",
|
||||
"asset_uploading": "Üleslaadimine…",
|
||||
"asset_viewer_settings_subtitle": "Halda galeriivaaturi seadeid",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Esita slaidiesitlus automaatselt",
|
||||
"back": "Tagasi",
|
||||
"back_close_deselect": "Tagasi, sulge või tühista valik",
|
||||
"background_backup_running_error": "Taustvarundus on käimas, ei saa käsitsi varundust alustada",
|
||||
"background_location_permission": "Taustal asukoha luba",
|
||||
"background_location_permission_content": "Et taustal töötades võrguühendust vahetada, peab Immich'il *alati* olema täpse asukoha luba, et rakendus saaks WiFi-võrgu nime lugeda",
|
||||
"background_options": "Taustavalikud",
|
||||
"backup": "Varundamine",
|
||||
"backup_album_selection_page_albums_device": "Albumid seadmel ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Puuduta kaasamiseks, topeltpuuduta välistamiseks",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Vali albumid",
|
||||
"backup_album_selection_page_selection_info": "Valiku info",
|
||||
"backup_album_selection_page_total_assets": "Unikaalseid üksuseid kokku",
|
||||
"backup_albums_sync": "Varundusalbumite sünkroniseerimine",
|
||||
"backup_all": "Kõik",
|
||||
"backup_background_service_backup_failed_message": "Üksuste varundamine ebaõnnestus. Uuesti proovimine…",
|
||||
"backup_background_service_connection_failed_message": "Serveriga ühendumine ebaõnnestus. Uuesti proovimine…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Muuda PIN-koodi",
|
||||
"change_your_password": "Muuda oma parooli",
|
||||
"changed_visibility_successfully": "Nähtavus muudetud",
|
||||
"charging": "Laadimine",
|
||||
"charging_requirement_mobile_backup": "Taustal varundus vajab, et seade oleks laadimas",
|
||||
"check_corrupt_asset_backup": "Otsi riknenud üksuste varukoopiaid",
|
||||
"check_corrupt_asset_backup_button": "Teosta kontroll",
|
||||
"check_corrupt_asset_backup_description": "Käivita see kontroll ainult WiFi-võrgus ja siis, kui kõik üksused on varundatud. See protseduur võib kesta mõne minuti.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Lisa kasutaja",
|
||||
"created": "Lisatud",
|
||||
"created_at": "Lisatud",
|
||||
"creating_linked_albums": "Lingitud albumite loomine...",
|
||||
"crop": "Kärpimine",
|
||||
"curated_object_page_title": "Asjad",
|
||||
"current_device": "Praegune seade",
|
||||
|
|
@ -832,11 +846,11 @@
|
|||
"download_settings_description": "Halda üksuste allalaadimise seadeid",
|
||||
"download_started": "Allalaadimine alustatud",
|
||||
"download_sucess": "Allalaadimine õnnestus",
|
||||
"download_sucess_android": "Meediumid laaditi alla kataloogi DCIM/Immich",
|
||||
"download_sucess_android": "Üksused laaditi alla kataloogi DCIM/Immich",
|
||||
"download_waiting_to_retry": "Uuesti proovimise ootel",
|
||||
"downloading": "Allalaadimine",
|
||||
"downloading_asset_filename": "Üksuse {filename} allalaadimine",
|
||||
"downloading_media": "Meediumi allalaadimine",
|
||||
"downloading_media": "Üksuste allalaadimine",
|
||||
"drop_files_to_upload": "Failide üleslaadimiseks sikuta need ükskõik kuhu",
|
||||
"duplicates": "Duplikaadid",
|
||||
"duplicates_description": "Lahenda iga grupp, valides duplikaadid, kui neid on",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Viga",
|
||||
"error_change_sort_album": "Albumi sorteerimisjärjestuse muutmine ebaõnnestus",
|
||||
"error_delete_face": "Viga näo kustutamisel",
|
||||
"error_getting_places": "Viga kohtade pärimisel",
|
||||
"error_loading_image": "Viga pildi laadimisel",
|
||||
"error_loading_partners": "Viga partnerite laadimisel: {error}",
|
||||
"error_saving_image": "Viga: {error}",
|
||||
"error_tag_face_bounding_box": "Viga näo sildistamisel - ümbritseva kasti koordinaate ei õnnestunud leida",
|
||||
"error_title": "Viga - midagi läks valesti",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Lemmikuid üksuseid ei leitud",
|
||||
"feature_photo_updated": "Esiletõstetud foto muudetud",
|
||||
"features": "Funktsioonid",
|
||||
"features_in_development": "Arendusjärgus olevad funktsioonid",
|
||||
"features_setting_description": "Halda rakenduse funktsioone",
|
||||
"file_name": "Failinimi",
|
||||
"file_name_or_extension": "Failinimi või -laiend",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokaalsed",
|
||||
"local_asset_cast_failed": "Ei saa edastada üksust, mis pole serverisse üles laaditud",
|
||||
"local_assets": "Lokaalsed üksused",
|
||||
"local_media_summary": "Lokaalsete üksuste kokkuvõte",
|
||||
"local_network": "Kohalik võrk",
|
||||
"local_network_sheet_info": "Rakendus ühendub valitud Wi-Fi võrgus olles serveriga selle URL-i kaudu",
|
||||
"location_permission": "Asukoha luba",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Sisesta pikkuskraad siia",
|
||||
"lock": "Lukusta",
|
||||
"locked_folder": "Lukustatud kaust",
|
||||
"log_detail_title": "Logi detailid",
|
||||
"log_out": "Logi välja",
|
||||
"log_out_all_devices": "Logi kõigist seadmetest välja",
|
||||
"logged_in_as": "Logitud sisse kasutajana {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Parool edukalt uuendatud",
|
||||
"logout_all_device_confirmation": "Kas oled kindel, et soovid kõigist seadmetest välja logida?",
|
||||
"logout_this_device_confirmation": "Kas oled kindel, et soovid sellest seadmest välja logida?",
|
||||
"logs": "Logid",
|
||||
"longitude": "Pikkuskraad",
|
||||
"look": "Välimus",
|
||||
"loop_videos": "Taasesita videod",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Märgi loetuks",
|
||||
"marked_all_as_read": "Kõik märgiti loetuks",
|
||||
"matches": "Ühtivad failid",
|
||||
"matching_assets": "Ühtivad üksused",
|
||||
"media_type": "Meediumi tüüp",
|
||||
"memories": "Mälestused",
|
||||
"memories_all_caught_up": "Ongi kõik",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nimi või hüüdnimi",
|
||||
"network_requirement_photos_upload": "Kasuta fotode varundamiseks mobiilset andmesidet",
|
||||
"network_requirement_videos_upload": "Kasuta videote varundamiseks mobiilset andmesidet",
|
||||
"network_requirements": "Võrgu nõuded",
|
||||
"network_requirements_updated": "Võrgu nõuded muutusid, varundamise järjekord lähtestatakse",
|
||||
"networking_settings": "Võrguühendus",
|
||||
"networking_subtitle": "Halda serveri lõpp-punkti seadeid",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Uus isik",
|
||||
"new_pin_code": "Uus PIN-kood",
|
||||
"new_pin_code_subtitle": "See on sul esimene kord lukustatud kausta kasutada. Turvaliseks ligipääsuks loo PIN-kood",
|
||||
"new_timeline": "Uus ajajoon",
|
||||
"new_user_created": "Uus kasutaja lisatud",
|
||||
"new_version_available": "UUS VERSIOON SAADAVAL",
|
||||
"newest_first": "Uuemad eespool",
|
||||
|
|
@ -1364,16 +1387,20 @@
|
|||
"no_assets_message": "KLIKI ESIMESE FOTO ÜLESLAADIMISEKS",
|
||||
"no_assets_to_show": "Pole üksuseid, mida kuvada",
|
||||
"no_cast_devices_found": "Edastamise seadmeid ei leitud",
|
||||
"no_checksum_local": "Kontrollsumma pole saadaval - lokaalse üksuse pärimine ebaõnnestus",
|
||||
"no_checksum_remote": "Kontrollsumma pole saadaval - kaugüksuse pärimine ebaõnnestus",
|
||||
"no_duplicates_found": "Ühtegi duplikaati ei leitud.",
|
||||
"no_exif_info_available": "Exif info pole saadaval",
|
||||
"no_explore_results_message": "Oma kogu avastamiseks laadi üles rohkem fotosid.",
|
||||
"no_favorites_message": "Lisa lemmikud, et oma parimaid fotosid ja videosid kiiresti leida",
|
||||
"no_libraries_message": "Lisa väline kogu oma fotode ja videote vaatamiseks",
|
||||
"no_local_assets_found": "Selle kontrollsummaga lokaalseid üksuseid ei leitud",
|
||||
"no_locked_photos_message": "Lukustatud kaustas olevad fotod ja videod on peidetud ning need pole kogu sirvimisel ja otsimisel nähtavad.",
|
||||
"no_name": "Nimetu",
|
||||
"no_notifications": "Teavitusi pole",
|
||||
"no_people_found": "Kattuvaid isikuid ei leitud",
|
||||
"no_places": "Kohti ei ole",
|
||||
"no_remote_assets_found": "Selle kontrollsummaga kaugüksuseid ei leitud",
|
||||
"no_results": "Vasteid pole",
|
||||
"no_results_description": "Proovi sünonüümi või üldisemat märksõna",
|
||||
"no_shared_albums_message": "Lisa album, et fotosid ja videosid teistega jagada",
|
||||
|
|
@ -1499,6 +1526,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Halda rakenduse eelistusi",
|
||||
"preferences_settings_title": "Eelistused",
|
||||
"preparing": "Ettevalmistamine",
|
||||
"preset": "Eelseadistus",
|
||||
"preview": "Eelvaade",
|
||||
"previous": "Eelmine",
|
||||
|
|
@ -1563,6 +1591,7 @@
|
|||
"read_changelog": "Vaata muudatuste ülevaadet",
|
||||
"readonly_mode_disabled": "Kirjutuskaitserežiim välja lülitatud",
|
||||
"readonly_mode_enabled": "Kirjutuskaitserežiim sisse lülitatud",
|
||||
"ready_for_upload": "Valmis üleslaadimiseks",
|
||||
"reassign": "Määra uuesti",
|
||||
"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",
|
||||
|
|
@ -1587,6 +1616,7 @@
|
|||
"regenerating_thumbnails": "Pisipiltide uuesti genereerimine",
|
||||
"remote": "Serveris",
|
||||
"remote_assets": "Kaugüksused",
|
||||
"remote_media_summary": "Kaugüksuste kokkuvõte",
|
||||
"remove": "Eemalda",
|
||||
"remove_assets_album_confirmation": "Kas oled kindel, et soovid {count, plural, one {# üksuse} other {# üksust}} albumist eemaldada?",
|
||||
"remove_assets_shared_link_confirmation": "Kas oled kindel, et soovid eemaldada {count, plural, one {# üksuse} other {# üksust}} sellelt jagatud lingilt?",
|
||||
|
|
@ -1862,6 +1892,7 @@
|
|||
"show_slideshow_transition": "Kuva slaidiesitluse üleminekud",
|
||||
"show_supporter_badge": "Toetaja märk",
|
||||
"show_supporter_badge_description": "Kuva toetaja märki",
|
||||
"show_text_search_menu": "Kuva tekstiotsingu menüüd",
|
||||
"shuffle": "Juhuslik",
|
||||
"sidebar": "Külgmenüü",
|
||||
"sidebar_display_description": "Kuva külgmenüüs linki vaatele",
|
||||
|
|
@ -1892,6 +1923,7 @@
|
|||
"stacktrace": "Pinujälg",
|
||||
"start": "Alusta",
|
||||
"start_date": "Alguskuupäev",
|
||||
"start_date_before_end_date": "Alguskuupäev peab olema varasem kui lõppkuupäev",
|
||||
"state": "Osariik",
|
||||
"status": "Staatus",
|
||||
"stop_casting": "Lõpeta edastamine",
|
||||
|
|
@ -2027,7 +2059,7 @@
|
|||
"upload_success": "Üleslaadimine õnnestus, uute üksuste nägemiseks värskenda lehte.",
|
||||
"upload_to_immich": "Laadi Immich'isse ({count})",
|
||||
"uploading": "Üleslaadimine",
|
||||
"uploading_media": "Meediumi üleslaadimine",
|
||||
"uploading_media": "Üksuste üleslaadimine",
|
||||
"url": "URL",
|
||||
"usage": "Kasutus",
|
||||
"use_biometric": "Kasuta biomeetriat",
|
||||
|
|
@ -2094,5 +2126,6 @@
|
|||
"yes": "Jah",
|
||||
"you_dont_have_any_shared_links": "Sul pole ühtegi jagatud linki",
|
||||
"your_wifi_name": "Sinu WiFi-võrgu nimi",
|
||||
"zoom_image": "Suumi pilti"
|
||||
"zoom_image": "Suumi pilti",
|
||||
"zoom_to_bounds": "Suumi piiridesse"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@
|
|||
"logging_enable_description": "Ota lokikirjaus käyttöön",
|
||||
"logging_level_description": "Kun käytössä, mitä lokituksen tasoa käytetään.",
|
||||
"logging_settings": "Lokit",
|
||||
"machine_learning_availability_checks": "Saatavyystarkastukset",
|
||||
"machine_learning_clip_model": "CLIP-malli",
|
||||
"machine_learning_clip_model_description": "Käytettävän CLIP-mallin nimi <link>toimivien mallien listasta</link>. Huomaa että sinun täytyy suorittaa \"Älykäs etsintä\"-työ uudelleen vaihdettuasi käytettävää mallia.",
|
||||
"machine_learning_duplicate_detection": "Kaksoiskappaleiden tunnistus",
|
||||
|
|
@ -387,8 +388,6 @@
|
|||
"admin_password": "Ylläpitäjän salasana",
|
||||
"administration": "Ylläpito",
|
||||
"advanced": "Edistyneet",
|
||||
"advanced_settings_beta_timeline_subtitle": "Kokeile uutta sovelluskokemusta",
|
||||
"advanced_settings_beta_timeline_title": "Beta-aikajana",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Käytä tätä vaihtoehtoa suodattaaksesi mediaa synkronoinnin aikana vaihtoehtoisten kriteerien perusteella. Kokeile tätä vain, jos sovelluksessa on ongelmia kaikkien albumien tunnistamisessa.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[KOKEELLINEN] Käytä vaihtoehtoisen laitteen albumin synkronointisuodatinta",
|
||||
"advanced_settings_log_level_title": "Kirjaustaso: {level}",
|
||||
|
|
|
|||
40
i18n/fr.json
40
i18n/fr.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Activer la journalisation",
|
||||
"logging_level_description": "Niveau de journalisation lorsque cette option est activée.",
|
||||
"logging_settings": "Journalisation",
|
||||
"machine_learning_availability_checks": "Vérifications de disponibilité",
|
||||
"machine_learning_availability_checks_description": "Détecte automatiquement et choisit les serveurs d'apprentissage machine disponibles",
|
||||
"machine_learning_availability_checks_enabled": "Activer les vérifications de disponibilité",
|
||||
"machine_learning_availability_checks_interval": "Intervalle de vérification",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalle en millisecondes entre les vérifications de disponibilité",
|
||||
"machine_learning_availability_checks_timeout": "Délai d'expiration de la requête",
|
||||
"machine_learning_availability_checks_timeout_description": "Délai d'expiration en millisecondes pour les vérifications de disponibilité",
|
||||
"machine_learning_clip_model": "Modèle de langage CLIP",
|
||||
"machine_learning_clip_model_description": "Le nom d'un modèle CLIP listé <link>ici</link>. Notez que vous devez réexécuter la tâche 'Recherche intelligente' pour toutes les images après avoir changé de modèle.",
|
||||
"machine_learning_duplicate_detection": "Détection des doublons",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Mot de passe Admin",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avancé",
|
||||
"advanced_settings_beta_timeline_subtitle": "Essayer la nouvelle application",
|
||||
"advanced_settings_beta_timeline_title": "Timeline de la béta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilisez cette option pour filtrer les média durant la synchronisation avec des critères alternatifs. N'utilisez cela que lorsque l'application n'arrive pas à détecter tous les albums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPÉRIMENTAL] Utiliser le filtre de synchronisation d'album alternatif",
|
||||
"advanced_settings_log_level_title": "Niveau de journalisation : {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Êtes-vous sûr de vouloir supprimer {user} ?",
|
||||
"album_search_not_found": "Aucun album trouvé ne correspond à votre recherche",
|
||||
"album_share_no_users": "Il semble que vous ayez partagé cet album avec tous les utilisateurs ou que vous n'ayez aucun utilisateur avec lequel le partager.",
|
||||
"album_summary": "Résumé de l'album",
|
||||
"album_updated": "Album mis à jour",
|
||||
"album_updated_setting_description": "Recevoir une notification par courriel lorsqu'un album partagé a de nouveaux médias",
|
||||
"album_user_left": "{album} quitté",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Élément restauré avec succès",
|
||||
"asset_skipped": "Sauté",
|
||||
"asset_skipped_in_trash": "À la corbeille",
|
||||
"asset_trashed": "Média mis à la corbeille",
|
||||
"asset_troubleshoot": "Dépannage de média",
|
||||
"asset_uploaded": "Envoyé",
|
||||
"asset_uploading": "Envoi…",
|
||||
"asset_viewer_settings_subtitle": "Modifier les paramètres du visualiseur photos",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Lecture automatique d'un diaporama",
|
||||
"back": "Retour",
|
||||
"back_close_deselect": "Retournez en arrière, fermez ou désélectionnez",
|
||||
"background_backup_running_error": "La sauvegarde en tâche de fond est actuellement en cours, impossible de démarrer une sauvegarde manuelle",
|
||||
"background_location_permission": "Permission de localisation en arrière plan",
|
||||
"background_location_permission_content": "Afin de pouvoir changer d'adresse en arrière plan, Immich doit avoir *en permanence* accès à la localisation précise, afin d'accéder au le nom du réseau Wi-Fi utilisé",
|
||||
"background_options": "Options d'arrière-plan",
|
||||
"backup": "Sauvegarde",
|
||||
"backup_album_selection_page_albums_device": "Albums sur l'appareil ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Sélectionner les albums",
|
||||
"backup_album_selection_page_selection_info": "Informations sur la sélection",
|
||||
"backup_album_selection_page_total_assets": "Total des éléments uniques",
|
||||
"backup_albums_sync": "Sauvegarde de la synchronisation des albums",
|
||||
"backup_all": "Tout",
|
||||
"backup_background_service_backup_failed_message": "Échec de la sauvegarde des médias. Nouvelle tentative…",
|
||||
"backup_background_service_connection_failed_message": "Impossible de se connecter au serveur. Nouvelle tentative…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Changer le code PIN",
|
||||
"change_your_password": "Changer votre mot de passe",
|
||||
"changed_visibility_successfully": "Visibilité modifiée avec succès",
|
||||
"charging": "En charge",
|
||||
"charging_requirement_mobile_backup": "La sauvegarde en tâche de fond nécessite que l'appareil soit en charge",
|
||||
"check_corrupt_asset_backup": "Vérifier la corruption des éléments enregistrés",
|
||||
"check_corrupt_asset_backup_button": "Vérifier",
|
||||
"check_corrupt_asset_backup_description": "Lancer cette vérification uniquement lorsque connecté à un réseau Wi-Fi et que tout le contenu a été enregistré. Cette procédure peut durer plusieurs minutes.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Créer un utilisateur",
|
||||
"created": "Créé",
|
||||
"created_at": "Créé à",
|
||||
"creating_linked_albums": "Création des albums liés...",
|
||||
"crop": "Recadrer",
|
||||
"curated_object_page_title": "Objets",
|
||||
"current_device": "Appareil actuel",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Erreur",
|
||||
"error_change_sort_album": "Impossible de modifier l'ordre de tri des albums",
|
||||
"error_delete_face": "Erreur lors de la suppression du visage pour le média",
|
||||
"error_getting_places": "Erreur à la récupération des lieux",
|
||||
"error_loading_image": "Erreur de chargement de l'image",
|
||||
"error_loading_partners": "Erreur de récupération des partenaires : {error}",
|
||||
"error_saving_image": "Erreur : {error}",
|
||||
"error_tag_face_bounding_box": "Erreur lors de l'identification de visage - impossible de récupérer les coordonnées du cadre entourant le visage",
|
||||
"error_title": "Erreur - Quelque chose s'est mal passé",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Aucun élément favori n'a été trouvé",
|
||||
"feature_photo_updated": "Photo de la personne mise à jour",
|
||||
"features": "Fonctionnalités",
|
||||
"features_in_development": "Fonctionnalités en développement",
|
||||
"features_setting_description": "Gérer les fonctionnalités de l'application",
|
||||
"file_name": "Nom du fichier",
|
||||
"file_name_or_extension": "Nom du fichier ou extension",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Local",
|
||||
"local_asset_cast_failed": "Impossible de caster un média qui n'a pas envoyé vers le serveur",
|
||||
"local_assets": "Média locaux",
|
||||
"local_media_summary": "Résumé du média local",
|
||||
"local_network": "Réseau local",
|
||||
"local_network_sheet_info": "L'application va se connecter au serveur via cette URL quand l'appareil est connecté à ce réseau Wi-Fi",
|
||||
"location_permission": "Autorisation de localisation",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Saisir la longitude ici",
|
||||
"lock": "Verrouiller",
|
||||
"locked_folder": "Dossier verrouillé",
|
||||
"log_detail_title": "Niveau de journalisation",
|
||||
"log_out": "Se déconnecter",
|
||||
"log_out_all_devices": "Déconnecter tous les appareils",
|
||||
"logged_in_as": "Connecté en tant que {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Mot de passe mis à jour avec succès",
|
||||
"logout_all_device_confirmation": "Êtes-vous sûr de vouloir déconnecter tous les appareils ?",
|
||||
"logout_this_device_confirmation": "Êtes-vous sûr de vouloir déconnecter cet appareil ?",
|
||||
"logs": "Journaux",
|
||||
"longitude": "Longitude",
|
||||
"look": "Regarder",
|
||||
"loop_videos": "Vidéos en boucle",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Marquer comme lu",
|
||||
"marked_all_as_read": "Tout a été marqué comme lu",
|
||||
"matches": "Correspondances",
|
||||
"matching_assets": "Médias correspondants",
|
||||
"media_type": "Type de média",
|
||||
"memories": "Souvenirs",
|
||||
"memories_all_caught_up": "Vous avez tout vu",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nom ou surnom",
|
||||
"network_requirement_photos_upload": "Utiliser les données mobile pour sauvegarder les photos",
|
||||
"network_requirement_videos_upload": "Utiliser les données mobile pour sauvegarder les vidéos",
|
||||
"network_requirements": "Prérequis réseau",
|
||||
"network_requirements_updated": "Contraintes réseau modifiées, file d'attente de sauvegarde réinitialisée",
|
||||
"networking_settings": "Réseau",
|
||||
"networking_subtitle": "Gérer les adresses du serveur",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nouvelle personne",
|
||||
"new_pin_code": "Nouveau code PIN",
|
||||
"new_pin_code_subtitle": "C'est votre premier accès au dossier verrouillé. Créez un code PIN pour sécuriser l'accès à cette page",
|
||||
"new_timeline": "Nouvelle vue chronologique",
|
||||
"new_user_created": "Nouvel utilisateur créé",
|
||||
"new_version_available": "NOUVELLE VERSION DISPONIBLE",
|
||||
"newest_first": "Récents en premier",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "CLIQUEZ POUR ENVOYER VOTRE PREMIÈRE PHOTO",
|
||||
"no_assets_to_show": "Aucun élément à afficher",
|
||||
"no_cast_devices_found": "Aucun appareil de diffusion trouvé",
|
||||
"no_checksum_local": "Aucune empreinte numerique disponible - impossible de récupérer les médias locaux",
|
||||
"no_checksum_remote": "Aucune empreinte numérique disponible - impossible de récupérer les médias distants",
|
||||
"no_duplicates_found": "Aucun doublon n'a été trouvé.",
|
||||
"no_exif_info_available": "Aucune information exif disponible",
|
||||
"no_explore_results_message": "Envoyez plus de photos pour explorer votre bibliothèque.",
|
||||
"no_favorites_message": "Ajouter des photos et vidéos à vos favoris pour les retrouver plus rapidement",
|
||||
"no_libraries_message": "Créer une bibliothèque externe pour voir vos photos et vidéos dans un autre espace de stockage",
|
||||
"no_local_assets_found": "Aucun média local trouvé avec cette empreinte numerique",
|
||||
"no_locked_photos_message": "Les photos et vidéos du dossier verrouillé sont masqués et ne s'afficheront pas dans votre galerie ou la recherche.",
|
||||
"no_name": "Pas de nom",
|
||||
"no_notifications": "Pas de notification",
|
||||
"no_people_found": "Aucune personne correspondante trouvée",
|
||||
"no_places": "Pas de lieu",
|
||||
"no_remote_assets_found": "Aucun média distant trouvé avec cette empreinte numerique",
|
||||
"no_results": "Aucun résultat",
|
||||
"no_results_description": "Essayez un synonyme ou un mot-clé plus général",
|
||||
"no_shared_albums_message": "Créer un album pour partager vos photos et vidéos avec les personnes de votre réseau",
|
||||
"no_uploads_in_progress": "Pas d'envoi en cours",
|
||||
"not_available": "N/A",
|
||||
"not_in_any_album": "Dans aucun album",
|
||||
"not_selected": "Non sélectionné",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Note : Pour appliquer l'étiquette de stockage aux médias précédemment envoyés, exécutez",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Gérer les préférences de l'application",
|
||||
"preferences_settings_title": "Préférences",
|
||||
"preparing": "Préparation",
|
||||
"preset": "Préréglage",
|
||||
"preview": "Aperçu",
|
||||
"previous": "Précédent",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Lire les changements",
|
||||
"readonly_mode_disabled": "Mode lecture seule désactivé",
|
||||
"readonly_mode_enabled": "Mode lecture seule activé",
|
||||
"ready_for_upload": "Téléchargement prêt",
|
||||
"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",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regénération des miniatures",
|
||||
"remote": "À distance",
|
||||
"remote_assets": "Média à distance",
|
||||
"remote_media_summary": "Résumé du média distant",
|
||||
"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é ?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Afficher la transition du diaporama",
|
||||
"show_supporter_badge": "Badge de contributeur",
|
||||
"show_supporter_badge_description": "Afficher le badge de contributeur",
|
||||
"show_text_search_menu": "Afficher le menu de recherche de texte",
|
||||
"shuffle": "Mélanger",
|
||||
"sidebar": "Barre latérale",
|
||||
"sidebar_display_description": "Afficher un lien vers la vue dans la barre latérale",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Trace de la pile",
|
||||
"start": "Commencer",
|
||||
"start_date": "Date de début",
|
||||
"start_date_before_end_date": "La date de début doit être avant la date de fin",
|
||||
"state": "Région",
|
||||
"status": "Statut",
|
||||
"stop_casting": "Arrêter la diffusion",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Oui",
|
||||
"you_dont_have_any_shared_links": "Vous n'avez aucun lien partagé",
|
||||
"your_wifi_name": "Nom du réseau wifi",
|
||||
"zoom_image": "Zoomer"
|
||||
"zoom_image": "Zoomer",
|
||||
"zoom_to_bounds": "Zoom sur la zone"
|
||||
}
|
||||
|
|
|
|||
33
i18n/gl.json
33
i18n/gl.json
|
|
@ -45,11 +45,18 @@
|
|||
"authentication_settings_disable_all": "Estás seguro de que queres desactivar todos os métodos de inicio de sesión? O inicio de sesión desactivarase completamente.",
|
||||
"authentication_settings_reenable": "Para reactivalo, use un <link>Comando de servidor</link>.",
|
||||
"background_task_job": "Tarefas en segundo plano",
|
||||
"backup_database": "Copia de seguridade da base de datos",
|
||||
"backup_database_enable_description": "Activar copias de seguridade da base de datos",
|
||||
"backup_database": "Crear un vertedoiro de base de datos",
|
||||
"backup_database_enable_description": "Activar o vertedoiro de copias de seguridade da base de datos",
|
||||
"backup_keep_last_amount": "Cantidade de copias de seguridade anteriores a conservar",
|
||||
"backup_onboarding_1_description": "Copia no exterior na nube ou noutra localización física.",
|
||||
"backup_onboarding_2_description": "Copias locais en diferentes dispositivos. Isto inclue os arquivos principais e as copias de esos arquivos localmente.",
|
||||
"backup_onboarding_3_description": "copias totais da tua información, incluindo os arquivos orixinais. Isto inclue 1 copia externa e 2 copias locais.",
|
||||
"backup_onboarding_description": "Unha <backblaze-link>estratexia de copia 3-2-1</backblaze-link> é recomendada para protexer os teus datos. Deberías gardar copias das túas fotos/videos subidas así como da base de datos de Immich como unha solución de seguridade.",
|
||||
"backup_onboarding_footer": "Pra máis información sobre copias de seguridade de Immich, por favor use a seguinte ligazón <link> de documentación</link>.",
|
||||
"backup_onboarding_parts_title": "Unha copia de seguridade 3-2-1 inclue:",
|
||||
"backup_onboarding_title": "Copia de seguridade",
|
||||
"backup_settings": "Configuración da copia de seguridade",
|
||||
"backup_settings_description": "Xestionar a configuración da copia de seguridade da base de datos",
|
||||
"backup_settings_description": "Xestionar a configuración do volcado da base de datos",
|
||||
"cleared_jobs": "Traballos borrados para: {job}",
|
||||
"config_set_by_file": "A configuración establécese actualmente mediante un ficheiro de configuración",
|
||||
"confirm_delete_library": "Estás seguro de que queres eliminar a biblioteca {library}?",
|
||||
|
|
@ -116,6 +123,13 @@
|
|||
"logging_enable_description": "Activar rexistro",
|
||||
"logging_level_description": "Cando estea activado, que nivel de rexistro usar.",
|
||||
"logging_settings": "Rexistro",
|
||||
"machine_learning_availability_checks": "Comprobacións de dispoñibilidade",
|
||||
"machine_learning_availability_checks_description": "Detectar automáticamente e preferir servidores de aprendizaxe profunda dispoñibles",
|
||||
"machine_learning_availability_checks_enabled": "Activar comprobacións de dispoñibilidade",
|
||||
"machine_learning_availability_checks_interval": "Intervalo de comprobación",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalo en milisegundos entre comprobacións de dispoñibilidade",
|
||||
"machine_learning_availability_checks_timeout": "Tempo de espera da solicitude",
|
||||
"machine_learning_availability_checks_timeout_description": "Tempo de espera en milisegundos para as comprobación de dispoñibilidade",
|
||||
"machine_learning_clip_model": "Modelo CLIP",
|
||||
"machine_learning_clip_model_description": "O nome dun modelo CLIP listado <link>aquí</link>. Ten en conta que debe volver executar o traballo 'Busca Intelixente' para todas as imaxes ao cambiar un modelo.",
|
||||
"machine_learning_duplicate_detection": "Detección de duplicados",
|
||||
|
|
@ -170,6 +184,19 @@
|
|||
"metadata_settings_description": "Xestionar a configuración de metadatos",
|
||||
"migration_job": "Migración",
|
||||
"migration_job_description": "Migrar miniaturas de activos e caras á última estrutura de cartafoles",
|
||||
"nightly_tasks_cluster_faces_setting_description": "Executar recoñecemento facial nas novas caras detectadas",
|
||||
"nightly_tasks_cluster_new_faces_setting": "Agrupar novas caras",
|
||||
"nightly_tasks_database_cleanup_setting": "Tarefas de limpeza da base de datos",
|
||||
"nightly_tasks_database_cleanup_setting_description": "Limpar información vella e obsoleta da base de datos",
|
||||
"nightly_tasks_generate_memories_setting": "Xerar memorias",
|
||||
"nightly_tasks_generate_memories_setting_description": "Crear novas memorias dende os recursos",
|
||||
"nightly_tasks_missing_thumbnails_setting": "Xerar as miniaturas que faltan",
|
||||
"nightly_tasks_missing_thumbnails_setting_description": "Encolar arquivos sin miniaturas para a xeración das miniaturas",
|
||||
"nightly_tasks_settings": "Configuración das tarefas nocturnas",
|
||||
"nightly_tasks_settings_description": "Administrar as tarefas nocturnas",
|
||||
"nightly_tasks_start_time_setting": "Tempo de inicio",
|
||||
"nightly_tasks_start_time_setting_description": "O tempo no que o servidor comeza a executar as tarefas nocturnas",
|
||||
"nightly_tasks_sync_quota_usage_setting": "Sincronizar uso de cuota",
|
||||
"no_paths_added": "Non se engadiron rutas",
|
||||
"no_pattern_added": "Non se engadiu ningún padrón",
|
||||
"note_apply_storage_label_previous_assets": "Nota: Para aplicar a Etiqueta de Almacenamento a activos cargados previamente, execute o",
|
||||
|
|
|
|||
34
i18n/he.json
34
i18n/he.json
|
|
@ -123,6 +123,9 @@
|
|||
"logging_enable_description": "אפשר רישום ביומן",
|
||||
"logging_level_description": "כאשר פועל, באיזה רמת יומן לתעד.",
|
||||
"logging_settings": "רישום ביומן",
|
||||
"machine_learning_availability_checks": "בדיקת זמינות",
|
||||
"machine_learning_availability_checks_enabled": "הפעלת בדיקות זמינות",
|
||||
"machine_learning_availability_checks_interval": "תזמון בדיקה",
|
||||
"machine_learning_clip_model": "מודל CLIP",
|
||||
"machine_learning_clip_model_description": "שמו של מודל CLIP רשום <link>כאן</link>. שים לב שעליך להפעיל מחדש את המשימה 'חיפוש חכם' עבור כל התמונות בעת שינוי מודל.",
|
||||
"machine_learning_duplicate_detection": "איתור כפילויות",
|
||||
|
|
@ -387,8 +390,6 @@
|
|||
"admin_password": "סיסמת מנהל",
|
||||
"administration": "ניהול",
|
||||
"advanced": "מתקדם",
|
||||
"advanced_settings_beta_timeline_subtitle": "נסה את חווית האפליקציה החדשה",
|
||||
"advanced_settings_beta_timeline_title": "ציר זמן (בטא)",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "השתמש באפשרות זו כדי לסנן מדיה במהלך הסנכרון לפי קריטריונים חלופיים. מומלץ להשתמש בזה רק אם יש בעיה בזיהוי כל האלבומים באפליקציה.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[ניסיוני] השתמש במסנן סנכרון אלבום חלופי שמבכשיר",
|
||||
"advanced_settings_log_level_title": "רמת רישום ביומן: {level}",
|
||||
|
|
@ -425,6 +426,7 @@
|
|||
"album_remove_user_confirmation": "האם באמת ברצונך להסיר את {user}?",
|
||||
"album_search_not_found": "לא נמצאו אלבומים התואמים לחיפוש שלך",
|
||||
"album_share_no_users": "נראה ששיתפת את האלבום הזה עם כל המשתמשים או שאין לך אף משתמש לשתף איתו.",
|
||||
"album_summary": "תקציר אלבום",
|
||||
"album_updated": "אלבום עודכן",
|
||||
"album_updated_setting_description": "קבל הודעת דוא\"ל כאשר לאלבום משותף יש תמונות חדשות",
|
||||
"album_user_left": "עזב את {album}",
|
||||
|
|
@ -1564,10 +1566,11 @@
|
|||
"read_changelog": "קרא את יומן השינויים",
|
||||
"readonly_mode_disabled": "מצב לקריאה בלבד מושבת",
|
||||
"readonly_mode_enabled": "מצב לקריאה בלבד מופעל",
|
||||
"reassign": "הקצה מחדש",
|
||||
"ready_for_upload": "מוכן להעלאה",
|
||||
"reassign": "הקצאה מחדש",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {תמונה # הוקצתה} other {# תמונות הוקצו}} מחדש אל {name, select, null {אדם קיים} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {תמונה # הוקצתה} other {# תמונות הוקצו}} מחדש לאדם חדש",
|
||||
"reassing_hint": "הקצה תמונות שנבחרו לאדם קיים",
|
||||
"reassing_hint": "הקצאת תמונות שנבחרו לאדם קיים",
|
||||
"recent": "חדש",
|
||||
"recent-albums": "אלבומים אחרונים",
|
||||
"recent_searches": "חיפושים אחרונים",
|
||||
|
|
@ -1575,11 +1578,11 @@
|
|||
"recently_added_page_title": "נוסף לאחרונה",
|
||||
"recently_taken": "צולם לאחרונה",
|
||||
"recently_taken_page_title": "צולם לאחרונה",
|
||||
"refresh": "רענן",
|
||||
"refresh_encoded_videos": "רענן סרטונים מקודדים",
|
||||
"refresh_faces": "רענן פנים",
|
||||
"refresh_metadata": "רענן מטא-נתונים",
|
||||
"refresh_thumbnails": "רענן תמונות ממוזערות",
|
||||
"refresh": "רענון",
|
||||
"refresh_encoded_videos": "רענון סרטונים מקודדים",
|
||||
"refresh_faces": "רענון פנים",
|
||||
"refresh_metadata": "רענון מטא-נתונים",
|
||||
"refresh_thumbnails": "רענון תמונות ממוזערות",
|
||||
"refreshed": "רוענן",
|
||||
"refreshes_every_file": "קורא מחדש את כל הקבצים הקיימים והחדשים",
|
||||
"refreshing_encoded_video": "מרענן סרטון מקודד",
|
||||
|
|
@ -1588,15 +1591,16 @@
|
|||
"regenerating_thumbnails": "מחדש תמונות ממוזערות",
|
||||
"remote": "מרוחק",
|
||||
"remote_assets": "תמונות מרוחקות",
|
||||
"remove": "הסר",
|
||||
"remote_media_summary": "תקציר תמונות מרוחקות",
|
||||
"remove": "הסרה",
|
||||
"remove_assets_album_confirmation": "האם באמת ברצונך להסיר {count, plural, one {תמונה #} other {# תמונות}} מהאלבום?",
|
||||
"remove_assets_shared_link_confirmation": "האם אתה בטוח שברצונך להסיר {count, plural, one {תמונה #} other {# תמונות}} מהקישור המשותף הזה?",
|
||||
"remove_assets_shared_link_confirmation": "האם ברצונך להסיר {count, plural, one {תמונה #} other {# תמונות}} מהקישור המשותף הזה?",
|
||||
"remove_assets_title": "להסיר תמונות?",
|
||||
"remove_custom_date_range": "הסר טווח תאריכים מותאם",
|
||||
"remove_deleted_assets": "הסר קבצים לא מקוונים",
|
||||
"remove_from_album": "הסר מאלבום",
|
||||
"remove_custom_date_range": "הסרת טווח תאריכים מותאם",
|
||||
"remove_deleted_assets": "הסרת קבצים לא מקוונים",
|
||||
"remove_from_album": "הסרה מאלבום",
|
||||
"remove_from_album_action_prompt": "{count} הוסרו מהאלבום",
|
||||
"remove_from_favorites": "הסר מהמועדפים",
|
||||
"remove_from_favorites": "הסרה מהמועדפים",
|
||||
"remove_from_lock_folder_action_prompt": "{count} הוסרו מהתיקייה הנעולה",
|
||||
"remove_from_locked_folder": "הסר מהתיקייה הנעולה",
|
||||
"remove_from_locked_folder_confirmation": "האם אתה בטוח שברצונך להעביר את התמונות והסרטונים האלה מחוץ לתיקייה הנעולה? הם יהיו מוצגים בספרייה שלך.",
|
||||
|
|
|
|||
|
|
@ -381,8 +381,6 @@
|
|||
"admin_password": "व्यवस्थापक पासवर्ड",
|
||||
"administration": "प्रशासन",
|
||||
"advanced": "विकसित",
|
||||
"advanced_settings_beta_timeline_subtitle": "नए ऐप अनुभव को आज़माएँ",
|
||||
"advanced_settings_beta_timeline_title": "बीटा टाइमलाइन",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "सिंक के दौरान वैकल्पिक मानदंडों के आधार पर मीडिया को फ़िल्टर करने के लिए इस विकल्प का उपयोग करें। इसे केवल तभी आज़माएँ जब आपको ऐप द्वारा सभी एल्बमों का पता लगाने में समस्या हो।",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[प्रयोगात्मक] वैकल्पिक डिवाइस एल्बम सिंक फ़िल्टर का उपयोग करें",
|
||||
"advanced_settings_log_level_title": "लॉग स्तर:{level}",
|
||||
|
|
@ -1548,6 +1546,7 @@
|
|||
"year": "वर्ष",
|
||||
"yes": "हाँ",
|
||||
"you_dont_have_any_shared_links": "आपके पास कोई साझा लिंक नहीं है",
|
||||
"your_wifi_name": "Your WiFi name",
|
||||
"zoom_image": "छवि ज़ूम करें"
|
||||
"your_wifi_name": "आपके वाईफाई का नाम",
|
||||
"zoom_image": "छवि ज़ूम करें",
|
||||
"zoom_to_bounds": "सीमा तक ज़ूम करें"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -387,8 +387,6 @@
|
|||
"admin_password": "Admin lozinka",
|
||||
"administration": "Administracija",
|
||||
"advanced": "Napredno",
|
||||
"advanced_settings_beta_timeline_subtitle": "Isprobaj novo iskustvo aplikacije",
|
||||
"advanced_settings_beta_timeline_title": "Beta vremenska crta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Koristite ovu opciju za filtriranje medija tijekom sinkronizacije na temelju alternativnih kriterija. Pokušajte ovo samo ako imate problema s aplikacijom koja ne prepoznaje sve albume.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTALNO] Koristite alternativni filter za sinkronizaciju albuma na uređaju",
|
||||
"advanced_settings_log_level_title": "Razina zapisivanja: {level}",
|
||||
|
|
|
|||
39
i18n/hu.json
39
i18n/hu.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Naplózás engedélyezése",
|
||||
"logging_level_description": "Ha be van kapcsolva, milyen részletességű legyen a naplózás.",
|
||||
"logging_settings": "Naplózás",
|
||||
"machine_learning_availability_checks": "Elérhetőség ellenőrzése",
|
||||
"machine_learning_availability_checks_description": "Automatikusan keressen és válasszon elérhető gépi tanulás szervereket",
|
||||
"machine_learning_availability_checks_enabled": "Elérhetőség ellenőrzésének bekapcsolása",
|
||||
"machine_learning_availability_checks_interval": "Ellenőrzési intervallum",
|
||||
"machine_learning_availability_checks_interval_description": "Elérhetőség-ellenőrzések közötti késleltetés milliszekundumban",
|
||||
"machine_learning_availability_checks_timeout": "Kérések időkorlátja",
|
||||
"machine_learning_availability_checks_timeout_description": "Elérhetőség-ellenőrzések időkorlátja milliszekundumban",
|
||||
"machine_learning_clip_model": "CLIP modell",
|
||||
"machine_learning_clip_model_description": "Egy CLIP modell neve az <link>itt</link> felsoroltak közül. A modell megváltoztatása után újra kell futtatni az 'Okos Keresés' feladatot minden képre.",
|
||||
"machine_learning_duplicate_detection": "Duplikációk Keresése",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Admin Jelszó",
|
||||
"administration": "Adminisztráció",
|
||||
"advanced": "Haladó",
|
||||
"advanced_settings_beta_timeline_subtitle": "Próbáld ki az új alkalmazást",
|
||||
"advanced_settings_beta_timeline_title": "Béta Idővonal",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Ezzel a beállítással a szinkronizálás során alternatív kritériumok alapján szűrheted a fájlokat. Csak akkor próbáld ki, ha problémáid vannak azzal, hogy az alkalmazás nem ismeri fel az összes albumot.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[KÍSÉRLETI] Alternatív eszköz album szinkronizálási szűrő használata",
|
||||
"advanced_settings_log_level_title": "Naplózás szintje: {level}",
|
||||
|
|
@ -396,6 +401,8 @@
|
|||
"advanced_settings_prefer_remote_title": "Távoli képek előnyben részesítése",
|
||||
"advanced_settings_proxy_headers_subtitle": "Add meg azokat a proxy fejléceket, amiket az app elküldjön minden hálózati kérésnél",
|
||||
"advanced_settings_proxy_headers_title": "Proxy Fejlécek",
|
||||
"advanced_settings_readonly_mode_subtitle": "Bekapcsol egy írásvédett módot ahol csak fotókat nézni lehetséges, egyebek, mint több kép kiválasztása, megosztás, kivetítés és törlés ki vannak kapcsolva. Ki/bekapcsolható a felhasználó ikonjáról a fő képernyőn",
|
||||
"advanced_settings_readonly_mode_title": "Írásvédett Mód",
|
||||
"advanced_settings_self_signed_ssl_subtitle": "Nem ellenőrzi a szerver SSL tanúsítványát. Önaláírt tanúsítvány esetén szükséges beállítás.",
|
||||
"advanced_settings_self_signed_ssl_title": "Önaláírt SSL tanúsítványok engedélyezése",
|
||||
"advanced_settings_sync_remote_deletions_subtitle": "Automatikusan törölni vagy visszaállítani egy elemet ezen az eszközön, ha az adott műveletet a weben hajtották végre",
|
||||
|
|
@ -423,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Biztos, hogy el szeretnéd távolítani {user} felhasználót?",
|
||||
"album_search_not_found": "Nem található a keresésnek megfelelő album",
|
||||
"album_share_no_users": "Úgy tűnik, hogy már minden felhasználóval megosztottad ezt az albumot, vagy nincs senki, akivel meg tudnád osztani.",
|
||||
"album_summary": "Album összefogalaló",
|
||||
"album_updated": "Album frissült",
|
||||
"album_updated_setting_description": "Küldjön email értesítőt, amikor egy megosztott albumhoz új elemeket adnak hozzá",
|
||||
"album_user_left": "Kiléptél a(z) {album} albumból",
|
||||
|
|
@ -461,6 +469,7 @@
|
|||
"app_bar_signout_dialog_title": "Kijelentkezés",
|
||||
"app_settings": "Alkalmazás Beállítások",
|
||||
"appears_in": "Itt szerepel",
|
||||
"apply_count": "Alkalmaz ({count, number})",
|
||||
"archive": "Archívum",
|
||||
"archive_action_prompt": "{count} elem hozzáadva az Archívumhoz",
|
||||
"archive_or_unarchive_photo": "Fotó archiválása vagy archiválásának visszavonása",
|
||||
|
|
@ -493,6 +502,8 @@
|
|||
"asset_restored_successfully": "Elem sikeresen helyreállítva",
|
||||
"asset_skipped": "Kihagyva",
|
||||
"asset_skipped_in_trash": "Lomtárban",
|
||||
"asset_trashed": "Elem lomtárba helyezve",
|
||||
"asset_troubleshoot": "Hibajavítás",
|
||||
"asset_uploaded": "Feltöltve",
|
||||
"asset_uploading": "Feltöltés…",
|
||||
"asset_viewer_settings_subtitle": "A képnézegető beállításainak kezelése",
|
||||
|
|
@ -500,7 +511,7 @@
|
|||
"assets": "Elemek",
|
||||
"assets_added_count": "{count, plural, other {# elem}} hozzáadva",
|
||||
"assets_added_to_album_count": "{count, plural, other {# elem}} hozzáadva az albumhoz",
|
||||
"assets_added_to_albums_count": "Az {assetTotal, plural, one {elem} other {elemek}} hozzáadva {albumTotal} albumhoz",
|
||||
"assets_added_to_albums_count": "{assetTotal, plural, one {# elem} other {# elemek}} hozzáadva {albumTotal, plural, one {# albumhoz} other {# albumokhoz}}",
|
||||
"assets_cannot_be_added_to_album_count": "{count, plural, one {Az elem} other {Az elemek}} nem adhatóak hozzá az albumhoz",
|
||||
"assets_cannot_be_added_to_albums": "Az {count, plural, one {elemet} other {elemeket}} nem lehet hozzáadni egy albumhoz sem",
|
||||
"assets_count": "{count, plural, other {# elem}}",
|
||||
|
|
@ -526,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatikus diavetítés",
|
||||
"back": "Vissza",
|
||||
"back_close_deselect": "Vissza, bezárás, vagy kijelölés törlése",
|
||||
"background_backup_running_error": "Háttérben futó mentés folyamatban, kézi mentés nem indítható",
|
||||
"background_location_permission": "Háttérben történő helymeghatározási engedély",
|
||||
"background_location_permission_content": "Hálózatok automatikus váltásához az Immich-nek *mindenképpen* hozzá kell férnie a pontos helyzethez, hogy az alkalmazás le tudja kérni a Wi-Fi hálózat nevét",
|
||||
"background_options": "Háttérbeli futás beállításai",
|
||||
"backup": "Mentés",
|
||||
"backup_album_selection_page_albums_device": "Ezen az eszközön lévő albumok ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Koppints a hozzáadáshoz, duplán koppints az eltávolításhoz",
|
||||
|
|
@ -651,6 +664,8 @@
|
|||
"change_pin_code": "PIN kód megváltoztatása",
|
||||
"change_your_password": "Jelszavad megváltoztatása",
|
||||
"changed_visibility_successfully": "Láthatóság sikeresen megváltoztatva",
|
||||
"charging": "Töltés",
|
||||
"charging_requirement_mobile_backup": "Háttérben mentéshez szükséges, hogy az eszköz töltőn legyen",
|
||||
"check_corrupt_asset_backup": "Sérült elemek keresése a mentésben",
|
||||
"check_corrupt_asset_backup_button": "Ellenőrzés",
|
||||
"check_corrupt_asset_backup_description": "Ezt az ellenőtzést csak Wi-Fi hálózaton futtasd és csak akkot, ha már az összes elem feltöltésre került. A folyamat néhány percig is eltarthat.",
|
||||
|
|
@ -737,6 +752,7 @@
|
|||
"create_user": "Felhasználó létrehozása",
|
||||
"created": "Készült",
|
||||
"created_at": "Létrehozva",
|
||||
"creating_linked_albums": "Kapcsolt albumok létrehozása...",
|
||||
"crop": "Kivágás",
|
||||
"curated_object_page_title": "Dolgok",
|
||||
"current_device": "Ez az eszköz",
|
||||
|
|
@ -886,7 +902,9 @@
|
|||
"error": "Hiba",
|
||||
"error_change_sort_album": "Album sorbarendezésének megváltoztatása sikertelen",
|
||||
"error_delete_face": "Hiba az arc törlése során",
|
||||
"error_getting_places": "Hiba a helyek betöltésekor",
|
||||
"error_loading_image": "Hiba a kép betöltése közben",
|
||||
"error_loading_partners": "Hiba a partnerek betöltésénél: {error}",
|
||||
"error_saving_image": "Hiba: {error}",
|
||||
"error_tag_face_bounding_box": "Hiba az arc megjelölése közben - nem elérhetőek a határoló koordináták",
|
||||
"error_title": "Hiba - valami félresikerült",
|
||||
|
|
@ -1051,6 +1069,7 @@
|
|||
"favorites_page_no_favorites": "Nem található kedvencnek jelölt elem",
|
||||
"feature_photo_updated": "Címlapkép frissítve",
|
||||
"features": "Jellemzők",
|
||||
"features_in_development": "Folyamatban lévő fejlesztések",
|
||||
"features_setting_description": "Az alkalmazás jellemzőinek kezelése",
|
||||
"file_name": "Fájlnév",
|
||||
"file_name_or_extension": "Fájlnév vagy kiterjesztés",
|
||||
|
|
@ -1071,12 +1090,15 @@
|
|||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled_description": "Ez a funkció a Google-től tölti be a működéséhez szükséges külső adatokat.",
|
||||
"general": "Általános",
|
||||
"geolocation_instruction_location": "Kattints egy elemre, amelynek ismert a helyszíne a pozíció kiválasztásához, vagy válassz a térképen",
|
||||
"get_help": "Segítségkérés",
|
||||
"get_wifiname_error": "Nem sikerült lekérni a Wi-Fi nevét. Győződj meg róla, hogy megadtad a szükséges engedélyeket és csatlakoztál egy Wi-Fi hálózathoz",
|
||||
"getting_started": "Kezdő Lépések",
|
||||
"go_back": "Visszalépés",
|
||||
"go_to_folder": "Ugrás a mappához",
|
||||
"go_to_search": "Ugrás a kereséshez",
|
||||
"gps": "GPS",
|
||||
"gps_missing": "Nincs GPS",
|
||||
"grant_permission": "Engedély megadása",
|
||||
"group_albums_by": "Albumok csoportosítása...",
|
||||
"group_country": "Csoportosítás ország szerint",
|
||||
|
|
@ -1212,6 +1234,7 @@
|
|||
"local": "Helyi",
|
||||
"local_asset_cast_failed": "Nem lehet olyan elemet vetíteni, ami nincs a szerverre feltöltve",
|
||||
"local_assets": "Helyi Elemek",
|
||||
"local_media_summary": "Helyi média összegzés",
|
||||
"local_network": "Helyi hálózat",
|
||||
"local_network_sheet_info": "Az alkalmazés ezen az URL címen fogja elérni a szervert, ha a megadott WiFi hálózathoz van csatlankozva",
|
||||
"location_permission": "Helymeghatározási engedély",
|
||||
|
|
@ -1223,6 +1246,7 @@
|
|||
"location_picker_longitude_hint": "Ide írd a hosszúsági kört",
|
||||
"lock": "Zárolás",
|
||||
"locked_folder": "Zárolt mappa",
|
||||
"log_detail_title": "Naplók részletei",
|
||||
"log_out": "Kijelentkezés",
|
||||
"log_out_all_devices": "Kijelentkezés Minden Eszközön",
|
||||
"logged_in_as": "Belépve: {user} néven",
|
||||
|
|
@ -1253,6 +1277,7 @@
|
|||
"login_password_changed_success": "Jelszó sikeresen módosítva",
|
||||
"logout_all_device_confirmation": "Biztos, hogy minden eszközön ki szeretnél jelentkezni?",
|
||||
"logout_this_device_confirmation": "Biztos, hogy ki szeretnél jelentkezni ezen az eszközön?",
|
||||
"logs": "Naplók",
|
||||
"longitude": "Hosszúság",
|
||||
"look": "Megjelenítés",
|
||||
"loop_videos": "Videók ismétlése",
|
||||
|
|
@ -1260,6 +1285,7 @@
|
|||
"main_branch_warning": "Fejlesztői verziót használsz. Javasoljuk a stabil verzió használatát!",
|
||||
"main_menu": "Főmenü",
|
||||
"make": "Gyártó",
|
||||
"manage_geolocation": "Helyadatok kezelése",
|
||||
"manage_shared_links": "Megosztási linkek kezelése",
|
||||
"manage_sharing_with_partners": "Partnerekkel való megosztás kezelése",
|
||||
"manage_the_app_settings": "Alkalmazás beállításainak kezelése",
|
||||
|
|
@ -1294,6 +1320,7 @@
|
|||
"mark_as_read": "Megjelölés olvasottként",
|
||||
"marked_all_as_read": "Összes megjelölve olvasottként",
|
||||
"matches": "Azonosak",
|
||||
"matching_assets": "Kapcsolódó elemek",
|
||||
"media_type": "Médiatípus",
|
||||
"memories": "Emlékek",
|
||||
"memories_all_caught_up": "Naprakész vagy",
|
||||
|
|
@ -1334,6 +1361,7 @@
|
|||
"name_or_nickname": "Név vagy becenév",
|
||||
"network_requirement_photos_upload": "Mobil adatforgalmat használjon a fényképek biztonsági mentéséhez",
|
||||
"network_requirement_videos_upload": "Mobil adatforgalmat használjon a videók biztonsági mentéséhez",
|
||||
"network_requirements": "Hálózati követelmények",
|
||||
"network_requirements_updated": "A hálózat megváltozott, a biztonsági mentési sor visszaállítása",
|
||||
"networking_settings": "Hálózat",
|
||||
"networking_subtitle": "Szerver végpont beállítások kezelése",
|
||||
|
|
@ -1344,6 +1372,7 @@
|
|||
"new_person": "Új személy",
|
||||
"new_pin_code": "Új PIN kód",
|
||||
"new_pin_code_subtitle": "Ez az első alkalom hogy megnyitod a zárolt mappát. Hozz létre egy jelszót a mappa biztonságos eléréséhez",
|
||||
"new_timeline": "Új idővonal",
|
||||
"new_user_created": "Új felhasználó létrehozva",
|
||||
"new_version_available": "ÚJ VERZIÓ ÉRHETŐ EL",
|
||||
"newest_first": "Legújabb először",
|
||||
|
|
@ -1902,6 +1931,8 @@
|
|||
"sync_albums_manual_subtitle": "Összes fotó és videó létrehozása és szinkronizálása a kiválasztott Immich albumokba",
|
||||
"sync_local": "Helyi Szinkronizálása",
|
||||
"sync_remote": "Távoli Szinkronizálása",
|
||||
"sync_status": "Szinkronizálás állapota",
|
||||
"sync_status_subtitle": "Szinkronizálás megtekintése és kezelése",
|
||||
"sync_upload_album_setting_subtitle": "Fotók és videók létrehozása és szinkronizálása a kiválasztott Immich albumba",
|
||||
"tag": "Címke",
|
||||
"tag_assets": "Elemek címkézése",
|
||||
|
|
@ -1989,6 +2020,7 @@
|
|||
"unstacked_assets_count": "{count, plural, other {# elemből}} álló csoport szétszedve",
|
||||
"untagged": "Címke eltávolítva",
|
||||
"up_next": "Következik",
|
||||
"update_location_action_prompt": "{count} elem pozíciójának frissítése a következővel:",
|
||||
"updated_at": "Frissített",
|
||||
"updated_password": "Jelszó megváltoztatva",
|
||||
"upload": "Feltöltés",
|
||||
|
|
@ -2055,6 +2087,7 @@
|
|||
"view_next_asset": "Következő elem megtekintése",
|
||||
"view_previous_asset": "Előző elem megtekintése",
|
||||
"view_qr_code": "QR kód megtekintése",
|
||||
"view_similar_photos": "Hasonló képek keresése",
|
||||
"view_stack": "Csoport Megtekintése",
|
||||
"view_user": "Felhasználó Megtekintése",
|
||||
"viewer_remove_from_stack": "Eltávolít a Csoportból",
|
||||
|
|
|
|||
46
i18n/id.json
46
i18n/id.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Aktifkan log",
|
||||
"logging_level_description": "Ketika diaktifkan, tingkat log apa yang digunakan.",
|
||||
"logging_settings": "Penulisan log",
|
||||
"machine_learning_availability_checks": "Pemeriksaan ketersediaan",
|
||||
"machine_learning_availability_checks_description": "Secara otomatis mendeteksi dan memprioritaskan server machine learning yang tersedia",
|
||||
"machine_learning_availability_checks_enabled": "Aktifkan pemeriksaan ketersediaan",
|
||||
"machine_learning_availability_checks_interval": "Interval pemeriksaan",
|
||||
"machine_learning_availability_checks_interval_description": "Interval dalam milidetik antar pemeriksaan ketersediaan",
|
||||
"machine_learning_availability_checks_timeout": "Batas waktu permintaan",
|
||||
"machine_learning_availability_checks_timeout_description": "Batas waktu dalam milidetik untuk pemeriksaan ketersediaan",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "Nama model CLIP yang didaftarkan <link>di sini</link>. Anda harus menjalankan ulang tugas 'Pencarian Otomatis' untuk semua gambar ketika mengganti model.",
|
||||
"machine_learning_duplicate_detection": "Deteksi Duplikat",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Kata Sandi Admin",
|
||||
"administration": "Administrasi",
|
||||
"advanced": "Tingkat lanjut",
|
||||
"advanced_settings_beta_timeline_subtitle": "Coba pengalaman aplikasi baru",
|
||||
"advanced_settings_beta_timeline_title": "Garis waktu Beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Gunakan opsi ini untuk menyaring media saat sinkronisasi berdasarkan kriteria alternatif. Hanya coba ini dengan aplikasi mendeteksi semua album.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTAL] Gunakan saringan sinkronisasi album perangkat alternatif",
|
||||
"advanced_settings_log_level_title": "Tingkat log: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Apakah Anda yakin ingin mengeluarkan {user}?",
|
||||
"album_search_not_found": "Tidak ada album yang ditemukan sesuai pencarian Anda",
|
||||
"album_share_no_users": "Sepertinya Anda telah membagikan album ini dengan semua pengguna atau tidak memiliki pengguna siapa pun untuk dibagikan.",
|
||||
"album_summary": "Ringkasan album",
|
||||
"album_updated": "Album diperbarui",
|
||||
"album_updated_setting_description": "Terima notifikasi surel ketika album terbagi memiliki aset baru",
|
||||
"album_user_left": "Keluar dari {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Aset telah berhasil dipulihkan",
|
||||
"asset_skipped": "Dilewati",
|
||||
"asset_skipped_in_trash": "Dalam sampah",
|
||||
"asset_trashed": "Aset dibuang",
|
||||
"asset_troubleshoot": "Troubleshoot Aset",
|
||||
"asset_uploaded": "Sudah diunggah",
|
||||
"asset_uploading": "Mengunggah…",
|
||||
"asset_viewer_settings_subtitle": "Kelola pengaturan penampil galeri Anda",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Putar otomatis tayangan slide",
|
||||
"back": "Kembali",
|
||||
"back_close_deselect": "Kembali, tutup, atau batalkan pemilihan",
|
||||
"background_backup_running_error": "Cadangan latar belakang sedang berjalan, tidak dapat memulai cadangan manual",
|
||||
"background_location_permission": "Izin lokasi latar belakang",
|
||||
"background_location_permission_content": "Untuk beralih jaringan saat berjalan di latar belakang, Immich harus selalu memiliki akses lokasi akurat agar aplikasi dapat membaca nama jaringan Wi-Fi",
|
||||
"background_options": "Opsi Latar Belakang",
|
||||
"backup": "Cadangkan",
|
||||
"backup_album_selection_page_albums_device": "Album di perangkat ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Sentuh untuk memilih, sentuh 2x untuk mengecualikan",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Pilih album",
|
||||
"backup_album_selection_page_selection_info": "Info Pilihan",
|
||||
"backup_album_selection_page_total_assets": "Total aset unik",
|
||||
"backup_albums_sync": "Sinkronisasi cadangan album",
|
||||
"backup_all": "Semua",
|
||||
"backup_background_service_backup_failed_message": "Gagal mencadangkan aset. Mencoba lagi…",
|
||||
"backup_background_service_connection_failed_message": "Koneksi ke server gagal. Mencoba ulang…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Ubah kode PIN",
|
||||
"change_your_password": "Ubah kata sandi Anda",
|
||||
"changed_visibility_successfully": "Keterlihatan berhasil diubah",
|
||||
"charging": "Mengisi daya",
|
||||
"charging_requirement_mobile_backup": "Cadangan latar belakang memerlukan perangkat dalam keadaan mengisi daya",
|
||||
"check_corrupt_asset_backup": "Periksa cadangan aset yang rusak",
|
||||
"check_corrupt_asset_backup_button": "Lakukan pemeriksaan",
|
||||
"check_corrupt_asset_backup_description": "Jalankan pemeriksaan ini hanya melalui Wi-Fi dan setelah semua aset dicadangkan. Prosedur ini mungkin memerlukan waktu beberapa menit.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Buat pengguna",
|
||||
"created": "Dibuat",
|
||||
"created_at": "Dibuat",
|
||||
"creating_linked_albums": "Membuat album tertaut...",
|
||||
"crop": "Pangkas",
|
||||
"curated_object_page_title": "Benda",
|
||||
"current_device": "Perangkat saat ini",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Eror",
|
||||
"error_change_sort_album": "Gagal mengubah urutan album",
|
||||
"error_delete_face": "Terjadi kesalahan menghapus wajah dari aset",
|
||||
"error_getting_places": "Kesalahan saat mengambil lokasi",
|
||||
"error_loading_image": "Terjadi eror memuat gambar",
|
||||
"error_loading_partners": "Kesalahan saat memuat partner: {error}",
|
||||
"error_saving_image": "Kesalahan: {error}",
|
||||
"error_tag_face_bounding_box": "Galat saat memberi tag wajah – tidak dapat memperoleh koordinat kotak pembatas",
|
||||
"error_title": "Eror - Ada yang salah",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Tidak ada aset favorit",
|
||||
"feature_photo_updated": "Foto terfitur diperbarui",
|
||||
"features": "Fitur",
|
||||
"features_in_development": "Fitur dalam Pengembangan",
|
||||
"features_setting_description": "Kelola fitur aplikasi",
|
||||
"file_name": "Nama berkas",
|
||||
"file_name_or_extension": "Nama berkas atau ekstensi",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokal",
|
||||
"local_asset_cast_failed": "Tidak dapat melakukan cast aset yang belum diunggah ke server",
|
||||
"local_assets": "Aset Lokal",
|
||||
"local_media_summary": "Ringkasan Media Lokal",
|
||||
"local_network": "Jaringan Lokal",
|
||||
"local_network_sheet_info": "Aplikasi akan terhubung ke server melalui URL ini saat menggunakan jaringan Wi-Fi yang ditentukan",
|
||||
"location_permission": "Izin lokasi",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Masukkan bujur di sini",
|
||||
"lock": "Kunci",
|
||||
"locked_folder": "Folder Terkunci",
|
||||
"log_detail_title": "Detail Log",
|
||||
"log_out": "Log keluar",
|
||||
"log_out_all_devices": "Keluar dari Semua Perangkat",
|
||||
"logged_in_as": "Masuk sebagai {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Sandi berhasil diperbarui",
|
||||
"logout_all_device_confirmation": "Apakah Anda yakin ingin keluar dari semua perangkat?",
|
||||
"logout_this_device_confirmation": "Apakah Anda yakin ingin mengeluarkan perangkat ini?",
|
||||
"logs": "Log",
|
||||
"longitude": "Bujur",
|
||||
"look": "Tampilan",
|
||||
"loop_videos": "Ulangi video",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Tandai sebagai telah dibaca",
|
||||
"marked_all_as_read": "Semua telah ditandai sebagai telah dibaca",
|
||||
"matches": "Cocokan",
|
||||
"matching_assets": "Aset yang Cocok",
|
||||
"media_type": "Jenis media",
|
||||
"memories": "Kenangan",
|
||||
"memories_all_caught_up": "Semua telah dilihat",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nama atau nama panggilan",
|
||||
"network_requirement_photos_upload": "Gunakan data seluler untuk cadangkan foto",
|
||||
"network_requirement_videos_upload": "Gunakan data seluler untuk cadangkan video",
|
||||
"network_requirements": "Persyaratan Jaringan",
|
||||
"network_requirements_updated": "Persyaratan jaringan telah berubah, antrean pencadangan diatur ulang",
|
||||
"networking_settings": "Jaringan",
|
||||
"networking_subtitle": "Kelola pengaturan Endpoint server",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Orang baru",
|
||||
"new_pin_code": "Kode PIN baru",
|
||||
"new_pin_code_subtitle": "Ini adalah akses pertama Anda ke folder terkunci. Buat kode PIN untuk mengamankan akses ke halaman ini",
|
||||
"new_timeline": "Linimasa Baru",
|
||||
"new_user_created": "Pengguna baru dibuat",
|
||||
"new_version_available": "VERSI BARU TERSEDIA",
|
||||
"newest_first": "Terkini dahulu",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIK UNTUK MENGUNGGAH FOTO PERTAMA ANDA",
|
||||
"no_assets_to_show": "Tidak ada aset",
|
||||
"no_cast_devices_found": "Tidak ada perangkat cast yang ditemukan",
|
||||
"no_checksum_local": "Tidak ada checksum yang tersedia - tidak dapat mengambil aset lokal",
|
||||
"no_checksum_remote": "Tidak ada checksum yang tersedia - tidak dapat mengambil aset jarak jauh",
|
||||
"no_duplicates_found": "Tidak ada duplikat yang ditemukan.",
|
||||
"no_exif_info_available": "Tidak ada info EXIF yang tersedia",
|
||||
"no_explore_results_message": "Unggah lebih banyak foto untuk menjelajahi koleksi Anda.",
|
||||
"no_favorites_message": "Tambahkan favorit untuk mencari foto dan video terbaik Anda dengan cepat",
|
||||
"no_libraries_message": "Buat pustaka eksternal untuk menampilkan foto dan video Anda",
|
||||
"no_local_assets_found": "Tidak ada aset lokal yang ditemukan dengan checksum ini",
|
||||
"no_locked_photos_message": "Foto dan video di folder terkunci disembunyikan dan tidak akan muncul saat Anda menelusuri atau mencari di pustaka.",
|
||||
"no_name": "Tidak Ada Nama",
|
||||
"no_notifications": "Tidak ada notifikasi",
|
||||
"no_people_found": "Orang tidak ditemukan",
|
||||
"no_places": "Tidak ada tempat",
|
||||
"no_remote_assets_found": "Tidak ada aset jarak jauh yang ditemukan dengan checksum ini",
|
||||
"no_results": "Tidak ada hasil",
|
||||
"no_results_description": "Coba sinonim atau kata kunci yang lebih umum",
|
||||
"no_shared_albums_message": "Buat sebuah album untuk membagikan foto dan video dengan orang-orang dalam jaringan Anda",
|
||||
"no_uploads_in_progress": "Tidak ada unggahan yang sedang berlangsung",
|
||||
"not_available": "T/T",
|
||||
"not_in_any_album": "Tidak ada dalam album apa pun",
|
||||
"not_selected": "Belum dipilih",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Catatan: Untuk menerapkan Label Penyimpanan pada aset yang sebelumnya telah diunggah, jalankan",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Kelola preferensi aplikasi",
|
||||
"preferences_settings_title": "Preferensi",
|
||||
"preparing": "Mempersiapkan",
|
||||
"preset": "Prasetel",
|
||||
"preview": "Pratinjau",
|
||||
"previous": "Sebelumnya",
|
||||
|
|
@ -1515,7 +1544,7 @@
|
|||
"profile_drawer_client_out_of_date_minor": "Versi app seluler ini sudah kedaluwarsa. Silakan perbarui ke versi minor terbaru.",
|
||||
"profile_drawer_client_server_up_to_date": "Klien dan server menjalankan versi terbaru",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_readonly_mode": "Mode baca-saja aktif. Ketuk dua kali ikon avatar pengguna untuk keluar.",
|
||||
"profile_drawer_readonly_mode": "Mode baca-saja aktif. Tekan lama ikon avatar pengguna untuk keluar.",
|
||||
"profile_drawer_server_out_of_date_major": "Versi server ini telah kedaluwarsa. Silakan perbarui ke versi major terbaru.",
|
||||
"profile_drawer_server_out_of_date_minor": "Versi server ini telah kedaluwarsa. Silakan perbarui ke versi minor terbaru.",
|
||||
"profile_image_of_user": "Foto profil dari {user}",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Baca Log Perubahan",
|
||||
"readonly_mode_disabled": "Mode baca-saja dimatikan",
|
||||
"readonly_mode_enabled": "Mode baca-saja diaktifkan",
|
||||
"ready_for_upload": "Siap untuk mengunggah",
|
||||
"reassign": "Tetapkan ulang",
|
||||
"reassigned_assets_to_existing_person": "Menetapkan ulang {count, plural, one {# aset} other {# aset}} kepada {name, select, null {orang yang sudah ada} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Menetapkan ulang {count, plural, one {# aset} other {# aset}} kepada orang baru",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Membuat ulang gambar kecil",
|
||||
"remote": "Jarak Jauh",
|
||||
"remote_assets": "Aset Jarak Jauh",
|
||||
"remote_media_summary": "Ringkasan Media Jarak Jauh",
|
||||
"remove": "Hapus",
|
||||
"remove_assets_album_confirmation": "Apakah Anda yakin ingin menghapus {count, plural, one {# aset} other {# aset}} dari album?",
|
||||
"remove_assets_shared_link_confirmation": "Apakah Anda yakin ingin menghapus {count, plural, one {# aset} other {# aset}} dari tautan terbagi ini?",
|
||||
|
|
@ -1640,6 +1671,7 @@
|
|||
"restore_user": "Pulihkan pengguna",
|
||||
"restored_asset": "Aset dipulihkan",
|
||||
"resume": "Lanjutkan",
|
||||
"resume_paused_jobs": "Lanjutkan {count, plural, one {# pekerjaan yang dijeda} other {# pekerjaan yang dijeda}}",
|
||||
"retry_upload": "Ulangi pengunggahan",
|
||||
"review_duplicates": "Pratinjau duplikat",
|
||||
"review_large_files": "Meninjau berkas berukuran besar",
|
||||
|
|
@ -1862,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Tampilkan transisi salindia",
|
||||
"show_supporter_badge": "Lencana suporter",
|
||||
"show_supporter_badge_description": "Tampilkan lencana suporter",
|
||||
"show_text_search_menu": "Tampilkan menu pencarian teks",
|
||||
"shuffle": "Acak",
|
||||
"sidebar": "Bilah sisi",
|
||||
"sidebar_display_description": "Menampilkan tautan ke tampilan di bilah sisi",
|
||||
|
|
@ -1892,6 +1925,7 @@
|
|||
"stacktrace": "Jejak tumpukan",
|
||||
"start": "Mulai",
|
||||
"start_date": "Tanggal mulai",
|
||||
"start_date_before_end_date": "Tanggal mulai harus sebelum tanggal akhir",
|
||||
"state": "Keadaan",
|
||||
"status": "Status",
|
||||
"stop_casting": "Hentikan cast",
|
||||
|
|
@ -1916,6 +1950,8 @@
|
|||
"sync_albums_manual_subtitle": "Melakukan sinkronisasi semua video dan foto yang telah diunggah ke album cadangan yang dipilih",
|
||||
"sync_local": "Sinkronkan lokal",
|
||||
"sync_remote": "Sinkronkan jarak jauh",
|
||||
"sync_status": "Status Sinkronisasi",
|
||||
"sync_status_subtitle": "Lihat dan atur sistem sinkronisasi",
|
||||
"sync_upload_album_setting_subtitle": "Membuat dan mengunggah foto serta video Anda ke album yang telah dipilih pada Immich",
|
||||
"tag": "Label",
|
||||
"tag_assets": "Tag aset",
|
||||
|
|
@ -1975,6 +2011,7 @@
|
|||
"trash_page_select_assets_btn": "Pilih aset",
|
||||
"trash_page_title": "Sampah ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Item yang dibuang akan dihapus secara permanen setelah {days, plural, one {# hari} other {# hari}}.",
|
||||
"troubleshoot": "Pemecahan Masalah",
|
||||
"type": "Jenis",
|
||||
"unable_to_change_pin_code": "Tidak dapat mengubah kode PIN",
|
||||
"unable_to_setup_pin_code": "Tidak dapat memasang kode PIN",
|
||||
|
|
@ -2091,5 +2128,6 @@
|
|||
"yes": "Ya",
|
||||
"you_dont_have_any_shared_links": "Anda tidak memiliki tautan terbagi",
|
||||
"your_wifi_name": "Nama Wi-Fi Anda",
|
||||
"zoom_image": "Perbesar Gambar"
|
||||
"zoom_image": "Perbesar Gambar",
|
||||
"zoom_to_bounds": "Perbesar ke batas"
|
||||
}
|
||||
|
|
|
|||
43
i18n/it.json
43
i18n/it.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Attiva il logging",
|
||||
"logging_level_description": "Quando attivato, che livello di log utilizzare.",
|
||||
"logging_settings": "Registro dei Log",
|
||||
"machine_learning_availability_checks": "Verifiche di disponibilità",
|
||||
"machine_learning_availability_checks_description": "Rileva automaticamente e usa i server di machine learning disponibili",
|
||||
"machine_learning_availability_checks_enabled": "Attiva verifiche di disponibilità",
|
||||
"machine_learning_availability_checks_interval": "Intervallo di verifica",
|
||||
"machine_learning_availability_checks_interval_description": "Intervallo (ms) tra le verifiche di disponibilità",
|
||||
"machine_learning_availability_checks_timeout": "Timeout richiesta",
|
||||
"machine_learning_availability_checks_timeout_description": "Timeout (ms) per le verifiche di disponibilità",
|
||||
"machine_learning_clip_model": "Modello CLIP",
|
||||
"machine_learning_clip_model_description": "Il nome del modello CLIP mostrato <link>qui</link>. Nota che devi rieseguire il processo 'Ricerca Intelligente' per tutte le immagini al cambio del modello.",
|
||||
"machine_learning_duplicate_detection": "Rilevamento Duplicati",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Password Amministratore",
|
||||
"administration": "Amministrazione",
|
||||
"advanced": "Avanzate",
|
||||
"advanced_settings_beta_timeline_subtitle": "Prova la nuova esperienza dell'app",
|
||||
"advanced_settings_beta_timeline_title": "Timeline beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Usa questa opzione per filtrare i contenuti multimediali durante la sincronizzazione in base a criteri alternativi. Prova questa opzione solo se riscontri problemi con il rilevamento di tutti gli album da parte dell'app.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[SPERIMENTALE] Usa un filtro alternativo per la sincronizzazione degli album del dispositivo",
|
||||
"advanced_settings_log_level_title": "Livello log: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Sicuro di voler rimuovere l'utente {user}?",
|
||||
"album_search_not_found": "Nessun album trovato corrispondente alla tua ricerca",
|
||||
"album_share_no_users": "Sembra che tu abbia condiviso questo album con tutti gli utenti oppure non hai nessun utente con cui condividere.",
|
||||
"album_summary": "Sommario Album",
|
||||
"album_updated": "Album aggiornato",
|
||||
"album_updated_setting_description": "Ricevi una notifica email quando un album condiviso ha nuovi media",
|
||||
"album_user_left": "{album} abbandonato",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Elemento ripristinato con successo",
|
||||
"asset_skipped": "Saltato",
|
||||
"asset_skipped_in_trash": "Nel cestino",
|
||||
"asset_trashed": "Asset cestinato",
|
||||
"asset_troubleshoot": "Risoluzione dei problemi dell'asset",
|
||||
"asset_uploaded": "Caricato",
|
||||
"asset_uploading": "Caricamento…",
|
||||
"asset_viewer_settings_subtitle": "Gestisci le impostazioni del visualizzatore della galleria",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Avvio automatico presentazione",
|
||||
"back": "Indietro",
|
||||
"back_close_deselect": "Indietro, chiudi o deseleziona",
|
||||
"background_backup_running_error": "Il backup in background è attualmente in esecuzione, impossibile avviare il backup manuale",
|
||||
"background_location_permission": "Permesso di localizzazione in background",
|
||||
"background_location_permission_content": "Per fare in modo che sia possibile cambiare rete quando è in esecuzione in background, Immich deve *sempre* avere accesso alla tua posizione precisa in modo da poter leggere il nome della rete Wi-Fi",
|
||||
"background_options": "Opzioni sfondo",
|
||||
"backup": "Backup",
|
||||
"backup_album_selection_page_albums_device": "Album sul dispositivo ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tap per includere, doppio tap per escludere",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Seleziona gli album",
|
||||
"backup_album_selection_page_selection_info": "Informazioni sulla selezione",
|
||||
"backup_album_selection_page_total_assets": "Numero totale delle risorse",
|
||||
"backup_albums_sync": "Sincronizzazione album di backup",
|
||||
"backup_all": "Tutti",
|
||||
"backup_background_service_backup_failed_message": "È stato impossibile fare il backup dei contenuti. Riprovo…",
|
||||
"backup_background_service_connection_failed_message": "Impossibile connettersi al server. Riprovo…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Cambia il codice PIN",
|
||||
"change_your_password": "Modifica la tua password",
|
||||
"changed_visibility_successfully": "Visibilità modificata con successo",
|
||||
"charging": "In carica",
|
||||
"charging_requirement_mobile_backup": "Il backup in background richiede che il dispositivo sia in carica",
|
||||
"check_corrupt_asset_backup": "Verifica la presenza di backup di asset corrotti",
|
||||
"check_corrupt_asset_backup_button": "Effettua controllo",
|
||||
"check_corrupt_asset_backup_description": "Effettua questo controllo solo sotto rete Wi-Fi e quando tutti gli asset sono stati sottoposti a backup. La procedura potrebbe impiegare qualche minuto.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Crea utente",
|
||||
"created": "Creato",
|
||||
"created_at": "Creato il",
|
||||
"creating_linked_albums": "Creazione di album collegati...",
|
||||
"crop": "Ritaglia",
|
||||
"curated_object_page_title": "Oggetti",
|
||||
"current_device": "Dispositivo attuale",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Errore",
|
||||
"error_change_sort_album": "Errore nel cambiare l'ordine di degli album",
|
||||
"error_delete_face": "Errore nel cancellare la faccia dalla foto",
|
||||
"error_getting_places": "Errore durante il recupero dei luoghi",
|
||||
"error_loading_image": "Errore nel caricamento dell'immagine",
|
||||
"error_loading_partners": "Errore durante il caricamento dei partner: {error}",
|
||||
"error_saving_image": "Errore: {error}",
|
||||
"error_tag_face_bounding_box": "Errore durante il tag del volto - impossibile ricavare le coordinate del riquadro",
|
||||
"error_title": "Errore - Qualcosa è andato storto",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Nessun preferito",
|
||||
"feature_photo_updated": "Foto in evidenza aggiornata",
|
||||
"features": "Funzionalità",
|
||||
"features_in_development": "Funzionalità in fase di sviluppo",
|
||||
"features_setting_description": "Gestisci le funzionalità dell'app",
|
||||
"file_name": "Nome file",
|
||||
"file_name_or_extension": "Nome file o estensione",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Locale",
|
||||
"local_asset_cast_failed": "Impossibile trasmettere una risorsa che non è caricata sul server",
|
||||
"local_assets": "Risorsa locale",
|
||||
"local_media_summary": "Riepilogo dei Media Locali",
|
||||
"local_network": "Rete locale",
|
||||
"local_network_sheet_info": "L'app si collegherà al server tramite questo URL quando è in uso la rete Wi-Fi specificata",
|
||||
"location_permission": "Permesso di localizzazione",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Inserisci la longitudine qui",
|
||||
"lock": "Rendi privato",
|
||||
"locked_folder": "Cartella Privata",
|
||||
"log_detail_title": "Dettaglio dei Log",
|
||||
"log_out": "Esci",
|
||||
"log_out_all_devices": "Disconnetti tutti i dispositivi",
|
||||
"logged_in_as": "Effettuato l'accesso come {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Password aggiornata con successo",
|
||||
"logout_all_device_confirmation": "Sei sicuro di volerti disconnettere da tutti i dispositivi?",
|
||||
"logout_this_device_confirmation": "Sei sicuro di volerti disconnettere da questo dispositivo?",
|
||||
"logs": "Logs",
|
||||
"longitude": "Longitudine",
|
||||
"look": "Guarda",
|
||||
"loop_videos": "Riproduci video in loop",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Segna come letto",
|
||||
"marked_all_as_read": "Segnato tutto come letto",
|
||||
"matches": "Corrispondenze",
|
||||
"matching_assets": "Assets Corrispondenti",
|
||||
"media_type": "Tipo Media",
|
||||
"memories": "Ricordi",
|
||||
"memories_all_caught_up": "Tutto a posto",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nome o soprannome",
|
||||
"network_requirement_photos_upload": "Utilizza la connessione dati per il backup delle foto",
|
||||
"network_requirement_videos_upload": "Utilizza la connessione dati per il backup dei video",
|
||||
"network_requirements": "Requisiti di rete",
|
||||
"network_requirements_updated": "Requisiti di rete modificati, coda di backup reimpostata",
|
||||
"networking_settings": "Rete",
|
||||
"networking_subtitle": "Gestisci le impostazioni riguardanti gli endpoint del server",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nuova persona",
|
||||
"new_pin_code": "Nuovo codice PIN",
|
||||
"new_pin_code_subtitle": "Questa è la prima volta che accedi alla cartella privata. Crea un codice PIN per accedere in modo sicuro a questa pagina",
|
||||
"new_timeline": "Nuova Timeline",
|
||||
"new_user_created": "Nuovo utente creato",
|
||||
"new_version_available": "NUOVA VERSIONE DISPONIBILE",
|
||||
"newest_first": "Prima recenti",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "CLICCA PER CARICARE LA TUA PRIMA FOTO",
|
||||
"no_assets_to_show": "Nessuna risorsa da mostrare",
|
||||
"no_cast_devices_found": "Nessun dispositivo di trasmissione trovato",
|
||||
"no_checksum_local": "Nessun checksum disponibile: impossibile recuperare gli assets locali",
|
||||
"no_checksum_remote": "Nessun checksum disponibile: impossibile recuperare l'asset remoto",
|
||||
"no_duplicates_found": "Nessun duplicato trovato.",
|
||||
"no_exif_info_available": "Nessuna informazione exif disponibile",
|
||||
"no_explore_results_message": "Carica più foto per esplorare la tua collezione.",
|
||||
"no_favorites_message": "Aggiungi preferiti per trovare facilmente le tue migliori foto e video",
|
||||
"no_libraries_message": "Crea una libreria esterna per vedere le tue foto e i tuoi video",
|
||||
"no_local_assets_found": "Nessun asset locale trovato con questo checksum",
|
||||
"no_locked_photos_message": "Le foto e i video nella cartella privata sono nascosti e non vengono visualizzati mentre navighi o cerchi nella tua libreria.",
|
||||
"no_name": "Nessun nome",
|
||||
"no_notifications": "Nessuna notifica",
|
||||
"no_people_found": "Nessuna persona trovata",
|
||||
"no_places": "Nessun posto",
|
||||
"no_remote_assets_found": "Nessun asset remoto trovato con questo checksum",
|
||||
"no_results": "Nessun risultato",
|
||||
"no_results_description": "Prova ad usare un sinonimo oppure una parola chiave più generica",
|
||||
"no_shared_albums_message": "Crea un album per condividere foto e video con le persone nella tua rete",
|
||||
"no_uploads_in_progress": "Nessun upload in corso",
|
||||
"not_available": "N/A",
|
||||
"not_in_any_album": "In nessun album",
|
||||
"not_selected": "Non selezionato",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Per aggiungere l'etichetta dell'archiviazione agli asset caricati in precedenza, esegui",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gestisci le preferenze dell'app",
|
||||
"preferences_settings_title": "Preferenze",
|
||||
"preparing": "Preparando",
|
||||
"preset": "Preimpostazione",
|
||||
"preview": "Anteprima",
|
||||
"previous": "Precedente",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Leggi Riepilogo Modifiche",
|
||||
"readonly_mode_disabled": "Modalità di sola lettura disabilitata",
|
||||
"readonly_mode_enabled": "Modalità di sola lettura abilitata",
|
||||
"ready_for_upload": "Pronto per il caricamento",
|
||||
"reassign": "Riassegna",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {Riassegnato # asset} other {Riassegnati # assets}} {name, select, null {ad una persona esistente} other {a {name}}}",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {Riassegnato # asset} other {Riassegnati # assets}} ad una nuova persona",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Rigenerando le anteprime",
|
||||
"remote": "Remoto",
|
||||
"remote_assets": "Risorse remote",
|
||||
"remote_media_summary": "Riepilogo dei Media Remoti",
|
||||
"remove": "Rimuovi",
|
||||
"remove_assets_album_confirmation": "Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} dall'album?",
|
||||
"remove_assets_shared_link_confirmation": "Sei sicuro di voler rimuovere {count, plural, one {# asset} other {# asset}} da questo link condiviso?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Mostra la transizione della presentazione",
|
||||
"show_supporter_badge": "Medaglia di Contributore",
|
||||
"show_supporter_badge_description": "Mostra la medaglia di contributore",
|
||||
"show_text_search_menu": "Mostra il menu di ricerca del testo",
|
||||
"shuffle": "Casuale",
|
||||
"sidebar": "Barra laterale",
|
||||
"sidebar_display_description": "Visualizzare un link alla vista nella barra laterale",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Traccia dell'errore",
|
||||
"start": "Avvia",
|
||||
"start_date": "Data di inizio",
|
||||
"start_date_before_end_date": "La data di inizio deve essere precedente alla data di fine",
|
||||
"state": "Provincia",
|
||||
"status": "Stato",
|
||||
"stop_casting": "Interrompi trasmissione",
|
||||
|
|
@ -1917,6 +1950,8 @@
|
|||
"sync_albums_manual_subtitle": "Sincronizza tutti i video e le foto caricati con gli album di backup selezionati",
|
||||
"sync_local": "Sincronizza gli elementi locali",
|
||||
"sync_remote": "Sincronizza gli elementi remoti",
|
||||
"sync_status": "Stato di Sincronizzazione",
|
||||
"sync_status_subtitle": "Visualizza e gestisci il sistema di sincronizzazione",
|
||||
"sync_upload_album_setting_subtitle": "Crea e carica le tue foto e video sull'album selezionato in Immich",
|
||||
"tag": "Tag",
|
||||
"tag_assets": "Tagga risorse",
|
||||
|
|
@ -1976,6 +2011,7 @@
|
|||
"trash_page_select_assets_btn": "Seleziona elemento",
|
||||
"trash_page_title": "Cestino ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Gli elementi cestinati saranno eliminati definitivamente dopo {days, plural, one {# giorno} other {# giorni}}.",
|
||||
"troubleshoot": "Risoluzione dei problemi",
|
||||
"type": "Tipo",
|
||||
"unable_to_change_pin_code": "Impossibile cambiare il codice PIN",
|
||||
"unable_to_setup_pin_code": "Impossibile configurare il codice PIN",
|
||||
|
|
@ -2092,5 +2128,6 @@
|
|||
"yes": "Si",
|
||||
"you_dont_have_any_shared_links": "Non è presente alcun link condiviso",
|
||||
"your_wifi_name": "Nome della tua rete Wi-Fi",
|
||||
"zoom_image": "Ingrandisci immagine"
|
||||
"zoom_image": "Ingrandisci immagine",
|
||||
"zoom_to_bounds": "Ingrandisci fino ai bordi"
|
||||
}
|
||||
|
|
|
|||
40
i18n/ja.json
40
i18n/ja.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "ログの有効化",
|
||||
"logging_level_description": "有効な場合に使用されるログ レベル。",
|
||||
"logging_settings": "ログ",
|
||||
"machine_learning_availability_checks": "可用性の確認",
|
||||
"machine_learning_availability_checks_description": "利用可能な機械学習のサーバーを自動で検知し優先的に使用します",
|
||||
"machine_learning_availability_checks_enabled": "可用性チェックを有効にする",
|
||||
"machine_learning_availability_checks_interval": "チェックの間隔",
|
||||
"machine_learning_availability_checks_interval_description": "可用性チェックの間隔(ミリ秒単位)",
|
||||
"machine_learning_availability_checks_timeout": "リクエストタイムアウト",
|
||||
"machine_learning_availability_checks_timeout_description": "可用性チェックのタイムアウト時間(ミリ秒単位)",
|
||||
"machine_learning_clip_model": "Clipモデル",
|
||||
"machine_learning_clip_model_description": "CLIP モデルの名前は<link>ここ</link>にリストされています。モデルを変更した場合は、すべてのイメージに対して「スマート検索」ジョブを再実行する必要があります。",
|
||||
"machine_learning_duplicate_detection": "重複検出",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "管理者パスワード",
|
||||
"administration": "管理",
|
||||
"advanced": "詳細設定",
|
||||
"advanced_settings_beta_timeline_subtitle": "新しいアプリを体験してみましょう",
|
||||
"advanced_settings_beta_timeline_title": "試験運用のタイムライン",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "別の基準に従ってメディアファイルにフィルターをかけて、同期を行います。アプリがすべてのアルバムを読み込んでくれない場合にのみ、この機能を試してください。",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[試験運用] 別のデバイスのアルバム同期フィルターを使用する",
|
||||
"advanced_settings_log_level_title": "ログレベル: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "本当に{user}を削除しますか?",
|
||||
"album_search_not_found": "検索に一致するアルバムがありません",
|
||||
"album_share_no_users": "このアルバムを全てのユーザーと共有したか、共有するユーザーがいないようです。",
|
||||
"album_summary": "アルバムのまとめ",
|
||||
"album_updated": "アルバム更新",
|
||||
"album_updated_setting_description": "共有アルバムに新しいアセットが追加されたとき通知を受け取る",
|
||||
"album_user_left": "{album} を去りました",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "復元できました",
|
||||
"asset_skipped": "スキップ済",
|
||||
"asset_skipped_in_trash": "ゴミ箱の中",
|
||||
"asset_trashed": "項目が削除されました",
|
||||
"asset_troubleshoot": "項目をトラブルシューㇳ",
|
||||
"asset_uploaded": "アップロード済",
|
||||
"asset_uploading": "アップロード中…",
|
||||
"asset_viewer_settings_subtitle": "ギャラリービューアーに関する設定",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "スライドショーを自動再生",
|
||||
"back": "戻る",
|
||||
"back_close_deselect": "戻る、閉じる、選択解除",
|
||||
"background_backup_running_error": "バックグラウンドのバックアップがすでに行われている最中です。そのため、マニュアルでのバックアップを開始することはできません。",
|
||||
"background_location_permission": "バックグラウンド位置情報アクセス",
|
||||
"background_location_permission_content": "正常にWi-Fiの名前(SSID)を獲得するにはアプリが常に詳細な位置情報にアクセスできる必要があります",
|
||||
"background_options": "バックグラウンドの動作オプション",
|
||||
"backup": "バックアップ",
|
||||
"backup_album_selection_page_albums_device": "デバイス上のアルバム({count})",
|
||||
"backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "アルバムを選択",
|
||||
"backup_album_selection_page_selection_info": "選択・除外中のアルバム",
|
||||
"backup_album_selection_page_total_assets": "選択されたアルバムの写真と動画の数",
|
||||
"backup_albums_sync": "アルバム同期状態をバックアップ",
|
||||
"backup_all": "すべて",
|
||||
"backup_background_service_backup_failed_message": "アップロードに失敗しました。リトライ中…",
|
||||
"backup_background_service_connection_failed_message": "サーバーに接続できません。リトライ中…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "PINコードを変更",
|
||||
"change_your_password": "パスワードを変更します",
|
||||
"changed_visibility_successfully": "非表示設定を正常に変更しました",
|
||||
"charging": "充電中",
|
||||
"charging_requirement_mobile_backup": "バックグラウンドでのバックアップを行うためには、デバイスが充電中である必要があります",
|
||||
"check_corrupt_asset_backup": "破損されている項目を探す",
|
||||
"check_corrupt_asset_backup_button": "チェックを行う",
|
||||
"check_corrupt_asset_backup_description": "写真や動画などが全てアップロードし終えてからWi-Fiに接続時のみチェックを行なってください。作業が完了するには数分かかる場合があります",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "ユーザーを作成",
|
||||
"created": "作成",
|
||||
"created_at": "作成:",
|
||||
"creating_linked_albums": "リンクされたアルバムを作成中・・・",
|
||||
"crop": "クロップ",
|
||||
"curated_object_page_title": "被写体",
|
||||
"current_device": "現在のデバイス",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "エラー",
|
||||
"error_change_sort_album": "アルバムの表示順の変更に失敗しました",
|
||||
"error_delete_face": "アセットから顔の削除ができませんでした",
|
||||
"error_getting_places": "場所の取得に失敗しました",
|
||||
"error_loading_image": "画像の読み込みエラー",
|
||||
"error_loading_partners": "パートナーの読み込みに失敗しました: {error}",
|
||||
"error_saving_image": "エラー: {error}",
|
||||
"error_tag_face_bounding_box": "顔の登録に失敗しました - 顔を囲む四角形の座標取得に失敗",
|
||||
"error_title": "エラー - 問題が発生しました",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "お気に入り登録された項目がありません",
|
||||
"feature_photo_updated": "人物画像が更新されました",
|
||||
"features": "機能",
|
||||
"features_in_development": "開発中の機能",
|
||||
"features_setting_description": "アプリの機能を管理する",
|
||||
"file_name": "ファイル名",
|
||||
"file_name_or_extension": "ファイル名または拡張子",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "ローカル",
|
||||
"local_asset_cast_failed": "サーバーにアップロードされていない項目はキャストできません",
|
||||
"local_assets": "ローカルの項目",
|
||||
"local_media_summary": "ローカルメディアのまとめ",
|
||||
"local_network": "ローカルネットワーク",
|
||||
"local_network_sheet_info": "アプリは指定されたWi-Fiに繋がっている時サーバーへの接続を下記のURLで行います",
|
||||
"location_permission": "位置情報権限",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "経度を入力",
|
||||
"lock": "ロック",
|
||||
"locked_folder": "鍵付きフォルダー",
|
||||
"log_detail_title": "ログの詳細",
|
||||
"log_out": "ログアウト",
|
||||
"log_out_all_devices": "全てのデバイスからログアウト",
|
||||
"logged_in_as": "{user}としてログイン中",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "パスワードの変更に成功",
|
||||
"logout_all_device_confirmation": "本当に全てのデバイスからログアウトしますか?",
|
||||
"logout_this_device_confirmation": "本当にこのデバイスからログアウトしますか?",
|
||||
"logs": "ログ",
|
||||
"longitude": "経度",
|
||||
"look": "見た目",
|
||||
"loop_videos": "動画をループ",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "既読にする",
|
||||
"marked_all_as_read": "すべて既読にしました",
|
||||
"matches": "マッチ",
|
||||
"matching_assets": "一致する項目",
|
||||
"media_type": "メディアタイプ",
|
||||
"memories": "メモリー",
|
||||
"memories_all_caught_up": "これで全部です",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "名前またはニックネーム",
|
||||
"network_requirement_photos_upload": "モバイル通信を使用して写真のバックアップを行う",
|
||||
"network_requirement_videos_upload": "モバイル通信を使用して動画のバックアップを行う",
|
||||
"network_requirements": "ネットワークの要件",
|
||||
"network_requirements_updated": "ネットワークの条件が変更されたため、バックアップの順番待ちをリセットします",
|
||||
"networking_settings": "ネットワーク",
|
||||
"networking_subtitle": "サーバーエンドポイントに関する設定",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "新しい人物",
|
||||
"new_pin_code": "新しいPINコード",
|
||||
"new_pin_code_subtitle": "鍵付きフォルダーを利用するのが初めてのようです。PINコードを作成してください",
|
||||
"new_timeline": "新たなタイムライン",
|
||||
"new_user_created": "新しいユーザーが作成されました",
|
||||
"new_version_available": "新しいバージョンが利用可能",
|
||||
"newest_first": "最新順",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "クリックして最初の写真をアップロード",
|
||||
"no_assets_to_show": "表示する項目がありません",
|
||||
"no_cast_devices_found": "キャスト先のデバイスが見つかりません",
|
||||
"no_checksum_local": "チェックサムが見つかりません - デバイス上の項目を取得できないようです",
|
||||
"no_checksum_remote": "チェックサムが見つかりません - サーバー上の項目を取得できないようです",
|
||||
"no_duplicates_found": "重複は見つかりませんでした。",
|
||||
"no_exif_info_available": "exif情報が利用できません",
|
||||
"no_explore_results_message": "コレクションを探索するにはさらに写真をアップロードしてください。",
|
||||
"no_favorites_message": "お気に入り登録すると好きな写真や動画をすぐに見つけられます",
|
||||
"no_libraries_message": "あなたの写真や動画を表示するための外部ライブラリを作成しましょう",
|
||||
"no_local_assets_found": "このチェックサムの項目はデバイス上に存在しません",
|
||||
"no_locked_photos_message": "鍵付きフォルダー内の写真や動画は通常のライブラリに表示されなくなります。",
|
||||
"no_name": "名前なし",
|
||||
"no_notifications": "通知なし",
|
||||
"no_people_found": "一致する人物が見つかりません",
|
||||
"no_places": "場所なし",
|
||||
"no_remote_assets_found": "このチェックサムの項目はサーバー上に存在しません",
|
||||
"no_results": "結果がありません",
|
||||
"no_results_description": "同義語やより一般的なキーワードを試してください",
|
||||
"no_shared_albums_message": "アルバムを作成して写真や動画を共有しましょう",
|
||||
"no_uploads_in_progress": "アップロードは行われていません",
|
||||
"not_available": "適用なし",
|
||||
"not_in_any_album": "どのアルバムにも入っていない",
|
||||
"not_selected": "選択なし",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "注意: 以前にアップロードしたアセットにストレージラベルを適用するには以下を実行してください",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "ポートレート",
|
||||
"preferences_settings_subtitle": "アプリに関する設定",
|
||||
"preferences_settings_title": "設定",
|
||||
"preparing": "準備中",
|
||||
"preset": "プリセット",
|
||||
"preview": "プレビュー",
|
||||
"previous": "前",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "変更履歴を読む",
|
||||
"readonly_mode_disabled": "読み取り専用モード無効",
|
||||
"readonly_mode_enabled": "読み取り専用モード有効",
|
||||
"ready_for_upload": "アップロード準備完了",
|
||||
"reassign": "再割り当て",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {#個} other {#個}}のアセットを{name, select, null {既存の人物} other {{name}}}に再割り当てしました",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {#個} other {#個}}のアセットを新しい人物に割り当てました",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "サムネイルを再生成中",
|
||||
"remote": "リモート",
|
||||
"remote_assets": "リモートの項目",
|
||||
"remote_media_summary": "サーバー上のメディアまとめ",
|
||||
"remove": "削除",
|
||||
"remove_assets_album_confirmation": "本当に{count, plural, one {#個} other {#個}}のアセットをアルバムから削除しますか?",
|
||||
"remove_assets_shared_link_confirmation": "本当にこの共有リンクから{count, plural, one {#個} other {#個}}のアセットを削除しますか?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "スライドショーのトランジションを表示",
|
||||
"show_supporter_badge": "サポーターバッジ",
|
||||
"show_supporter_badge_description": "サポーターバッジを表示",
|
||||
"show_text_search_menu": "テキスト検索メニューを表示",
|
||||
"shuffle": "ランダム",
|
||||
"sidebar": "サイドバー",
|
||||
"sidebar_display_description": "サイドバーにビューへのリンクを表示",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "スタックトレース",
|
||||
"start": "開始",
|
||||
"start_date": "開始日",
|
||||
"start_date_before_end_date": "開始日は終了日より前でなければなりません",
|
||||
"state": "都道府県",
|
||||
"status": "ステータス",
|
||||
"stop_casting": "キャストを停止",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "はい",
|
||||
"you_dont_have_any_shared_links": "共有リンクはありません",
|
||||
"your_wifi_name": "Wi-Fiの名前(SSID)",
|
||||
"zoom_image": "画像を拡大"
|
||||
"zoom_image": "画像を拡大",
|
||||
"zoom_to_bounds": "画面端までズーム"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -387,8 +387,6 @@
|
|||
"admin_password": "관리자 비밀번호",
|
||||
"administration": "관리",
|
||||
"advanced": "고급",
|
||||
"advanced_settings_beta_timeline_subtitle": "새로운 앱 경험 사용해보기",
|
||||
"advanced_settings_beta_timeline_title": "베타 타임라인",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "이 옵션을 사용하면 동기화 중 미디어를 대체 기준으로 필터링할 수 있습니다. 앱이 모든 앨범을 제대로 감지하지 못할 때만 사용하세요.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "대체 기기 앨범 동기화 필터 사용 (실험적)",
|
||||
"advanced_settings_log_level_title": "로그 레벨: {level}",
|
||||
|
|
|
|||
275
i18n/lt.json
275
i18n/lt.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Įjungti žurnalo vedimą",
|
||||
"logging_level_description": "Įjungus, kokį žurnalo vedimo lygį naudot.",
|
||||
"logging_settings": "Žurnalo vedimas",
|
||||
"machine_learning_availability_checks": "Prieinamumo patikrinimai",
|
||||
"machine_learning_availability_checks_description": "Automatiškai aptikti ir teikti pirmenybę prieinamiems mašininio mokymosi serveriams",
|
||||
"machine_learning_availability_checks_enabled": "Įjungti prieinamumo patikrinimus",
|
||||
"machine_learning_availability_checks_interval": "Patikros intervalas",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalas milisekundėmis tarp prieinamumo patikrinimų",
|
||||
"machine_learning_availability_checks_timeout": "Užklausos laiko limitas",
|
||||
"machine_learning_availability_checks_timeout_description": "Laiko limitas milisekundėmis prieinamumo patikrinimams",
|
||||
"machine_learning_clip_model": "CLIP modelis",
|
||||
"machine_learning_clip_model_description": "Pavadinimas CLIP modelio įvardintio <link>here</link>. Dėmesio, keičiant modelį jūs privalote iš naujo paleisti 'Išmaniosios Paieškos' užduotį visiems vaizdams.",
|
||||
"machine_learning_duplicate_detection": "Dublikatų aptikimas",
|
||||
|
|
@ -264,8 +271,8 @@
|
|||
"storage_template_date_time_description": "Elemento sukūrimo laiko žymė yra naudojama laiko informacijai",
|
||||
"storage_template_date_time_sample": "Pavyzdinis laikas {date}",
|
||||
"storage_template_enable_description": "Aktyvuoti saugyklos šabloną",
|
||||
"storage_template_hash_verification_enabled": "Aktyvuoti Hash tikrinimą",
|
||||
"storage_template_hash_verification_enabled_description": "Aktyvuojamas Hash tikrinimas, neišjungti nebent gerai suprantate galimas pasekmes",
|
||||
"storage_template_hash_verification_enabled": "Aktyvuoti failo parašo tikrinimą",
|
||||
"storage_template_hash_verification_enabled_description": "Aktyvuojamas failo parašo tikrinimas, neišjungti nebent gerai suprantate galimas pasekmes",
|
||||
"storage_template_migration": "Saugyklos tvarkymas pagal šabloną",
|
||||
"storage_template_migration_description": "Taikyti dabartinį <link>{template}</link> anksčiau įkeltiems duomenims",
|
||||
"storage_template_migration_info": "Saugyklos tvarkyklė konvertuos visus plėtinius mažosiomis raidėmis. Šablonas bus taikomas tik naujiems duomenims. Taikyti šabloną retroaktyviai anksčiau įkeltiems duomenims, paleiskite šią <link>{job}</link>.",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administratoriaus slaptažodis",
|
||||
"administration": "Administravimas",
|
||||
"advanced": "Sudėtingesnis",
|
||||
"advanced_settings_beta_timeline_subtitle": "Išbandykite naujos programos patirtį",
|
||||
"advanced_settings_beta_timeline_title": "Beta laiko juosta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Naudokite šį nustatymą medijos filtravimui sinchronizuojant remiantis alternatyviais kriterijais. Naudokite tik jei programa turi problemų su visų albumų aptikimu.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTINIS] Naudokite alternatyvų įrenginio albumų sinchronizavimo filtrą",
|
||||
"advanced_settings_log_level_title": "Žurnalo įrašų lygis: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Ar tikrai norite pašalinti naudotoją {user}?",
|
||||
"album_search_not_found": "Pagal jūsų paiešką albumų nerasta",
|
||||
"album_share_no_users": "Atrodo, kad bendrinate šį albumą su visais naudotojais, arba neturite naudotojų, su kuriais galėtumėte bendrinti.",
|
||||
"album_summary": "Albumo santrauka",
|
||||
"album_updated": "Albumas atnaujintas",
|
||||
"album_updated_setting_description": "Gauti pranešimą el. paštu, kai bendrinamas albumas turi naujų elementų",
|
||||
"album_user_left": "Paliko {album}",
|
||||
|
|
@ -482,7 +488,7 @@
|
|||
"asset_description_updated": "Elemento aprašymas buvo atnaujintas",
|
||||
"asset_filename_is_offline": "Elementas {filename} nepasiekiamas",
|
||||
"asset_has_unassigned_faces": "Elementas turi nepriskirtų veidų",
|
||||
"asset_hashing": "Maišoma…",
|
||||
"asset_hashing": "Kuriami bylų parašai…",
|
||||
"asset_list_group_by_sub_title": "Grupuoti pagal",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Dinaminis išdėstymas",
|
||||
"asset_list_layout_settings_group_automatically": "Automatiškai",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Elementas atkurtas sėkmingai",
|
||||
"asset_skipped": "Praleista",
|
||||
"asset_skipped_in_trash": "Šiukšliadėžėje",
|
||||
"asset_trashed": "Elementai ištrinti",
|
||||
"asset_troubleshoot": "Elementų trikčių šalinimas",
|
||||
"asset_uploaded": "Įkelta",
|
||||
"asset_uploading": "Įkeliama…",
|
||||
"asset_viewer_settings_subtitle": "Tvarkykite savo galerijos peržiūros nustatymus",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatiškai rodyti skaidrių demonstraciją",
|
||||
"back": "Atgal",
|
||||
"back_close_deselect": "Atgal, uždaryti arba atžymėti",
|
||||
"background_backup_running_error": "Vyksta foninis atsarginis kopijavimas, negalima pradėti rankinio kopijavimo",
|
||||
"background_location_permission": "Foninis vietovės leidimas",
|
||||
"background_location_permission_content": "Veikiant fone tinklo perjungimui Immich privalo *visada* turėti prieigą prie tikslios vietovės, kad programa galėtų perskaityti Wi-Fi tinklo pavadinimą",
|
||||
"background_options": "Fono nuostatos",
|
||||
"backup": "Atsarginė kopija",
|
||||
"backup_album_selection_page_albums_device": "Albumų įrenginyje ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Palieskite įtraukti, du kart palieskite neįtraukti",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Pažymėti albumai",
|
||||
"backup_album_selection_page_selection_info": "Pažymėjimo informacija",
|
||||
"backup_album_selection_page_total_assets": "Viso unikalių elementų",
|
||||
"backup_albums_sync": "Atsarginio kopijavimo albumų sinchronizacija",
|
||||
"backup_all": "Visi",
|
||||
"backup_background_service_backup_failed_message": "Nepavyko sukurti atsarginių kopijų. Bandoma dar kartą…",
|
||||
"backup_background_service_connection_failed_message": "Nepavyko prisijungti prie serverio. Bandoma dar kartą…",
|
||||
|
|
@ -651,6 +662,8 @@
|
|||
"change_pin_code": "Pakeisti PIN kodą",
|
||||
"change_your_password": "Pakeisti slaptažodį",
|
||||
"changed_visibility_successfully": "Matomumas pakeistas sėkmingai",
|
||||
"charging": "Kraunasi",
|
||||
"charging_requirement_mobile_backup": "Foninis kopijavimas reikalauja, kad įrenginys būtų prijungtas pakrovimui",
|
||||
"check_corrupt_asset_backup": "Patikrinti sugadintų elementų atsarginę kopiją",
|
||||
"check_corrupt_asset_backup_button": "Atlikti patikrinimą",
|
||||
"check_corrupt_asset_backup_description": "Paleiskite šį patikrinimą tik per Wi-Fi ir tik kai visi elementai buvo perkopijuoti. Ši procedūra užtruks kelias minutes.",
|
||||
|
|
@ -683,7 +696,7 @@
|
|||
"comments_are_disabled": "Komentarai yra išjungti",
|
||||
"common_create_new_album": "Sukurti naują albumą",
|
||||
"common_server_error": "Prašome patikrinti tinklo prisijungimą ir įsitikinti, kad serveris pasiekiamas ir programos/serverio versija sutampa.",
|
||||
"completed": "Atlikta",
|
||||
"completed": "Užbaigta",
|
||||
"confirm": "Patvirtinti",
|
||||
"confirm_admin_password": "Patvirtinti administratoriaus slaptažodį",
|
||||
"confirm_delete_face": "Ar tikrai norite ištrinti {name} veidą iš elementų?",
|
||||
|
|
@ -737,6 +750,7 @@
|
|||
"create_user": "Sukurti naudotoją",
|
||||
"created": "Sukurta",
|
||||
"created_at": "Sukurta",
|
||||
"creating_linked_albums": "Kuriami susieti albumai...",
|
||||
"crop": "Apkirpti",
|
||||
"curated_object_page_title": "Daiktai",
|
||||
"current_device": "Dabartinis įrenginys",
|
||||
|
|
@ -886,7 +900,9 @@
|
|||
"error": "Klaida",
|
||||
"error_change_sort_album": "Nepavyko pakeisti albumo rūšiavimo tvarkos",
|
||||
"error_delete_face": "Klaida trinant veidą iš elementų",
|
||||
"error_getting_places": "Klaida gaunant vietoves",
|
||||
"error_loading_image": "Klaida įkeliant vaizdą",
|
||||
"error_loading_partners": "Klaida užkraunant partnerius: {error}",
|
||||
"error_saving_image": "Klaida: {error}",
|
||||
"error_tag_face_bounding_box": "Klaida aprašant veidą - nepavyko gauti veido vietos koordinačių",
|
||||
"error_title": "Klaida - Kažkas nutiko ne taip",
|
||||
|
|
@ -1051,6 +1067,7 @@
|
|||
"favorites_page_no_favorites": "Nerasta mėgstamiausių elementų",
|
||||
"feature_photo_updated": "Pageidaujama nuotrauka atnaujinta",
|
||||
"features": "Funkcijos",
|
||||
"features_in_development": "Kūrimo funkcijos",
|
||||
"features_setting_description": "Valdyti aplikacijos funkcijas",
|
||||
"file_name": "Failo pavadinimas",
|
||||
"file_name_or_extension": "Failo pavadinimas arba plėtinys",
|
||||
|
|
@ -1090,9 +1107,9 @@
|
|||
"haptic_feedback_switch": "Įjungti haptinį grįžtamąjį ryšį",
|
||||
"haptic_feedback_title": "Haptinis grįžtamasis ryšys",
|
||||
"has_quota": "Turi kvotą",
|
||||
"hash_asset": "Maišymo elementas",
|
||||
"hashed_assets": "Sumaišyti elementai",
|
||||
"hashing": "Maišoma",
|
||||
"hash_asset": "Kurti bylos parašą elementui",
|
||||
"hashed_assets": "Elementai su bylų parašais",
|
||||
"hashing": "Bylų parašo kūrimas",
|
||||
"header_settings_add_header_tip": "Pridėti antraštę",
|
||||
"header_settings_field_validator_msg": "Reikšmė negali būti tuščia",
|
||||
"header_settings_header_name_input": "Antraštės pavadinimas",
|
||||
|
|
@ -1115,64 +1132,158 @@
|
|||
"home_page_building_timeline": "Kuriama laiko juosta",
|
||||
"home_page_delete_err_partner": "Negalima ištrinti partnerio elementų, praleidžiama",
|
||||
"home_page_delete_remote_err_local": "Vietiniai elementai ištrinant nuotolinį pasirinkimą, praleidžiami",
|
||||
"home_page_favorite_err_local": "Kol kad negalima priskirti mėgstamiausių vietinių elementų, praleidžiama",
|
||||
"home_page_favorite_err_local": "Kol kas negalima priskirti mėgstamiausių vietinių elementų, praleidžiama",
|
||||
"home_page_favorite_err_partner": "Kol kas negalima priskirti mėgstamiausių partnerio elementų, praleidžiama",
|
||||
"home_page_first_time_notice": "Jei jūs naudojate programą pirmą kartą, tai prašome pasirinkti atsarginės kopijos albumą, kad laiko juosta galėtų tvarkyti albumo nuotraukas ir vaizdo įrašus",
|
||||
"home_page_locked_error_local": "Nepavyko perkelti lokalių failų į užrakintą aplanką, praleidžiama",
|
||||
"home_page_locked_error_partner": "Nepavyko perkelti partnerio failų į užrakintą aplanką, praleidžiama",
|
||||
"home_page_share_err_local": "Negalima dalinti vietinių elementų per nuorodą, praleidžiama",
|
||||
"home_page_upload_err_limit": "Galima įkelti tik iki 30 elementų vienu metu, praleidžiama",
|
||||
"host": "Šeimininkas",
|
||||
"hour": "Valanda",
|
||||
"hours": "Valandos",
|
||||
"id": "ID",
|
||||
"idle": "Laisva",
|
||||
"ignore_icloud_photos": "Ignoruoti iCloud nuotraukas",
|
||||
"ignore_icloud_photos_description": "Nuotraukos laikomos iCloud nebus įkeltos į Immich serverį",
|
||||
"image": "Nuotrauka",
|
||||
"image_alt_text_date": "{isVideo, select, true {Filmuota} other {Fotografuota}} {date}",
|
||||
"image_alt_text_date_1_person": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1} {date}",
|
||||
"image_alt_text_date_2_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1} ir {person2} {date}",
|
||||
"image_alt_text_date_3_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} {date} su {person1}, {person2} ir{person3}",
|
||||
"image_alt_text_date_4_or_more_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} {date} su {person1}, {person2} ir {additionalCount, number} kitais",
|
||||
"image_alt_text_date_place": "{isVideo, select, true {Filmuota} other {Fotografuota}} {city}, {country} {date}",
|
||||
"image_alt_text_date_place_1_person": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1} - {city}, {country} {date}",
|
||||
"image_alt_text_date_place_2_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1} ir {person2} - {city}, {country} {date}",
|
||||
"image_alt_text_date_place_3_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1}, {person2}, ir {person3} - {city}, {country} {date}",
|
||||
"image_alt_text_date_place_4_or_more_people": "{isVideo, select, true {Filmuota} other {Fotografuota}} su {person1}, {person2}, ir {additionalCount, number} kitais - {city}, {country} {date}",
|
||||
"image_saved_successfully": "Nuotrauka išsaugota",
|
||||
"image_viewer_page_state_provider_download_started": "Atsisiuntimas pradėtas",
|
||||
"image_viewer_page_state_provider_download_success": "Atsisiuntimas pavyko",
|
||||
"image_viewer_page_state_provider_share_error": "Dalinimosi klaida",
|
||||
"immich_logo": "Immich logotipas",
|
||||
"immich_web_interface": "Immich Web sąsaja",
|
||||
"import_from_json": "Importuoti iš JSON",
|
||||
"import_path": "Importavimo kelias",
|
||||
"in_albums": "{count, plural, one {# Albume} few {#Albumuose} other {# Albumų}}",
|
||||
"in_archive": "Archyve",
|
||||
"include_archived": "Įtraukti archyvuotus",
|
||||
"include_shared_albums": "Įtraukti bendrinamus albumus",
|
||||
"include_shared_partner_assets": "Įtraukti partnerio pasidalintus elementus",
|
||||
"individual_share": "Pavienis pasidalinimas",
|
||||
"individual_shares": "Pavieniai pasidalinimai",
|
||||
"info": "Informacija",
|
||||
"interval": {
|
||||
"day_at_onepm": "Kiekvieną dieną 13:00",
|
||||
"hours": "Kas{hours, plural, one {valandą} few {#valandas} other {{hours, number} valandų}}",
|
||||
"night_at_midnight": "Kiekvieną vidurnaktį",
|
||||
"night_at_twoam": "Kiekvieną naktį 02:00"
|
||||
},
|
||||
"invalid_date": "Netinkama data",
|
||||
"invalid_date_format": "Netinkamas datos formatas",
|
||||
"invite_people": "Kviesti žmones",
|
||||
"invite_to_album": "Pakviesti į albumą",
|
||||
"ios_debug_info_fetch_ran_at": "Užkrovimas vyko {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Paskutinė sinchronizacija {dateTime}",
|
||||
"ios_debug_info_no_processes_queued": "Eilėje nėra foninių procesų",
|
||||
"ios_debug_info_no_sync_yet": "Jokia background sync užduotis dar nebuvo paleista",
|
||||
"ios_debug_info_processes_queued": "{count, plural, one {Eilėje {count} foninis procesas} few {Eilėje {count} foniniai procesai} other {Eilėje {count} foninių procesų}}",
|
||||
"ios_debug_info_processing_ran_at": "Apdorojimas vyko {dateTime}",
|
||||
"items_count": "{count, plural, one {# elementas} few {# elementai} other {# elementų}}",
|
||||
"jobs": "Užduotys",
|
||||
"keep": "Palikti",
|
||||
"keep_all": "Palikti visus",
|
||||
"keep_this_delete_others": "Išsaugoti šį, kitus ištrinti",
|
||||
"kept_this_deleted_others": "Išsaugotas šis elementas ir {count, plural, one {ištrintas # elementas} few {ištrinti # elementai} other {ištrinta # elementų}}",
|
||||
"keyboard_shortcuts": "Spartieji klaviatūros klavišai",
|
||||
"language": "Kalba",
|
||||
"language_no_results_subtitle": "Bandykite pakoreguoti paieškos terminą",
|
||||
"language_no_results_title": "Kalbos nerastos",
|
||||
"language_search_hint": "Ieškoti kalbų...",
|
||||
"language_setting_description": "Pasirinkti pageidaujamą kalbą",
|
||||
"large_files": "Dideli failai",
|
||||
"last": "Paskutinis",
|
||||
"last_seen": "Paskutinį kartą matytas",
|
||||
"latest_version": "Naujausia versija",
|
||||
"latitude": "Platuma",
|
||||
"leave": "Išeiti",
|
||||
"leave_album": "Palikti albumą",
|
||||
"lens_model": "Lęšių modelis",
|
||||
"let_others_respond": "Leisti kitiems reaguoti",
|
||||
"level": "Lygis",
|
||||
"library": "Biblioteka",
|
||||
"library_options": "Bibliotekos pasirinktys",
|
||||
"library_page_device_albums": "Albumai įrenginyje",
|
||||
"library_page_new_album": "Naujas albumas",
|
||||
"library_page_sort_asset_count": "Elementų skaičius",
|
||||
"library_page_sort_created": "Kūrimo data",
|
||||
"library_page_sort_last_modified": "Paskutinį kartą modifikuota",
|
||||
"library_page_sort_title": "Albumo pavadinimas",
|
||||
"licenses": "Licencijos",
|
||||
"light": "Šviesi",
|
||||
"like": "Kaip",
|
||||
"like_deleted": "Kaip ištrintas",
|
||||
"link_motion_video": "Susieti judesio vaizdo įrašą",
|
||||
"link_to_oauth": "Susieti su OAuth",
|
||||
"linked_oauth_account": "Susieta OAuth paskyra",
|
||||
"list": "Sąrašas",
|
||||
"loading": "Kraunama",
|
||||
"loading_search_results_failed": "Nepavyko užkrauti paieškos rezultatų",
|
||||
"local": "Vietinis",
|
||||
"local_asset_cast_failed": "Negalima transliuoti elemento kuris neįkeltas į serverį",
|
||||
"local_assets": "Vietiniai elementai",
|
||||
"local_media_summary": "Vietinės medijos santrauka",
|
||||
"local_network": "Vietinis tinklas",
|
||||
"local_network_sheet_info": "Programa jungsis prie serverio per šį URL kai naudos pasirinktą Wi-Fi tinklą",
|
||||
"location_permission": "Vietovės leidimai",
|
||||
"location_permission_content": "Norint naudoti automatinio persijungimo opciją, Immich reikia tikslios vietovės leidimo, kad galėtų nuskaityti Wi-Fi tinklo pavadinimą",
|
||||
"location_picker_choose_on_map": "Pasirinkite žemėlapyje",
|
||||
"location_picker_latitude_error": "Įveskite tinkamą platumą",
|
||||
"location_picker_latitude_hint": "Įveskite platumą čia",
|
||||
"location_picker_longitude_error": "Įveskite tinkamą ilgumą",
|
||||
"location_picker_longitude_hint": "Įveskite ilgumą čia",
|
||||
"lock": "Užrakinti",
|
||||
"locked_folder": "Užrakintas aplankas",
|
||||
"log_detail_title": "Žurnalo detalės",
|
||||
"log_out": "Atsijungti",
|
||||
"log_out_all_devices": "Atsijungti iš visų įrenginių",
|
||||
"logged_in_as": "Prisijungta kaip {user}",
|
||||
"logged_out_all_devices": "Atsijungta iš visų įrenginių",
|
||||
"logged_out_device": "Atsijungta nuo įrenginio",
|
||||
"login": "Prisijungti",
|
||||
"login_disabled": "Prisijungimas neįgalintas",
|
||||
"login_form_api_exception": "API išimtis. Patikrinkite serverio URL ir bandykite dar kartą.",
|
||||
"login_form_back_button_text": "Atgal",
|
||||
"login_form_email_hint": "jusupastas@email.com",
|
||||
"login_form_endpoint_hint": "http://jusu-serverio-ip:port",
|
||||
"login_form_endpoint_url": "Serverio galutinio taško URL",
|
||||
"login_form_err_http": "Prašome nurodyti http:// arba https://",
|
||||
"login_form_err_invalid_email": "Neteisingas el. paštas",
|
||||
"login_form_err_invalid_url": "Neteisingas URL",
|
||||
"login_form_err_leading_whitespace": "Pradinis tarpas",
|
||||
"login_form_err_trailing_whitespace": "Galinis tarpas",
|
||||
"login_form_failed_get_oauth_server_config": "Klaida prisijungiant su OAuth, patikrinkite serverio URL",
|
||||
"login_form_failed_get_oauth_server_disable": "Serveryje OAuth funkcija negalima",
|
||||
"login_form_failed_login": "Klaida prisijungiant, patikrinkite serverio URL, el. paštą ir slaptažodį",
|
||||
"login_form_handshake_exception": "Įvyko serverio patvirtinimo išimtis. Jei naudojate savarankiškai pasirašytą sertifikatą, nustatymuose įjunkite savarankiškai pasirašyto sertifikato palaikymą.",
|
||||
"login_form_password_hint": "slaptažodis",
|
||||
"login_form_save_login": "Likti prisijungus",
|
||||
"login_form_server_empty": "Įveskite serverio URL.",
|
||||
"login_form_server_error": "Nepavyko prisijungti prie serverio.",
|
||||
"login_has_been_disabled": "Prisijungimas išjungtas.",
|
||||
"login_password_changed_error": "Įvyko klaida atnaujinant jūsų slaptažodį",
|
||||
"login_password_changed_success": "Slaptažodis sėkmingai atnaujintas",
|
||||
"logout_all_device_confirmation": "Ar tikrai norite atsijungti iš visų įrenginių?",
|
||||
"logout_this_device_confirmation": "Ar tikrai norite atsijungti iš šio prietaiso?",
|
||||
"logs": "Žurnalas",
|
||||
"longitude": "Ilguma",
|
||||
"look": "Išvaizda",
|
||||
"loop_videos": "Kartoti vaizdo įrašus",
|
||||
"loop_videos_description": "Įgalinti automatinį vaizdo įrašo rodymą iš naujo detalių peržiūroje.",
|
||||
"main_branch_warning": "Jūs naudojate kūrėjo versiją, mes stipriai rekomenduojame naudoti galutinę versiją!",
|
||||
"main_menu": "Pagrindinis meniu",
|
||||
"make": "Gamintojas",
|
||||
"manage_geolocation": "Tvarkyti vietovę",
|
||||
"manage_shared_links": "Bendrinimo nuorodų tvarkymas",
|
||||
"manage_sharing_with_partners": "Valdyti dalijimąsi su partneriais",
|
||||
"manage_the_app_settings": "Valdyti programos nustatymus",
|
||||
|
|
@ -1182,15 +1293,41 @@
|
|||
"manage_your_oauth_connection": "Tvarkyti OAuth prisijungimą",
|
||||
"map": "Žemėlapis",
|
||||
"map_assets_in_bounds": "{count, plural, =0 {Nuotraukų nėra} one {# nuotrauka} other {# nuotraukos}}",
|
||||
"map_cannot_get_user_location": "Negalime gauti naudotojo vietovės",
|
||||
"map_location_dialog_yes": "Taip",
|
||||
"map_location_picker_page_use_location": "Naudoti šią vietovę",
|
||||
"map_location_service_disabled_content": "Vietovės servisas turi būti įjungtas, kad rodytų elementus iš dabartinės vietovės. Įjungti vietovės servisą?",
|
||||
"map_location_service_disabled_title": "Vietovės servisas išjungtas",
|
||||
"map_marker_for_images": "Žemėlapio žymeklis nuotraukoms yra {city}, {country}",
|
||||
"map_marker_with_image": "Žemėlapio žymeklis su nuotrauka",
|
||||
"map_no_location_permission_content": "Reikalingas vietovės leidimas, kad rodytų elementus iš dabartinės vietovės. Ar norite suteikti leidimą?",
|
||||
"map_no_location_permission_title": "Vietovės leidimas atmestas",
|
||||
"map_settings": "Žemėlapio nustatymai",
|
||||
"map_settings_dark_mode": "Tamsi tema",
|
||||
"map_settings_date_range_option_day": "Pastarosios 24 valandos",
|
||||
"map_settings_date_range_option_days": "Pastarąsias {days} dienas",
|
||||
"map_settings_date_range_option_year": "Pastarieji metai",
|
||||
"map_settings_date_range_option_years": "Pastaruosius {years} metus",
|
||||
"map_settings_dialog_title": "Žemėlapio nustatymai",
|
||||
"map_settings_include_show_archived": "Įtraukti archyvuotus",
|
||||
"map_settings_include_show_partners": "Pridėti partneriai",
|
||||
"map_settings_only_show_favorites": "Rodyti tik mėgstamiausius",
|
||||
"map_settings_theme_settings": "Žemėlapio tema",
|
||||
"map_zoom_to_see_photos": "Atitolinkite, kad matytumėte nuotraukas",
|
||||
"mark_all_as_read": "Pažymėti viską kaip perskaitytą",
|
||||
"mark_as_read": "Pažymėti kaip perskaitytą",
|
||||
"marked_all_as_read": "Viskas pažymėta kaip perskaityta",
|
||||
"matches": "Atitikmenys",
|
||||
"matching_assets": "Atitinkantys elementai",
|
||||
"media_type": "Laikmenos tipas",
|
||||
"memories": "Atsiminimai",
|
||||
"memories_all_caught_up": "Jau viskas peržiūrėta",
|
||||
"memories_check_back_tomorrow": "Užsukite rytoj, kad pamatytumėte daugiau prisiminimų",
|
||||
"memories_setting_description": "Valdyti tai, ką matote savo prisiminimuose",
|
||||
"memory": "Atmintis",
|
||||
"memories_start_over": "Pradėti iš naujo",
|
||||
"memories_swipe_to_close": "Perbraukite į viršų norėdami uždaryti",
|
||||
"memory": "Prisiminimai",
|
||||
"memory_lane_title": "Prisiminimų juosta {title}",
|
||||
"menu": "Meniu",
|
||||
"merge": "Sujungti",
|
||||
"merge_people": "Sujungti asmenis",
|
||||
|
|
@ -1200,24 +1337,40 @@
|
|||
"merged_people_count": "{count, plural, one {Sujungtas # asmuo} few {Sujungti # asmenys} other {Sujungta # asmenų}}",
|
||||
"minimize": "Sumažinti",
|
||||
"minute": "Minutė",
|
||||
"minutes": "Minutės",
|
||||
"missing": "Trūkstami",
|
||||
"model": "Modelis",
|
||||
"month": "Mėnesis",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Daugiau",
|
||||
"move": "Perkelti",
|
||||
"move_off_locked_folder": "Ištraukti iš užrakinto aplanko",
|
||||
"move_to_lock_folder_action_prompt": "{count} įkelta į užrakintą aplanką",
|
||||
"move_to_locked_folder": "Įtraukti į užrakintą aplanką",
|
||||
"move_to_locked_folder_confirmation": "Šios nuotraukos ir vaizdo įrašai bus pašalinti iš visų albumų ir bus matomi tik užrakintame aplanke",
|
||||
"moved_to_archive": "{count, plural, one {# Elementas perkeltas} few {# Elementai perkelti} other {# Elementų perkelta}} į archyvą",
|
||||
"moved_to_library": "{count, plural, one {# Elementas perkeltas} few {# Elementai perkelti} other {# Elementų perkelta}} į biblioteką",
|
||||
"moved_to_trash": "Perkelta į šiukšliadėžę",
|
||||
"multiselect_grid_edit_date_time_err_read_only": "Negalima redaguoti tik skaitomo elemento datos, praleidžiama",
|
||||
"multiselect_grid_edit_gps_err_read_only": "Negalima redaguoti tik skaitomo elemento vietovės, praleidžiama",
|
||||
"mute_memories": "Užtildyti prisiminimus",
|
||||
"my_albums": "Mano albumai",
|
||||
"name": "Vardas",
|
||||
"name_or_nickname": "Vardas arba slapyvardis",
|
||||
"network_requirement_photos_upload": "Naudoti mobilų internetą atsarginėms nuotraukų kopijoms",
|
||||
"network_requirement_videos_upload": "Naudoti mobilų internetą atsarginėms vaizdo įrašų kopijoms",
|
||||
"network_requirements": "Tinklo reikalavimai",
|
||||
"network_requirements_updated": "Tinklo reikalavimai pakeisti, atstatoma atsarginio kopijavimo eilė",
|
||||
"networking_settings": "Tinklai",
|
||||
"networking_subtitle": "Tvarkyti serverio galutinio taško nustatymus",
|
||||
"never": "Niekada",
|
||||
"new_album": "Naujas albumas",
|
||||
"new_api_key": "Naujas API raktas",
|
||||
"new_password": "Naujas slaptažodis",
|
||||
"new_person": "Naujas asmuo",
|
||||
"new_pin_code": "Naujas PIN kodas",
|
||||
"new_pin_code_subtitle": "Tai pirmas kartas, kai naudojate užrakinto aplanko funkciją. Nustatykite PIN kodą savo užrakintam aplankui",
|
||||
"new_timeline": "Nauja laiko juosta",
|
||||
"new_user_created": "Naujas naudotojas sukurtas",
|
||||
"new_version_available": "PRIEINAMA NAUJA VERSIJA",
|
||||
"newest_first": "Pirmiausia naujausi",
|
||||
|
|
@ -1229,33 +1382,68 @@
|
|||
"no_albums_yet": "Atrodo, kad dar neturite albumų.",
|
||||
"no_archived_assets_message": "Suarchyvuokite nuotraukas ir vaizdo įrašus, kad jie nebūtų rodomi nuotraukų rodinyje",
|
||||
"no_assets_message": "SPUSTELĖKITE NORĖDAMI ĮKELTI PIRMĄJĄ NUOTRAUKĄ",
|
||||
"no_assets_to_show": "Nėra rodomų elementų",
|
||||
"no_cast_devices_found": "Nerasta transliavimo įrenginių",
|
||||
"no_checksum_local": "Kontrolinė suma nepasiekiama – negalima gauti vietinių elementų",
|
||||
"no_checksum_remote": "Kontrolinė suma nepasiekiama – negalima gauti nuotolinių elementų",
|
||||
"no_duplicates_found": "Dublikatų nerasta.",
|
||||
"no_exif_info_available": "Nėra Exif informacijos",
|
||||
"no_explore_results_message": "Įkelkite daugiau nuotraukų ir tyrinėkite savo kolekciją.",
|
||||
"no_favorites_message": "Pridėti į mėgstamiausius, kad greitai rastum geriausias nuotraukas ir vaizdo įrašus",
|
||||
"no_libraries_message": "Sukurkite išorinę biblioteką nuotraukoms ir vaizdo įrašams peržiūrėti",
|
||||
"no_local_assets_found": "Nerasta jokių vietinių elementų su šia kontroline suma",
|
||||
"no_locked_photos_message": "Užrakintame aplanke esančios nuotraukos ir vaizdo įrašai yra paslėpti ir nematomi naršant ir ieškant.",
|
||||
"no_name": "Be vardo",
|
||||
"no_results": "Nerasta",
|
||||
"no_notifications": "Pranešimų nėra",
|
||||
"no_people_found": "Ieškomų žmonių nerasta",
|
||||
"no_places": "Vietovių nėra",
|
||||
"no_remote_assets_found": "Nerasta jokių nuotolinių elementų su šia kontroline suma",
|
||||
"no_results": "Rezultatų nerasta",
|
||||
"no_results_description": "Pabandykite sinonimą arba bendresnį raktažodį",
|
||||
"no_shared_albums_message": "Sukurkite nuotraukų ar vaizdo įrašų albumą dalinimuisi su žmonėmis jūsų tinkle",
|
||||
"no_uploads_in_progress": "Nėra vykstančių įkėlimų",
|
||||
"not_available": "Nepasiekiamas",
|
||||
"not_in_any_album": "Nė viename albume",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Pastaba: Priskirti Saugyklos Žymą prie ankčiau įkeltų ištekliu, paleiskite šį",
|
||||
"not_selected": "Nepasirinkta",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Pastaba: Priskirti Saugyklos Žymą prie anksčiau įkeltų ištekliu, paleiskite šį",
|
||||
"notes": "Pastabos",
|
||||
"nothing_here_yet": "Kol kas tuščia",
|
||||
"notification_permission_dialog_content": "Pranešimų įgalinimui eikite į Nustatymus ir pasirinkite Leisti.",
|
||||
"notification_permission_list_tile_content": "Suteikti leidimą pranešimų įgalinimui.",
|
||||
"notification_permission_list_tile_enable_button": "Įgalinti pranešimus",
|
||||
"notification_permission_list_tile_title": "Pranešimų leidimai",
|
||||
"notification_toggle_setting_description": "Įjungti el. pašto pranešimus",
|
||||
"notifications": "Pranešimai",
|
||||
"notifications_setting_description": "Tvarkyti pranešimus",
|
||||
"oauth": "OAuth",
|
||||
"official_immich_resources": "Oficialūs Immich ištekliai",
|
||||
"offline": "Neprisijungęs",
|
||||
"offset": "Ofsetas",
|
||||
"ok": "Ok",
|
||||
"oldest_first": "Seniausias pirmas",
|
||||
"on_this_device": "Šiame įrenginyje",
|
||||
"onboarding": "Įdarbinimas",
|
||||
"onboarding_locale_description": "Pasirinkite pageidaujamą kalbą. Vėliau ją galėsite pakeisti nustatymuose.",
|
||||
"onboarding_privacy_description": "Sekančios (neprivalomos) funkcijos remiasi išorinėmis paslaugomis ir gali būti bet kada išjungtos nustatymuose.",
|
||||
"onboarding_server_welcome_description": "Nustatykime jūsų programą su dažniausiai naudojamais nustatymais.",
|
||||
"onboarding_theme_description": "Pasirinkite temos spalvą. Vėliau galite pasikeisti ją nustatymuose.",
|
||||
"onboarding_user_welcome_description": "Pradėkime!",
|
||||
"onboarding_welcome_user": "Sveiki atvykę, {user}",
|
||||
"online": "Prisijungęs",
|
||||
"only_favorites": "Tik mėgstamiausi",
|
||||
"open": "Atverti",
|
||||
"open_in_map_view": "Atverti žemėlapio peržiūroje",
|
||||
"open_in_openstreetmap": "Atverti per OpenStreetMap",
|
||||
"open_the_search_filters": "Atidaryti paieškos filtrus",
|
||||
"options": "Pasirinktys",
|
||||
"or": "arba",
|
||||
"organize_into_albums": "Sutvarkyti į albumus",
|
||||
"organize_into_albums_description": "Sukelti egzistuojančias nuotraukas į albumus naudojant dabartinius sinchronizavimo nustatymus",
|
||||
"organize_your_library": "Tvarkykite savo biblioteką",
|
||||
"original": "Originalas",
|
||||
"other": "Kiti",
|
||||
"other_devices": "Kiti įrenginiai",
|
||||
"other_entities": "Kiti subjektai",
|
||||
"other_variables": "Kiti kintamieji",
|
||||
"owned": "Nuosavi",
|
||||
"owner": "Savininkas",
|
||||
|
|
@ -1263,13 +1451,27 @@
|
|||
"partner_can_access": "{partner} gali naudotis",
|
||||
"partner_can_access_assets": "Visos jūsų nuotraukos ir vaizdo įrašai, išskyrus archyvuotus ir ištrintus",
|
||||
"partner_can_access_location": "Vieta, kurioje darytos nuotraukos",
|
||||
"partner_list_user_photos": "{user} nuotraukos",
|
||||
"partner_list_view_all": "Žiūrėti viską",
|
||||
"partner_page_empty_message": "Jūsų nuotraukomis dar nesidalinama su jokiu partneriu.",
|
||||
"partner_page_no_more_users": "Nėra daugiau naudotojų pridėjimui",
|
||||
"partner_page_partner_add_failed": "Nepavyko pridėti partnerio",
|
||||
"partner_page_select_partner": "Pasirinkite partnerį",
|
||||
"partner_page_shared_to_title": "Dalinamasi su",
|
||||
"partner_page_stop_sharing_content": "{partner} daugiau nebegalės pasiekti jūsų nuotraukų.",
|
||||
"partner_sharing": "Dalinimasis su partneriu",
|
||||
"partners": "Partneriai",
|
||||
"password": "Slaptažodis",
|
||||
"password_does_not_match": "Slaptažodis nesutampa",
|
||||
"password_required": "Reikalingas slaptažodis",
|
||||
"password_reset_success": "Slaptažodis sėkmingai atkurtas",
|
||||
"past_durations": {
|
||||
"days": "Per {days, plural, one {pastarąją dieną} few {# pastarąsias dienas} other {# pastarųjų dienų}}",
|
||||
"hours": "Per {hours, plural, one {pastarąją valandą} few{# pastarąsias valandas} other {# pastarųjų valandų}}",
|
||||
"years": "Per {years, plural, one {pastaruosius metus} few{# pastaruosius metus} other {# pastarųjų metų}}"
|
||||
},
|
||||
"path": "Kelias",
|
||||
"pattern": "Raštas",
|
||||
"pause": "Sustabdyti",
|
||||
"pause_memories": "Pristabdyti atsiminimus",
|
||||
"paused": "Sustabdyta",
|
||||
|
|
@ -1278,27 +1480,73 @@
|
|||
"people_edits_count": "{count, plural, one {Redaguotas # asmuo} few {Redaguoti # asmenys} other {Redaguota # asmenų}}",
|
||||
"people_feature_description": "Peržiūrėkite nuotraukas ir vaizdo įrašus sugrupuotus pagal asmenis",
|
||||
"people_sidebar_description": "Rodyti asmenų rodinio nuorodą šoninėje juostoje",
|
||||
"permanent_deletion_warning": "Ištrynimo visam laikui perspėjimas",
|
||||
"permanent_deletion_warning_setting_description": "Rodyti perspėjimą kai elementas ištrinamas visam laikui",
|
||||
"permanently_delete": "Ištrinti visam laikui",
|
||||
"permanently_delete_assets_count": "Visam laikui ištrinti {count, plural, one {# elementą} few {# elementus} other {# elementų}}",
|
||||
"permanently_delete_assets_prompt": "Ar tikrai norite visam laikui ištrinti {count, plural, one {šitą elementą?} few {šituos <b>#</b> elementus?} other {šitų <b>#</b> elementų?}} Tuo pačiu {count, plural, one {jis bus pašalintas} other {jie bus pašalinti}} iš albumo.",
|
||||
"permanently_deleted_asset": "Visiškai ištrinti elementai",
|
||||
"permanently_deleted_assets_count": "Visam laikui {count, plural, one {ištrintas # elementas} few {ištrinti # elementai} other {ištrinta # elementų}}",
|
||||
"permission": "Leidimas",
|
||||
"permission_empty": "Jūsų leidimas neturėtų būti tuščias",
|
||||
"permission_onboarding_back": "Atgal",
|
||||
"permission_onboarding_continue_anyway": "Vis tiek tęsti",
|
||||
"permission_onboarding_get_started": "Pradėkite",
|
||||
"permission_onboarding_go_to_settings": "Eiti į nustatymus",
|
||||
"permission_onboarding_permission_denied": "Leidimas nesuteiktas. Norėdami naudoti Immich, suteikite nuotraukų ir vaizdo įrašų leidimus nustatymuose.",
|
||||
"permission_onboarding_permission_granted": "Leidimas suteiktas! jūs pasiruošę.",
|
||||
"permission_onboarding_permission_limited": "Leidimai apriboti. Norėdami leisti Immich kurti atsargines kopijas ir tvarkyti visą jūsų galerijos kolekciją, suteikite nuotraukų ir vaizdo įrašų leidimus nustatymuose.",
|
||||
"permission_onboarding_request": "Immich reikalingas leidimas peržiūrėti jūsų nuotraukas ir vaizdo įrašus.",
|
||||
"person": "Asmuo",
|
||||
"person_age_months": "{months, plural, one {# mėnesio} other {# mėnesių}} amžiaus",
|
||||
"person_age_year_months": "1 metų ir {months, plural, one {# mėnesio} other {# mėnesių}} amžiaus",
|
||||
"person_age_years": "{years, plural, other {# metų}} amžiaus",
|
||||
"person_birthdate": "Gimė {date}",
|
||||
"person_hidden": "{name}{hidden, select, true { (paslėptas)} other {}}",
|
||||
"photo_shared_all_users": "Panašu, kad savo nuotraukomis pasidalijote su visais naudotojais arba neturite naudotojų, su kuriais galėtumėte jomis pasidalyti.",
|
||||
"photos": "Nuotraukos",
|
||||
"photos_and_videos": "Nuotraukos ir vaizdo įrašai",
|
||||
"photos_count": "{count, plural, one {{count, number} nuotrauka} few {{count, number} nuotraukos} other {{count, number} nuotraukų}}",
|
||||
"photos_from_previous_years": "Ankstesnių metų nuotraukos",
|
||||
"pick_a_location": "Išsirinkite vietovę",
|
||||
"pin_code_changed_successfully": "PIN kodas pakeistas sėkmingai",
|
||||
"pin_code_reset_successfully": "PIN kodas sėkmingai atstatytas",
|
||||
"pin_code_setup_successfully": "PIN kodas sėkmingai nustatytas",
|
||||
"pin_verification": "PIN kodo patvirtinimas",
|
||||
"place": "Vieta",
|
||||
"places": "Vietos",
|
||||
"places_count": "{count, plural, one {{count, number} Vieta} few{{count, number} Vietos} other {{count, number} Vietų}}",
|
||||
"play": "Paleisti",
|
||||
"play_memories": "Leisti atsiminimus",
|
||||
"play_motion_photo": "Rodyti judančias nuotraukas",
|
||||
"play_or_pause_video": "Rodyti arba sustabdyti vaizdo įrašą",
|
||||
"please_auth_to_access": "Prašome patvirtinti prisijungimą",
|
||||
"port": "Portas",
|
||||
"preferences_settings_subtitle": "Tvarkyti programos nuostatas",
|
||||
"preferences_settings_title": "Nuostatos",
|
||||
"preset": "Šablonas",
|
||||
"preview": "Peržiūra",
|
||||
"previous": "Buvęs",
|
||||
"previous_memory": "Buvęs prisiminimas",
|
||||
"previous_or_next_day": "Dieną pirmyn/atgal",
|
||||
"previous_or_next_month": "Mėnesį pirmyn/atgal",
|
||||
"previous_or_next_photo": "Nuotrauką pirmyn/atgal",
|
||||
"previous_or_next_year": "Metus pirmyn/atgal",
|
||||
"primary": "Pirminis",
|
||||
"privacy": "Privatumas",
|
||||
"profile": "Profilis",
|
||||
"profile_drawer_app_logs": "Logai",
|
||||
"profile_drawer_client_out_of_date_major": "Mobili aplikacija jau pasenusios versijos. Prašome atsinaujinti į paskutinę didžiąją versiją.",
|
||||
"profile_drawer_client_out_of_date_minor": "Mobili aplikacija jau pasenusios versijos. Prašome atsinaujinti į paskutinę mažąją versiją.",
|
||||
"profile_drawer_client_server_up_to_date": "Klientas ir Serveris yra atnaujinti",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_readonly_mode": "Tik skaitymo rėžimas įgalintas. Ilgai paspauskite vartotojo ikoną išėjimui.",
|
||||
"profile_drawer_server_out_of_date_major": "Serveris jau yra pasenusios versijos. Prašome atsinaujinti į paskutinę didžiąją versiją.",
|
||||
"profile_drawer_server_out_of_date_minor": "Serveris jau yra pasenusios versijos. Prašome atsinaujinti į paskutinę mažąją versiją.",
|
||||
"profile_image_of_user": "{user} profilio nuotrauka",
|
||||
"profile_picture_set": "Profilio nuotrauka nustatyta.",
|
||||
"public_album": "Viešas albumas",
|
||||
"public_share": "Viešas dilinimasis",
|
||||
"purchase_account_info": "Rėmėjas",
|
||||
"purchase_activated_subtitle": "Dėkojame, kad remiate Immich ir atviro kodo programinę įrangą",
|
||||
"purchase_activated_time": "Suaktyvinta {date}",
|
||||
|
|
@ -1313,6 +1561,7 @@
|
|||
"purchase_failed_activation": "Nepavyko suaktyvinti! Patikrinkite el. paštą, ar turite teisingo produkto koda!",
|
||||
"purchase_individual_description_1": "Asmeniui",
|
||||
"purchase_individual_description_2": "Rėmėjo statusas",
|
||||
"purchase_individual_title": "Asmeninis",
|
||||
"purchase_input_suggestion": "Turite produkto raktą? Įveskite jį žemiau",
|
||||
"purchase_license_subtitle": "Įsigykite „Immich“, kad palaikytumėte tolesnį paslaugos vystymą",
|
||||
"purchase_lifetime_description": "Pirkimas visam gyvenimui",
|
||||
|
|
|
|||
11
i18n/lv.json
11
i18n/lv.json
|
|
@ -231,8 +231,6 @@
|
|||
"admin_password": "Administratora parole",
|
||||
"administration": "Administrēšana",
|
||||
"advanced": "Papildu",
|
||||
"advanced_settings_beta_timeline_subtitle": "Izmēģini jauno lietotnes pieredzi",
|
||||
"advanced_settings_beta_timeline_title": "Bēta laika skala",
|
||||
"advanced_settings_log_level_title": "Žurnalēšanas līmenis: {level}",
|
||||
"advanced_settings_prefer_remote_subtitle": "Dažās ierīcēs sīktēli no ierīcē esošajiem resursiem tiek ielādēti ļoti lēni. Aktivizējiet šo iestatījumu, lai tā vietā ielādētu attālus attēlus.",
|
||||
"advanced_settings_prefer_remote_title": "Dot priekšroku attāliem attēliem",
|
||||
|
|
@ -328,6 +326,7 @@
|
|||
"automatic_endpoint_switching_title": "Automātiska URL pārslēgšana",
|
||||
"autoplay_slideshow": "Automātiska slaidrādes atskaņošana",
|
||||
"back": "Atpakaļ",
|
||||
"background_options": "Fona opcijas",
|
||||
"backup": "Dublēšana",
|
||||
"backup_album_selection_page_albums_device": "Albumi ierīcē ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Pieskarieties, lai iekļautu, veiciet dubultskārienu, lai izslēgtu",
|
||||
|
|
@ -335,6 +334,7 @@
|
|||
"backup_album_selection_page_select_albums": "Atlasīt albumus",
|
||||
"backup_album_selection_page_selection_info": "Atlases informācija",
|
||||
"backup_album_selection_page_total_assets": "Unikālo failu kopsumma",
|
||||
"backup_albums_sync": "Dublēšanas albumu sinhronizācija",
|
||||
"backup_all": "Viss",
|
||||
"backup_background_service_backup_failed_message": "Neizdevās dublēt līdzekļus. Notiek atkārtota mēģināšana…",
|
||||
"backup_background_service_connection_failed_message": "Neizdevās izveidot savienojumu ar serveri. Notiek atkārtota mēģināšana…",
|
||||
|
|
@ -436,6 +436,8 @@
|
|||
"change_password_form_password_mismatch": "Paroles nesakrīt",
|
||||
"change_password_form_reenter_new_password": "Atkārtoti ievadīt jaunu paroli",
|
||||
"change_pin_code": "Nomainīt PIN kodu",
|
||||
"charging": "Lādē",
|
||||
"charging_requirement_mobile_backup": "Fona dublēšanai nepieciešams, lai ierīce tiktu lādēta",
|
||||
"check_corrupt_asset_backup_button": "Veikt pārbaudi",
|
||||
"choose_matching_people_to_merge": "Izvēlies atbilstošas personas apvienošanai",
|
||||
"city": "Pilsēta",
|
||||
|
|
@ -601,6 +603,7 @@
|
|||
"enter_your_pin_code_subtitle": "Ievadi savu PIN kodu, lai piekļūtu slēgtajai mapei",
|
||||
"error": "Kļūda",
|
||||
"error_change_sort_album": "Neizdevās nomainīt albuma kārtošanas secību",
|
||||
"error_loading_partners": "Kļūda, ielādējot partnerus: {error}",
|
||||
"error_saving_image": "Kļūda: {error}",
|
||||
"errors": {
|
||||
"cant_get_faces": "Nevar iegūt sejas",
|
||||
|
|
@ -664,6 +667,7 @@
|
|||
"favorite": "Izlase",
|
||||
"favorites": "Izlase",
|
||||
"favorites_page_no_favorites": "Nav atrasti iecienītākie faili",
|
||||
"features_in_development": "Izstrādes stadijā esošas funkcijas",
|
||||
"features_setting_description": "Lietotnes funkciju pārvaldība",
|
||||
"file_name": "Faila nosaukums",
|
||||
"file_name_or_extension": "Faila nosaukums vai paplašinājums",
|
||||
|
|
@ -894,6 +898,7 @@
|
|||
"name_or_nickname": "Vārds vai iesauka",
|
||||
"network_requirement_photos_upload": "Izmantot mobilo datu pārraidi, lai dublētu fotoattēlus",
|
||||
"network_requirement_videos_upload": "Izmantot mobilo datu pārraidi, lai dublētu video",
|
||||
"network_requirements": "Tīkla prasības",
|
||||
"networking_subtitle": "Pārvaldīt servera galapunktu iestatījumus",
|
||||
"never": "nekad",
|
||||
"new_album": "Jauns albums",
|
||||
|
|
@ -1054,6 +1059,7 @@
|
|||
"rating_description": "Rādīt EXIF vērtējumu informācijas panelī",
|
||||
"reaction_options": "Reakcijas iespējas",
|
||||
"read_changelog": "Lasīt izmaiņu sarakstu",
|
||||
"ready_for_upload": "Gatavs augšupielādei",
|
||||
"recently_added_page_title": "Nesen Pievienotais",
|
||||
"refresh": "Atsvaidzināt",
|
||||
"refresh_faces": "Atsvaidzināt sejas",
|
||||
|
|
@ -1268,6 +1274,7 @@
|
|||
"show_slideshow_transition": "Rādīt slīdrādes pāreju",
|
||||
"show_supporter_badge": "Atbalstītāja nozīmīte",
|
||||
"show_supporter_badge_description": "Rādīt atbalstītāja nozīmīti",
|
||||
"show_text_search_menu": "Rādīt teksta meklēšanas izvēlni",
|
||||
"shuffle": "Jaukta",
|
||||
"sidebar": "Sānu josla",
|
||||
"sidebar_display_description": "Parādīt saiti uz skatu sānu joslā",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"add_a_location": "Додади локација",
|
||||
"add_a_name": "Додади име",
|
||||
"add_a_title": "Додади наслов",
|
||||
"add_birthday": "Додади роденден",
|
||||
"add_exclusion_pattern": "Додади шаблон за исклучување",
|
||||
"add_import_path": "Додади патека за импортирање",
|
||||
"add_location": "Додади локација",
|
||||
|
|
@ -23,6 +24,9 @@
|
|||
"add_photos": "Додади слики",
|
||||
"add_to": "Додади во…",
|
||||
"add_to_album": "Додади во албум",
|
||||
"add_to_album_bottom_sheet_added": "Додадено во {album}",
|
||||
"add_to_albums": "Додади во албуми",
|
||||
"add_to_albums_count": "Додади во албуми ({count})",
|
||||
"add_to_shared_album": "Додади во споделен албум",
|
||||
"add_url": "Додади URL",
|
||||
"added_to_archive": "Додадено во архива",
|
||||
|
|
@ -30,13 +34,14 @@
|
|||
"added_to_favorites_count": "Додадени {count, number} во омилени",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Додади шаблони за исклучување. Поддржано е користење на glob со *, **, и ?. За да се игнорираат сите датотеки во кој било директориум именуван \"Raw\", користи \"**/Raw/**\". За да се игнорираат сите датотеки што завршуваат со \".tif\", користи \"**/*.tif\". За да се игнорира апсолутна патека, користи \"/path/to/ignore/**\".",
|
||||
"admin_user": "Административен Корисник",
|
||||
"asset_offline_description": "Ова средство од екстерна библиотека веќе не е пронајдено на дискот и е преместено во ѓубре. Ако датотеката била преместена во рамките на библиотеката, проверете ја вашата временска линија за новото соодветно средство. За да го вратите ова средство, осигурајте се дека долунаведената патека може да биде пристапена од Immich и скенирајте ја библиотеката.",
|
||||
"authentication_settings": "Поставки за автентикација",
|
||||
"authentication_settings_description": "Управувај со лозинки, OAuth, и други поставки за автентикација",
|
||||
"authentication_settings_disable_all": "Дали сте сигурни дека сакате да ги исклучите сите методи за најава? Целосно ќе биде оневозможено најавување.",
|
||||
"authentication_settings_reenable": "За повторно да овозможите, искористете <link>Сервер команда</link>.",
|
||||
"background_task_job": "Позадински задачи",
|
||||
"backup_database": "Резервна копија од базата на податоци",
|
||||
"backup_database": "Креирај резервна копија од базата на податоци",
|
||||
"backup_database_enable_description": "Овозможи резервни копии од базата на податоци",
|
||||
"backup_keep_last_amount": "Количина на претходни резервни копии за чување",
|
||||
"backup_settings": "Поставки за резервни копии",
|
||||
|
|
|
|||
|
|
@ -383,8 +383,6 @@
|
|||
"admin_password": "प्रशासक पासवर्ड",
|
||||
"administration": "प्रशासन",
|
||||
"advanced": "प्रगत",
|
||||
"advanced_settings_beta_timeline_subtitle": "नवीन ॲप अनुभव वापरून पहा",
|
||||
"advanced_settings_beta_timeline_title": "बीटा टाईमलाईन",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "सिंक दरम्यान वैकल्पिक निकषांवर आधारित मीडिया फिल्टर करण्यासाठी हा पर्याय वापरा. ॲप सर्व अल्बम ओळखण्यात समस्या येत असल्यासच वापरा.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[प्रयोगात्मक] उपकरण-आधारित अल्बम सिंक फिल्टर वापरा",
|
||||
"advanced_settings_log_level_title": "लॉग पातळी: {level}",
|
||||
|
|
|
|||
|
|
@ -14,6 +14,7 @@
|
|||
"add_a_location": "Tambah lokasi",
|
||||
"add_a_name": "Tambah nama",
|
||||
"add_a_title": "Tambah tajuk",
|
||||
"add_birthday": "Tambah hari jadi",
|
||||
"add_endpoint": "Tambah titik akhir",
|
||||
"add_exclusion_pattern": "Tambahkan corak pengecualian",
|
||||
"add_import_path": "Tambahkan laluan import",
|
||||
|
|
@ -27,6 +28,8 @@
|
|||
"add_to_album": "Tambah ke album",
|
||||
"add_to_album_bottom_sheet_added": "Dimasukkan ke {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Sudah ada di {album}",
|
||||
"add_to_albums": "Tambah pada album",
|
||||
"add_to_albums_count": "Tambah pada album ({count})",
|
||||
"add_to_shared_album": "Tambah ke album yang dikongsi",
|
||||
"add_url": "Tambah URL",
|
||||
"added_to_archive": "Tambah ke arkib",
|
||||
|
|
@ -44,6 +47,9 @@
|
|||
"backup_database": "Buat Salinan Pangkalan Data",
|
||||
"backup_database_enable_description": "Dayakan salinan pangkalan data",
|
||||
"backup_keep_last_amount": "Jumlah salinan pangkalan data sebelumnya untuk disimpan",
|
||||
"backup_onboarding_1_description": "salinan luar tapak di awan atau di lokasi fizikal lain",
|
||||
"backup_onboarding_2_description": "salinan tempatan pada peranti yang berbeza. Ini termasuk fail utama dan sandaran fail tersebut secara setempat.",
|
||||
"backup_onboarding_3_description": "jumlah salinan data anda, termasuk fail asal. Ini termasuk 1 salinan luar tapak dan 2 salinan tempatan.",
|
||||
"backup_settings": "Tetapan Salinan Pangkalan Data",
|
||||
"backup_settings_description": "Urus tetapan salinan pangkalan data.",
|
||||
"cleared_jobs": "Kerja telah dibersihkan untuk: {job}",
|
||||
|
|
@ -373,8 +379,6 @@
|
|||
"admin_password": "Kata laluan Pentadbir",
|
||||
"administration": "Pentadbiran",
|
||||
"advanced": "Lanjutan",
|
||||
"advanced_settings_beta_timeline_subtitle": "Cuba pengalaman aplikasi baharu",
|
||||
"advanced_settings_beta_timeline_title": "Garis masa beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Gunakan pilihan ini untuk menapis media semasa penyegerakan berdasarkan kriteria alternatif. Hanya cuba jika anda menghadapi masalah dengan aplikasi mengesan semua album.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTAL] Gunakan penapis penyelarasan album peranti alternatif",
|
||||
"advanced_settings_log_level_title": "Tahap log: {level}",
|
||||
|
|
|
|||
|
|
@ -122,7 +122,14 @@
|
|||
"library_watching_settings_description": "Se automatisk etter endrede filer",
|
||||
"logging_enable_description": "Aktiver logging",
|
||||
"logging_level_description": "Hvis aktivert, hvilket loggnivå som skal brukes.",
|
||||
"logging_settings": "Logger",
|
||||
"logging_settings": "Loggføring",
|
||||
"machine_learning_availability_checks": "Tilgjengelighetssjekk",
|
||||
"machine_learning_availability_checks_description": "Automatisk oppdag og velg tilgjengelige maskinlæring-servere",
|
||||
"machine_learning_availability_checks_enabled": "Aktiver tilgjengelighetssjekk",
|
||||
"machine_learning_availability_checks_interval": "Sjekkintervall",
|
||||
"machine_learning_availability_checks_interval_description": "Interval i millisekunder mellom tilgjengelighetssjekk",
|
||||
"machine_learning_availability_checks_timeout": "Forespørselstimeout",
|
||||
"machine_learning_availability_checks_timeout_description": "Tidsavbrudd i millisekunder for tilgjengelighetssjekk",
|
||||
"machine_learning_clip_model": "Clip-modell",
|
||||
"machine_learning_clip_model_description": "Navnet på en CLIP-modell finnes <link>her</link>. Merk at du må kjøre 'Smart Søk'-jobben på nytt for alle bilder etter at du har endret modell.",
|
||||
"machine_learning_duplicate_detection": "Duplikatsøk",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administrator Passord",
|
||||
"administration": "Administrasjon",
|
||||
"advanced": "Avansert",
|
||||
"advanced_settings_beta_timeline_subtitle": "Prøv den nye app opplevelsen",
|
||||
"advanced_settings_beta_timeline_title": "Beta tidslinje",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Bruk denne innstillingen for å filtrere mediefiler under synkronisering basert på alternative kriterier. Bruk kun denne innstillingen dersom man opplever problemer med at applikasjonen ikke oppdager alle album.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTELT] Bruk alternativ enhet album synk filter",
|
||||
"advanced_settings_log_level_title": "Loggnivå: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Er du sikker på at du vil fjerne {user}?",
|
||||
"album_search_not_found": "Ingen album ble funnet som traff ditt søk",
|
||||
"album_share_no_users": "Ser ut til at du har delt dette albumet med alle brukere, eller du ikke har noen brukere å dele det med.",
|
||||
"album_summary": "Oppsummering av album",
|
||||
"album_updated": "Album oppdatert",
|
||||
"album_updated_setting_description": "Motta e-postvarsling når et delt album får nye filer",
|
||||
"album_user_left": "Forlot {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Objekt(er) gjenopprettet",
|
||||
"asset_skipped": "Hoppet over",
|
||||
"asset_skipped_in_trash": "I søppelbøtten",
|
||||
"asset_trashed": "Objekt slettet",
|
||||
"asset_troubleshoot": "Feilsøk objekt",
|
||||
"asset_uploaded": "Lastet opp",
|
||||
"asset_uploading": "Laster opp…",
|
||||
"asset_viewer_settings_subtitle": "Endre dine visningsinnstillinger for galleriet",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Autoavspilling av lysbildefremvisning",
|
||||
"back": "Tilbake",
|
||||
"back_close_deselect": "Tilbake, lukk eller fjern merking",
|
||||
"background_backup_running_error": "Bakgrunnsbackup kjører, kan ikke starte manuell backup",
|
||||
"background_location_permission": "Bakgrunnstillatelse for plassering",
|
||||
"background_location_permission_content": "For å bytte nettverk når du kjører i bakgrunnen, må Immich *alltid* ha presis posisjonstilgang slik at appen kan lese Wi-Fi-nettverkets navn",
|
||||
"background_options": "Bakgrunnsinnstillinger",
|
||||
"backup": "Sikkerhetskopiering",
|
||||
"backup_album_selection_page_albums_device": "Album på enhet ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Trykk for å inkludere, dobbelttrykk for å ekskludere",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Velg album",
|
||||
"backup_album_selection_page_selection_info": "Valginformasjon",
|
||||
"backup_album_selection_page_total_assets": "Totalt antall unike objekter",
|
||||
"backup_albums_sync": "Synkronisering av sikkerhetskopialbum",
|
||||
"backup_all": "Alle",
|
||||
"backup_background_service_backup_failed_message": "Sikkerhetskopiering av objekter feilet. Prøver på nytt…",
|
||||
"backup_background_service_connection_failed_message": "Tilkobling til server feilet. Prøver på nytt…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Endre PIN kode",
|
||||
"change_your_password": "Endre passordet ditt",
|
||||
"changed_visibility_successfully": "Endret synlighet vellykket",
|
||||
"charging": "Lading",
|
||||
"charging_requirement_mobile_backup": "Bakgrunnsbackup krever at enheten lader",
|
||||
"check_corrupt_asset_backup": "Sjekk etter korrupte backupobjekter",
|
||||
"check_corrupt_asset_backup_button": "Utfør sjekk",
|
||||
"check_corrupt_asset_backup_description": "Kjør denne sjekken kun over Wi-Fi og når alle objekter har blitt lastet opp. Denne sjekken kan ta noen minutter.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Opprett Bruker",
|
||||
"created": "Opprettet",
|
||||
"created_at": "Laget",
|
||||
"creating_linked_albums": "Oppretter sammenkoblede albumer...",
|
||||
"crop": "Beskjær",
|
||||
"curated_object_page_title": "Ting",
|
||||
"current_device": "Nåværende enhet",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Feil",
|
||||
"error_change_sort_album": "Feilet ved endring av sorteringsrekkefølge på albumer",
|
||||
"error_delete_face": "Feil ved sletting av ansikt fra aktivia",
|
||||
"error_getting_places": "Feil ved henting av steder",
|
||||
"error_loading_image": "Feil ved lasting av bilde",
|
||||
"error_loading_partners": "Feil ved lasting av partnere: {error}",
|
||||
"error_saving_image": "Feil: {error}",
|
||||
"error_tag_face_bounding_box": "Feil ved merking av ansikt - klarte ikke å få koordinatene på omrisset",
|
||||
"error_title": "Feil - Noe gikk galt",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Ingen favorittobjekter funnet",
|
||||
"feature_photo_updated": "Fremhevet bilde oppdatert",
|
||||
"features": "Funksjoner",
|
||||
"features_in_development": "Funksjoner under utvikling",
|
||||
"features_setting_description": "Administrerer funksjoner for appen",
|
||||
"file_name": "Filnavn",
|
||||
"file_name_or_extension": "Filnavn eller filtype",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokal",
|
||||
"local_asset_cast_failed": "Kan ikke caste et bilde som ikke er lastet opp til serveren",
|
||||
"local_assets": "Lokale objekter",
|
||||
"local_media_summary": "Oppsummering av lokale media",
|
||||
"local_network": "Lokalt nettverk",
|
||||
"local_network_sheet_info": "Appen vil koble til serveren via denne URL-en når du bruker det angitte Wi-Fi-nettverket",
|
||||
"location_permission": "Stedstillatelse",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Skriv inn lengdegrad her",
|
||||
"lock": "Lås",
|
||||
"locked_folder": "Låst mappe",
|
||||
"log_detail_title": "Loggdetaljer",
|
||||
"log_out": "Logg ut",
|
||||
"log_out_all_devices": "Logg ut fra alle enheter",
|
||||
"logged_in_as": "Logget inn som {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Passord oppdatert",
|
||||
"logout_all_device_confirmation": "Er du sikker på at du vil logge ut av alle enheter?",
|
||||
"logout_this_device_confirmation": "Er du sikker på at du vil logge ut av denne enheten?",
|
||||
"logs": "Logger",
|
||||
"longitude": "Lengdegrad",
|
||||
"look": "Se",
|
||||
"loop_videos": "Gjenta Videoer",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Merk som lest",
|
||||
"marked_all_as_read": "Merket alle som lest",
|
||||
"matches": "Samsvarende",
|
||||
"matching_assets": "Matchende objekter",
|
||||
"media_type": "Mediatype",
|
||||
"memories": "Minner",
|
||||
"memories_all_caught_up": "Alt utført",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Navn eller kallenavn",
|
||||
"network_requirement_photos_upload": "Bruk mobildata for backup av bilder",
|
||||
"network_requirement_videos_upload": "Bruk mobildata for backup av videoer",
|
||||
"network_requirements": "Nettverkskrav",
|
||||
"network_requirements_updated": "Nettverkskrav endret, resetter backupkø",
|
||||
"networking_settings": "Nettverk",
|
||||
"networking_subtitle": "Administrer serverendepunkt-innstillinger",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Ny person",
|
||||
"new_pin_code": "Ny PIN-kode",
|
||||
"new_pin_code_subtitle": "Dette er første gang du åpner den låste mappen. Lag en PIN-kode for å sikre tilgangen til denne siden",
|
||||
"new_timeline": "Ny tidslinje",
|
||||
"new_user_created": "Ny bruker opprettet",
|
||||
"new_version_available": "NY VERSJON TILGJENGELIG",
|
||||
"newest_first": "Nyeste først",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIKK FOR Å LASTE OPP DITT FØRSTE BILDE",
|
||||
"no_assets_to_show": "Ingen objekter å vise",
|
||||
"no_cast_devices_found": "Ingen caste-enheter oppdaget",
|
||||
"no_checksum_local": "Ingen sjekksum tilgjengelig - Kan ikke hente lokale objekter",
|
||||
"no_checksum_remote": "Ingen sjekksum tilgjengelig - Kan ikke hente eksterne objekter",
|
||||
"no_duplicates_found": "Ingen duplikater ble funnet.",
|
||||
"no_exif_info_available": "Ingen EXIF-informasjon tilgjengelig",
|
||||
"no_explore_results_message": "Last opp flere bilder for å utforske samlingen din.",
|
||||
"no_favorites_message": "Legg til favoritter for å finne dine beste bilder og videoer raskt",
|
||||
"no_libraries_message": "Opprett et eksternt bibliotek for å se bildene og videoene dine",
|
||||
"no_local_assets_found": "Ingen lokale objekter funnet med denne sjekksummen",
|
||||
"no_locked_photos_message": "Bilder og videoer i den låste mappen er skjult og vil ikke vises når du blar i biblioteket.",
|
||||
"no_name": "Ingen navn",
|
||||
"no_notifications": "Ingen varsler",
|
||||
"no_people_found": "Ingen samsvarende personer funnet",
|
||||
"no_places": "Ingen steder",
|
||||
"no_remote_assets_found": "Ingen eksterne objekter funnet med denne sjekksummen",
|
||||
"no_results": "Ingen resultater",
|
||||
"no_results_description": "Prøv et synonym eller mer generelt søkeord",
|
||||
"no_shared_albums_message": "Opprett et album for å dele bilder og videoer med personer i nettverket ditt",
|
||||
"no_uploads_in_progress": "Ingen opplasting pågår",
|
||||
"not_available": "Ikke tilgjengelig",
|
||||
"not_in_any_album": "Ikke i noe album",
|
||||
"not_selected": "Ikke valgt",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Merk: For å bruke lagringsetiketten på tidligere opplastede filer, kjør",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Administrer appens preferanser",
|
||||
"preferences_settings_title": "Innstillinger",
|
||||
"preparing": "Forbereder",
|
||||
"preset": "Forhåndsinstilling",
|
||||
"preview": "Forhåndsvis",
|
||||
"previous": "Forrige",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Les endringslogg",
|
||||
"readonly_mode_disabled": "Skrivebeskyttet modus deaktivert",
|
||||
"readonly_mode_enabled": "Skrivebeskyttet modus aktivert",
|
||||
"ready_for_upload": "Klar for opplasting",
|
||||
"reassign": "Tilordne på nytt",
|
||||
"reassigned_assets_to_existing_person": "Flyttet {count, plural, one {# objekt} other {# objekter}} to {name, select, null {en eksisterende person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Flyttet {count, plural, one {# objekt} other {# objekter}} til en ny person",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regenererer miniatyrbilder",
|
||||
"remote": "Eksternt",
|
||||
"remote_assets": "Eksterne objekter",
|
||||
"remote_media_summary": "Oppsummering av eksterne media",
|
||||
"remove": "Fjern",
|
||||
"remove_assets_album_confirmation": "Er du sikker på at du fil slette {count, plural, one {# objekt} other {# objekter}} fra albumet?",
|
||||
"remove_assets_shared_link_confirmation": "Er du sikker på at du vil slette {count, plural, one {# objekt} other {# objekter}} fra den delte lenken?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Vis overgang til lysbildefremvisning",
|
||||
"show_supporter_badge": "Supportermerke",
|
||||
"show_supporter_badge_description": "Vis et supportermerke",
|
||||
"show_text_search_menu": "Vis tekstsøk meny",
|
||||
"shuffle": "Bland",
|
||||
"sidebar": "Sidefelt",
|
||||
"sidebar_display_description": "Vis en lenke for visningen i sidefeltet",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stakkspor",
|
||||
"start": "Start",
|
||||
"start_date": "Startdato",
|
||||
"start_date_before_end_date": "Startdato må være før sluttdato",
|
||||
"state": "Fylke",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stopp casting",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har ingen delte lenker",
|
||||
"your_wifi_name": "Ditt Wi-Fi-navn",
|
||||
"zoom_image": "Zoom Bilde"
|
||||
"zoom_image": "Zoom Bilde",
|
||||
"zoom_to_bounds": "Zoom til grensene"
|
||||
}
|
||||
|
|
|
|||
42
i18n/nl.json
42
i18n/nl.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Logboek inschakelen",
|
||||
"logging_level_description": "Indien ingeschakeld, welk logniveau er wordt gebruikt.",
|
||||
"logging_settings": "Logging",
|
||||
"machine_learning_availability_checks": "Beschikbaarheid",
|
||||
"machine_learning_availability_checks_description": "Automatisch detecteren en selecteren van beschikbare machine learning servers",
|
||||
"machine_learning_availability_checks_enabled": "Activeer beschikbaarheid controles",
|
||||
"machine_learning_availability_checks_interval": "Controleinterval",
|
||||
"machine_learning_availability_checks_interval_description": "Interval in milliseconden tussen beschikbaarheid checks",
|
||||
"machine_learning_availability_checks_timeout": "Verzoek time-out",
|
||||
"machine_learning_availability_checks_timeout_description": "Time-out in milliseconden voor beschikbaarheidschecks",
|
||||
"machine_learning_clip_model": "CLIP model",
|
||||
"machine_learning_clip_model_description": "De naam van een CLIP-model dat <link>hier</link> is vermeld. Let op: je moet de 'Slim Zoeken -taak opnieuw uitvoeren voor alle afbeeldingen wanneer je een model wijzigt.",
|
||||
"machine_learning_duplicate_detection": "Duplicaat detectie",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Beheerder wachtwoord",
|
||||
"administration": "Beheer",
|
||||
"advanced": "Geavanceerd",
|
||||
"advanced_settings_beta_timeline_subtitle": "Probeer de nieuwe app-ervaring",
|
||||
"advanced_settings_beta_timeline_title": "Beta tijdlijn",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Gebruik deze optie om media te filteren tijdens de synchronisatie op basis van alternatieve criteria. Gebruik dit enkel als de app problemen heeft met het detecteren van albums.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTEEL] Gebruik een alternatieve album synchronisatie filter",
|
||||
"advanced_settings_log_level_title": "Logniveau: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Weet je zeker dat je {user} wilt verwijderen?",
|
||||
"album_search_not_found": "Geen albums gevonden die aan je zoekopdracht voldoen",
|
||||
"album_share_no_users": "Het lijkt erop dat je dit album met alle gebruikers hebt gedeeld, of dat je geen gebruikers hebt om mee te delen.",
|
||||
"album_summary": "Album samenvatting",
|
||||
"album_updated": "Album bijgewerkt",
|
||||
"album_updated_setting_description": "Ontvang een e-mailmelding wanneer een gedeeld album nieuwe items heeft",
|
||||
"album_user_left": "{album} verlaten",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Item succesvol hersteld",
|
||||
"asset_skipped": "Overgeslagen",
|
||||
"asset_skipped_in_trash": "In prullenbak",
|
||||
"asset_trashed": "Asset verwijderd",
|
||||
"asset_troubleshoot": "Asset probleemoplossing",
|
||||
"asset_uploaded": "Geüpload",
|
||||
"asset_uploading": "Uploaden…",
|
||||
"asset_viewer_settings_subtitle": "Beheer je instellingen voor galerijweergave",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Diavoorstelling automatisch afspelen",
|
||||
"back": "Terug",
|
||||
"back_close_deselect": "Terug, sluiten of deselecteren",
|
||||
"background_backup_running_error": "Achtergrond backup draait, handmatige backup kan niet worden gestart",
|
||||
"background_location_permission": "Achtergrond locatie toestemming",
|
||||
"background_location_permission_content": "Om van netwerk te wisselen terwijl de app op de achtergrond draait, heeft Immich *altijd* toegang tot de exacte locatie nodig om de naam van het WiFi-netwerk te kunnen lezen",
|
||||
"background_options": "Achtergrond opties",
|
||||
"backup": "Back-up",
|
||||
"backup_album_selection_page_albums_device": "Albums op apparaat ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tik om op te nemen, dubbel tik om uit te sluiten",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Selecteer albums",
|
||||
"backup_album_selection_page_selection_info": "Selectie info",
|
||||
"backup_album_selection_page_total_assets": "Totaal unieke items",
|
||||
"backup_albums_sync": "Backup albums synchronisatie",
|
||||
"backup_all": "Alle",
|
||||
"backup_background_service_backup_failed_message": "Fout bij het back-uppen van de items. Opnieuw proberen…",
|
||||
"backup_background_service_connection_failed_message": "Fout bij het verbinden met de server. Opnieuw proberen…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Wijzig PIN code",
|
||||
"change_your_password": "Wijzig je wachtwoord",
|
||||
"changed_visibility_successfully": "Zichtbaarheid succesvol gewijzigd",
|
||||
"charging": "Opladen",
|
||||
"charging_requirement_mobile_backup": "Achtergrond backup vereist dat het apparaat wordt opgeladen",
|
||||
"check_corrupt_asset_backup": "Controleer op corrupte back-ups van items",
|
||||
"check_corrupt_asset_backup_button": "Controle uitvoeren",
|
||||
"check_corrupt_asset_backup_description": "Voer deze controle alleen uit via WiFi en nadat alle items zijn geback-upt. De procedure kan een paar minuten duren.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Gebruiker aanmaken",
|
||||
"created": "Aangemaakt",
|
||||
"created_at": "Aangemaakt",
|
||||
"creating_linked_albums": "Gekoppelde albums worden aangemaakt...",
|
||||
"crop": "Bijsnijden",
|
||||
"curated_object_page_title": "Dingen",
|
||||
"current_device": "Huidig apparaat",
|
||||
|
|
@ -835,7 +849,7 @@
|
|||
"download_sucess_android": "Het bestand is gedownload naar DCIM/Immich",
|
||||
"download_waiting_to_retry": "Wachten om opnieuw te proberen",
|
||||
"downloading": "Downloaden",
|
||||
"downloading_asset_filename": "Downloading asset {filename}",
|
||||
"downloading_asset_filename": "Downloaden asset {filename}",
|
||||
"downloading_media": "Media aan het downloaden",
|
||||
"drop_files_to_upload": "Zet bestanden ergens neer om ze te uploaden",
|
||||
"duplicates": "Duplicaten",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Fout",
|
||||
"error_change_sort_album": "Sorteervolgorde van album wijzigen mislukt",
|
||||
"error_delete_face": "Fout bij verwijderen van gezicht uit het item",
|
||||
"error_getting_places": "Fout bij ophalen plaatsen",
|
||||
"error_loading_image": "Fout bij laden afbeelding",
|
||||
"error_loading_partners": "Fout bij ophalen partners: {error}",
|
||||
"error_saving_image": "Fout: {error}",
|
||||
"error_tag_face_bounding_box": "Fout bij taggen van gezicht - kan coördinaten van omvattend kader niet ophalen",
|
||||
"error_title": "Fout - Er is iets misgegaan",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Geen favoriete items gevonden",
|
||||
"feature_photo_updated": "Uitgelichte afbeelding bijgewerkt",
|
||||
"features": "Functies",
|
||||
"features_in_development": "Functies in ontwikkeling",
|
||||
"features_setting_description": "Beheer de app functies",
|
||||
"file_name": "Bestandsnaam",
|
||||
"file_name_or_extension": "Bestandsnaam of extensie",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokaal",
|
||||
"local_asset_cast_failed": "Kan geen item casten die nog niet geüpload is naar de server",
|
||||
"local_assets": "Lokale Items",
|
||||
"local_media_summary": "Lokale media samenvatting",
|
||||
"local_network": "Lokaal netwerk",
|
||||
"local_network_sheet_info": "De app maakt verbinding met de server via deze URL wanneer het opgegeven WiFi-netwerk wordt gebruikt",
|
||||
"location_permission": "Locatietoestemming",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Voer hier je lengtegraad in",
|
||||
"lock": "Vergrendel",
|
||||
"locked_folder": "Vergrendelde map",
|
||||
"log_detail_title": "Log details",
|
||||
"log_out": "Uitloggen",
|
||||
"log_out_all_devices": "Uitloggen op alle apparaten",
|
||||
"logged_in_as": "Ingelogd als {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Wachtwoord succesvol bijgewerkt",
|
||||
"logout_all_device_confirmation": "Weet je zeker dat je wilt uitloggen op alle apparaten?",
|
||||
"logout_this_device_confirmation": "Weet je zeker dat je wilt uitloggen op dit apparaat?",
|
||||
"logs": "Logs",
|
||||
"longitude": "Lengtegraad",
|
||||
"look": "Uiterlijk",
|
||||
"loop_videos": "Video's herhalen",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Markeren als gelezen",
|
||||
"marked_all_as_read": "Allen gemarkeerd als gelezen",
|
||||
"matches": "Overeenkomsten",
|
||||
"matching_assets": "Overeenkomende assets",
|
||||
"media_type": "Mediatype",
|
||||
"memories": "Herinneringen",
|
||||
"memories_all_caught_up": "Je bent helemaal bij",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Naam of gebruikersnaam",
|
||||
"network_requirement_photos_upload": "Gebruik mobiele data voor de backup van foto's",
|
||||
"network_requirement_videos_upload": "Gebruik mobiele data voor de backups van video's",
|
||||
"network_requirements": "Netwerk vereisten",
|
||||
"network_requirements_updated": "Netwerkeisen zijn gewijzigd, back-upwachtrij wordt opnieuw ingesteld",
|
||||
"networking_settings": "Netwerk",
|
||||
"networking_subtitle": "Beheer de instellingen voor de server-URL",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nieuw persoon",
|
||||
"new_pin_code": "Nieuwe PIN code",
|
||||
"new_pin_code_subtitle": "Dit is de eerste keer dat u de vergrendelde map opent. Stel een pincode in om deze pagina veilig te openen",
|
||||
"new_timeline": "Nieuwe tijdlijn",
|
||||
"new_user_created": "Nieuwe gebruiker aangemaakt",
|
||||
"new_version_available": "NIEUWE VERSIE BESCHIKBAAR",
|
||||
"newest_first": "Nieuwste eerst",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIK HIER OM JE EERSTE FOTO TE UPLOADEN",
|
||||
"no_assets_to_show": "Geen foto's om te laten zien",
|
||||
"no_cast_devices_found": "Geen cast-apparaten gevonden",
|
||||
"no_checksum_local": "Geen checksum beschikbaar - kan lokale assets niet ophalen",
|
||||
"no_checksum_remote": "Geen checksum beschikbaar - kan online assets niet ophalen",
|
||||
"no_duplicates_found": "Er zijn geen duplicaten gevonden.",
|
||||
"no_exif_info_available": "Geen exif info beschikbaar",
|
||||
"no_explore_results_message": "Upload meer foto's om je verzameling te verkennen.",
|
||||
"no_favorites_message": "Voeg favorieten toe om snel je beste foto's en video's te vinden",
|
||||
"no_libraries_message": "Maak een externe bibliotheek om je foto's en video's te bekijken",
|
||||
"no_local_assets_found": "Geen lokale assets gevonden met deze checksum",
|
||||
"no_locked_photos_message": "Foto’s en video’s in de vergrendelde map zijn verborgen en worden niet weergegeven wanneer je door je bibliotheek bladert of zoekt.",
|
||||
"no_name": "Geen naam",
|
||||
"no_notifications": "Geen meldingen",
|
||||
"no_people_found": "Geen mensen gevonden",
|
||||
"no_places": "Geen plaatsen",
|
||||
"no_remote_assets_found": "Geen online assets gevonden met deze checksum",
|
||||
"no_results": "Geen resultaten",
|
||||
"no_results_description": "Probeer een synoniem of een algemener zoekwoord",
|
||||
"no_shared_albums_message": "Maak een album om foto's en video's te delen met mensen in je netwerk",
|
||||
"no_uploads_in_progress": "Geen uploads bezig",
|
||||
"not_available": "N.B.",
|
||||
"not_in_any_album": "Niet in een album",
|
||||
"not_selected": "Niet geselecteerd",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Opmerking: om het opslaglabel toe te passen op eerder geüploade items, voer de volgende taak uit",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Poort",
|
||||
"preferences_settings_subtitle": "Beheer de voorkeuren van de app",
|
||||
"preferences_settings_title": "Voorkeuren",
|
||||
"preparing": "Voorbereiden",
|
||||
"preset": "Voorinstelling",
|
||||
"preview": "Voorbeeld",
|
||||
"previous": "Vorige",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Lees wijzigingen",
|
||||
"readonly_mode_disabled": "Alleen-lezen modus uitgeschakeld",
|
||||
"readonly_mode_enabled": "Alleen-lezen modus ingeschakeld",
|
||||
"ready_for_upload": "Klaar voor upload",
|
||||
"reassign": "Opnieuw toewijzen",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {# item} other {# items}} opnieuw toegewezen aan {name, select, null {een bestaand persoon} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {# item} other {# items}} opnieuw toegewezen aan een nieuw persoon",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Thumbnails opnieuw aan het genereren",
|
||||
"remote": "Externe",
|
||||
"remote_assets": "Externe Items",
|
||||
"remote_media_summary": "Online media samenvatting",
|
||||
"remove": "Verwijderen",
|
||||
"remove_assets_album_confirmation": "Weet je zeker dat je {count, plural, one {# item} other {# items}} uit het album wilt verwijderen?",
|
||||
"remove_assets_shared_link_confirmation": "Weet je zeker dat je {count, plural, one {# item} other {# items}} uit deze gedeelde link wilt verwijderen?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Diavoorstellingsovergang tonen",
|
||||
"show_supporter_badge": "Supportersbadge",
|
||||
"show_supporter_badge_description": "Toon een supportersbadge",
|
||||
"show_text_search_menu": "Laat tekst zoek menu zien",
|
||||
"shuffle": "Willekeurig",
|
||||
"sidebar": "Zijbalk",
|
||||
"sidebar_display_description": "Toon een link naar deze pagina in de zijbalk",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stacktrace",
|
||||
"start": "Start",
|
||||
"start_date": "Startdatum",
|
||||
"start_date_before_end_date": "Startdatum moet voor einddatum liggen",
|
||||
"state": "Staat",
|
||||
"status": "Status",
|
||||
"stop_casting": "Stop met casten",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Je hebt geen gedeelde links",
|
||||
"your_wifi_name": "Je WiFi-naam",
|
||||
"zoom_image": "Inzoomen"
|
||||
"zoom_image": "Inzoomen",
|
||||
"zoom_to_bounds": "Zoom naar randen"
|
||||
}
|
||||
|
|
|
|||
20
i18n/nn.json
20
i18n/nn.json
|
|
@ -28,6 +28,8 @@
|
|||
"add_to_album": "Legg til i album",
|
||||
"add_to_album_bottom_sheet_added": "Lagt til i {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Allereie i {album}",
|
||||
"add_to_albums": "Legg til i album",
|
||||
"add_to_albums_count": "Legg til i album ({count})",
|
||||
"add_to_shared_album": "Legg til i delt album",
|
||||
"add_url": "Legg til URL",
|
||||
"added_to_archive": "Lagt til i arkiv",
|
||||
|
|
@ -45,6 +47,7 @@
|
|||
"backup_database": "Lag tryggingskopi av database",
|
||||
"backup_database_enable_description": "Aktiver tryggingskopiering av database",
|
||||
"backup_keep_last_amount": "Antal tryggingskopiar å behalde",
|
||||
"backup_onboarding_1_description": "sikkerheitskopi i skya eller på eit anna fysisk sted.",
|
||||
"backup_onboarding_2_description": "lokale kopiar på andre einingar. Dette inkluderer hovudfilene og backup av desse filene lokalt.",
|
||||
"backup_onboarding_3_description": "fullstendige kopiar av dine data, inkludert originalfilene. Dette inkluderer 1 utomhus kopi og 2 lokale kopiar.",
|
||||
"backup_onboarding_description": "Ein <backblaze-link>3-2-1 backup-strategi</backblaze-link> tilrådast for å verne dataa dine. Du bør ha kopiar av dei opplasta bileta/videoane dine samt Immich-databasen, slik at du har ei fleirdelt backup-løysing.",
|
||||
|
|
@ -78,6 +81,7 @@
|
|||
"image_format_description": "WebP gjev mindre filstorleik enn JPEG, men er treigare å lage.",
|
||||
"image_fullsize_description": "Bilete i full storleik utan metadata, i bruk når zooma inn",
|
||||
"image_fullsize_enabled": "Skru på generering av bilete i full storleik",
|
||||
"image_fullsize_enabled_description": "Generer bilete i full storleik for ikkje web-tilpassa formatar. Når \"Foretrekk",
|
||||
"image_fullsize_quality_description": "Kvalitet på bilete i full storleik frå 1-100. Høgare er betre, men gjev større filer.",
|
||||
"image_fullsize_title": "Innstillingar for bilete i full storleik",
|
||||
"image_prefer_embedded_preview": "Bruk helst innebygd førehandsvisning",
|
||||
|
|
@ -118,6 +122,9 @@
|
|||
"logging_enable_description": "Aktiver loggføring",
|
||||
"logging_level_description": "Når aktivert, kva loggnivå å bruke.",
|
||||
"logging_settings": "Logging",
|
||||
"machine_learning_availability_checks_description": "Automatiser oppdaging og prioritet av tilgjengelege maskinlærings-serverar",
|
||||
"machine_learning_availability_checks_interval": "Sjekk intervall",
|
||||
"machine_learning_availability_checks_timeout_description": "Utløpstid i millisekund for tilgjengelegheitssjekk",
|
||||
"machine_learning_clip_model": "CLIP modell",
|
||||
"machine_learning_clip_model_description": "Namnet på ein CLIP modell finst <link>her</link>. Merk at du må køyre 'Smart Søk'-jobben på nytt for alle bilete etter du har forandra modell.",
|
||||
"machine_learning_duplicate_detection": "Duplikatdeteksjon",
|
||||
|
|
@ -139,6 +146,7 @@
|
|||
"machine_learning_min_detection_score": "Minimum deteksjonsresultat",
|
||||
"machine_learning_min_detection_score_description": "Minimum tillitspoeng for at eit ansikt skal bli oppdaga, på ein skala frå 0 til 1. Lågare verdiar vil oppdage fleire ansikt, men kan føre til feilaktige treff.",
|
||||
"machine_learning_min_recognized_faces": "Minimum gjenkjende ansikt",
|
||||
"machine_learning_min_recognized_faces_description": "Minste tal på gjenkjende fjes for å opprette ein person. Aukar ein dette, vert ansiktsgjenkjenninga meir presis, på bekostning av auka sjanse for at ansikt ikkje vert tileigna ein person.",
|
||||
"machine_learning_settings": "Innstillingar for maskinlæring",
|
||||
"machine_learning_settings_description": "Administrer maskinlæringsfunksjonar og innstillingar",
|
||||
"machine_learning_smart_search": "Smart Søk",
|
||||
|
|
@ -154,6 +162,7 @@
|
|||
"map_settings": "Kart",
|
||||
"map_settings_description": "Endre kartinnstillingar",
|
||||
"map_style_description": "URL til eit style.json-karttema",
|
||||
"memory_generate_job": "Minne-generering",
|
||||
"metadata_extraction_job": "Hent ut metadata",
|
||||
"metadata_extraction_job_description": "Hent ut metadata frå kvart bilete, slik som GPS, ansikt og oppløysing",
|
||||
"metadata_faces_import_setting": "Skru på import av ansikt",
|
||||
|
|
@ -161,6 +170,17 @@
|
|||
"metadata_settings": "Metadata Innstillinger",
|
||||
"metadata_settings_description": "Endre metadata-innstillingar",
|
||||
"migration_job": "Migrasjon",
|
||||
"migration_job_description": "Overfør miniatyrbilete for bilete og ansikt til den nyaste mappestrukturen",
|
||||
"nightly_tasks_cluster_faces_setting_description": "Køyr ansiktsgjenkjenning på nyleg identifiserte ansikt",
|
||||
"nightly_tasks_database_cleanup_setting_description": "Fjern gamal, utgått data frå databasen",
|
||||
"nightly_tasks_generate_memories_setting": "Generer minner",
|
||||
"nightly_tasks_generate_memories_setting_description": "Lag nye minner frå bilete",
|
||||
"nightly_tasks_missing_thumbnails_setting": "Generer manglande miniatyrbilete",
|
||||
"nightly_tasks_missing_thumbnails_setting_description": "Set bilete utan miniatyrbilete i kø for generering av miniatyrbilete",
|
||||
"nightly_tasks_settings": "Innstillingar for nattlege jobbar",
|
||||
"nightly_tasks_settings_description": "Handsam nattlege jobbar",
|
||||
"nightly_tasks_start_time_setting": "Starttid",
|
||||
"nightly_tasks_start_time_setting_description": "Tidspunktet serveren køyrer nattlege jobbar",
|
||||
"notification_email_from_address": "Frå adresse",
|
||||
"notification_email_test_email_failed": "Mislukka sending av test-e-post, sjekk konfigurasjonen din",
|
||||
"notification_email_test_email_sent": "Det vart sendt ei test-melding til {email}. Sjekk e-posten din.",
|
||||
|
|
|
|||
54
i18n/pl.json
54
i18n/pl.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Uruchom zapisywanie logów",
|
||||
"logging_level_description": "Kiedy włączone, jakiego poziomu użyć.",
|
||||
"logging_settings": "Rejestrowanie logów",
|
||||
"machine_learning_availability_checks": "Sprawdzanie dostępności",
|
||||
"machine_learning_availability_checks_description": "Automatyczne wykrywaj i preferuj dostępne serwery uczenia maszynowego",
|
||||
"machine_learning_availability_checks_enabled": "Włącz sprawdzanie dostępności",
|
||||
"machine_learning_availability_checks_interval": "Częstotliwość sprawdzania",
|
||||
"machine_learning_availability_checks_interval_description": "Odstęp czasu w milisekundach między sprawdzeniami dostępności",
|
||||
"machine_learning_availability_checks_timeout": "Upłynął czas żądania",
|
||||
"machine_learning_availability_checks_timeout_description": "Limit czasu żądania w milisekundach dla sprawdzania dostępności",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "Nazwa modelu CLIP jest wymieniona <link>tutaj</link>. Zwróć uwagę, że po zmianie modelu musisz ponownie uruchomić zadanie 'Smart Search' dla wszystkich obrazów.",
|
||||
"machine_learning_duplicate_detection": "Wykrywanie Duplikatów",
|
||||
|
|
@ -233,7 +240,7 @@
|
|||
"oauth_storage_quota_default": "Domyślna ilość miejsca w magazynie (GiB)",
|
||||
"oauth_storage_quota_default_description": "Limit w GiB do wykorzystania, gdy nie podano żadnej wartości.",
|
||||
"oauth_timeout": "Upłynął czas żądania",
|
||||
"oauth_timeout_description": "Limit czasu żądania (w milisekundach)",
|
||||
"oauth_timeout_description": "Limit czasu żądania w milisekundach",
|
||||
"password_enable_description": "Zaloguj używając e-mail i hasła",
|
||||
"password_settings": "Logowanie Hasłem",
|
||||
"password_settings_description": "Zarządzaj ustawieniami logowania hasłem",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Hasło Administratora",
|
||||
"administration": "Administracja",
|
||||
"advanced": "Zaawansowane",
|
||||
"advanced_settings_beta_timeline_subtitle": "Wypróbuj nową funkcjonalność aplikacji",
|
||||
"advanced_settings_beta_timeline_title": "Beta-Timeline",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Użyj tej opcji do filtrowania mediów podczas synchronizacji alternatywnych kryteriów. Używaj tylko wtedy gdy aplikacja ma problemy z wykrywaniem wszystkich albumów.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERYMENTALNE] Użyj alternatywnego filtra synchronizacji albumu",
|
||||
"advanced_settings_log_level_title": "Poziom szczegółowości dziennika: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Na pewno chcesz usunąć {user}?",
|
||||
"album_search_not_found": "Nie znaleziono albumów pasujących do Twojego wyszukiwania",
|
||||
"album_share_no_users": "Wygląda na to, że ten album albo udostępniono wszystkim użytkownikom, albo nie ma komu go udostępnić.",
|
||||
"album_summary": "Podsumowanie albumu",
|
||||
"album_updated": "Album zaktualizowany",
|
||||
"album_updated_setting_description": "Otrzymaj powiadomienie e-mail, gdy do udostępnionego Ci albumu zostaną dodane nowe zasoby",
|
||||
"album_user_left": "Opuszczono {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Zasób został pomyślnie przywrócony",
|
||||
"asset_skipped": "Pominięto",
|
||||
"asset_skipped_in_trash": "W koszu",
|
||||
"asset_trashed": "Zasób wrzucono do kosza",
|
||||
"asset_troubleshoot": "Rozwiązywanie problemów z zasobami",
|
||||
"asset_uploaded": "Przesłano",
|
||||
"asset_uploading": "Przesyłanie…",
|
||||
"asset_viewer_settings_subtitle": "Zarządzaj ustawieniami przeglądarki galerii",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatyczne odtwarzanie pokazu slajdów",
|
||||
"back": "Wstecz",
|
||||
"back_close_deselect": "Wróć, zamknij lub odznacz",
|
||||
"background_backup_running_error": "Tworzenie kopii zapasowej w tle jest obecnie w toku, nie można rozpocząć ręcznego tworzenia kopii zapasowej",
|
||||
"background_location_permission": "Uprawnienia do lokalizacji w tle",
|
||||
"background_location_permission_content": "Aby móc przełączać sieć podczas pracy w tle, Immich musi *zawsze* mieć dostęp do dokładnej lokalizacji, aby aplikacja mogła odczytać nazwę sieci Wi-Fi",
|
||||
"background_options": "Opcje w tle",
|
||||
"backup": "Kopia zapasowa",
|
||||
"backup_album_selection_page_albums_device": "Albumy na urządzeniu ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Stuknij, aby włączyć, stuknij dwukrotnie, aby wykluczyć",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Wybierz albumy",
|
||||
"backup_album_selection_page_selection_info": "Info o wyborze",
|
||||
"backup_album_selection_page_total_assets": "Łącznie unikalnych plików",
|
||||
"backup_albums_sync": "Synchronizacja kopii zapasowych albumów",
|
||||
"backup_all": "Wszystkie",
|
||||
"backup_background_service_backup_failed_message": "Nie udało się wykonać kopii zapasowej zasobów. Ponowna próba…",
|
||||
"backup_background_service_connection_failed_message": "Nie udało się połączyć z serwerem. Ponowna próba…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Zmień kod PIN",
|
||||
"change_your_password": "Zmień swoje hasło",
|
||||
"changed_visibility_successfully": "Pomyślnie zmieniono widoczność",
|
||||
"charging": "Ładowanie",
|
||||
"charging_requirement_mobile_backup": "Tworzenie kopii zapasowej w tle wymaga by urządzenie było podłączone do ładowania",
|
||||
"check_corrupt_asset_backup": "Sprawdź, czy kopie zapasowe zasobów nie są uszkodzone",
|
||||
"check_corrupt_asset_backup_button": "Wykonaj sprawdzenie",
|
||||
"check_corrupt_asset_backup_description": "Uruchom sprawdzenie tylko przez Wi-Fi i po utworzeniu kopii zapasowej wszystkich zasobów. Procedura może potrwać kilka minut.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Stwórz użytkownika",
|
||||
"created": "Utworzono",
|
||||
"created_at": "Utworzony",
|
||||
"creating_linked_albums": "Tworzenie połączonych albumów...",
|
||||
"crop": "Przytnij",
|
||||
"curated_object_page_title": "Rzeczy",
|
||||
"current_device": "Obecne urządzenie",
|
||||
|
|
@ -888,8 +902,10 @@
|
|||
"enter_your_pin_code_subtitle": "Wprowadź twój kod PIN, aby uzyskać dostęp do folderu zablokowanego",
|
||||
"error": "Błąd",
|
||||
"error_change_sort_album": "Nie udało się zmienić kolejności sortowania albumów",
|
||||
"error_delete_face": "Wystąpił błąd podczas usuwania twarzy z zasobów",
|
||||
"error_delete_face": "Błąd podczas usuwania twarzy z zasobów",
|
||||
"error_getting_places": "Błąd podczas pozyskiwania lokalizacji",
|
||||
"error_loading_image": "Błąd podczas ładowania zdjęcia",
|
||||
"error_loading_partners": "Błąd podczas ładowania partnerów: {error}",
|
||||
"error_saving_image": "Błąd: {error}",
|
||||
"error_tag_face_bounding_box": "Błąd przy dodawaniu etykiety dla tej twarzy - nie może uzyskać współrzędnych granicznych",
|
||||
"error_title": "Błąd - Coś poszło nie tak",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Nie znaleziono ulubionych zasobów",
|
||||
"feature_photo_updated": "Zdjęcie główne zaktualizowane pomyślnie",
|
||||
"features": "Funkcje",
|
||||
"features_in_development": "Funkcje w fazie rozwoju",
|
||||
"features_setting_description": "Zarządzaj funkcjami aplikacji",
|
||||
"file_name": "Nazwa pliku",
|
||||
"file_name_or_extension": "Nazwie lub rozszerzeniu pliku",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokalny",
|
||||
"local_asset_cast_failed": "Nie można strumieniować zasobu, który nie został przesłany na serwer",
|
||||
"local_assets": "Zasoby lokalne",
|
||||
"local_media_summary": "Podsumowanie lokalnych mediów",
|
||||
"local_network": "Sieć lokalna",
|
||||
"local_network_sheet_info": "Aplikacja połączy się z serwerem za pośrednictwem tego adresu URL podczas korzystania z określonej sieci Wi-Fi",
|
||||
"location_permission": "Zezwolenie na lokalizację",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Wpisz tutaj swoją długość geograficzną",
|
||||
"lock": "Zablokuj",
|
||||
"locked_folder": "Folder zablokowany",
|
||||
"log_detail_title": "Szczegóły dziennika",
|
||||
"log_out": "Wyloguj",
|
||||
"log_out_all_devices": "Wyloguj ze Wszystkich Urządzeń",
|
||||
"logged_in_as": "Zalogowano jako {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Hasło zostało zmienione",
|
||||
"logout_all_device_confirmation": "Czy na pewno chcesz wylogować się ze wszystkich urządzeń?",
|
||||
"logout_this_device_confirmation": "Czy na pewno chcesz wylogować to urządzenie?",
|
||||
"logs": "Logi",
|
||||
"longitude": "Długość geograficzna",
|
||||
"look": "Wygląd",
|
||||
"loop_videos": "Powtarzaj filmy",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Zaznacz jako odczytane",
|
||||
"marked_all_as_read": "Zaznaczono wszystkie jako przeczytane",
|
||||
"matches": "Powiązania",
|
||||
"matching_assets": "Pasujące zasoby",
|
||||
"media_type": "Typ zasobu",
|
||||
"memories": "Wspomnienia",
|
||||
"memories_all_caught_up": "Wszystko złapane",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nazwa lub pseudonim",
|
||||
"network_requirement_photos_upload": "Używaj danych komórkowych do tworzenia kopii zapasowych zdjęć",
|
||||
"network_requirement_videos_upload": "Używaj danych komórkowych do tworzenia kopii zapasowych filmów",
|
||||
"network_requirements": "Wymagania sieciowe",
|
||||
"network_requirements_updated": "Zmieniono wymagania sieciowe, resetowanie kolejki kopii zapasowych",
|
||||
"networking_settings": "Sieć",
|
||||
"networking_subtitle": "Zarządzaj ustawieniami punktu końcowego serwera",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nowa osoba",
|
||||
"new_pin_code": "Nowy kod PIN",
|
||||
"new_pin_code_subtitle": "Jest to pierwszy raz, kiedy wchodzisz do folderu zablokowanego. Utwórz kod PIN, aby bezpiecznie korzystać z tej strony",
|
||||
"new_timeline": "Nowa oś czasu",
|
||||
"new_user_created": "Pomyślnie stworzono nowego użytkownika",
|
||||
"new_version_available": "NOWA WERSJA DOSTĘPNA",
|
||||
"newest_first": "Od najnowszych",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIKNIJ, ABY WYSŁAĆ PIERWSZE ZDJĘCIE",
|
||||
"no_assets_to_show": "Brak zasobów do pokazania",
|
||||
"no_cast_devices_found": "Nie znaleziono urządzeń do przesyłania strumieniowego",
|
||||
"no_checksum_local": "Brak sumy kontrolnej - nie można pobrać lokalnych zasobów",
|
||||
"no_checksum_remote": "Brak sumy kontrolnej - nie można pobrać zdalnego zasobu",
|
||||
"no_duplicates_found": "Nie znaleziono duplikatów.",
|
||||
"no_exif_info_available": "Nie znaleziono informacji exif",
|
||||
"no_explore_results_message": "Prześlij więcej zdjęć, aby przeglądać swój zbiór.",
|
||||
"no_favorites_message": "Dodaj ulubione aby szybko znaleźć swoje najlepsze zdjęcia i filmy",
|
||||
"no_libraries_message": "Stwórz bibliotekę zewnętrzną, aby przeglądać swoje zdjęcia i filmy",
|
||||
"no_local_assets_found": "Nie znaleziono żadnych lokalnych zasobów o tej sumie kontrolnej",
|
||||
"no_locked_photos_message": "Zdjęcia i filmy w folderze zablokowanym są ukryte i nie będą wyświetlane podczas przeglądania biblioteki.",
|
||||
"no_name": "Brak Nazwy",
|
||||
"no_notifications": "Brak powiadomień",
|
||||
"no_people_found": "Brak pasujących osób",
|
||||
"no_places": "Brak miejsc",
|
||||
"no_remote_assets_found": "Nie znaleziono żadnych zdalnych zasobów o tej sumie kontrolnej",
|
||||
"no_results": "Brak wyników",
|
||||
"no_results_description": "Spróbuj użyć synonimu lub bardziej ogólnego słowa kluczowego",
|
||||
"no_shared_albums_message": "Stwórz album aby udostępnić zdjęcia i filmy osobom w Twojej sieci",
|
||||
"no_uploads_in_progress": "Brak przesyłań w toku",
|
||||
"not_available": "Nie dotyczy",
|
||||
"not_in_any_album": "Bez albumu",
|
||||
"not_selected": "Nie wybrano",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Uwaga: Aby przypisać etykietę magazynowania do wcześniej przesłanych zasobów, uruchom",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Zarządzaj preferencjami aplikacji",
|
||||
"preferences_settings_title": "Ustawienia",
|
||||
"preparing": "Przygotowywanie",
|
||||
"preset": "Ustawienie",
|
||||
"preview": "Podgląd",
|
||||
"previous": "Poprzedni",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Zobacz Zmiany",
|
||||
"readonly_mode_disabled": "Tryb tylko do odczytu wyłączony",
|
||||
"readonly_mode_enabled": "Tryb tylko do odczytu włączony",
|
||||
"ready_for_upload": "Gotowe do przesłania",
|
||||
"reassign": "Przypisz ponownie",
|
||||
"reassigned_assets_to_existing_person": "Przypisano ponownie {count, plural, one {# zasób} other {# zasobów}} do {name, select, null {istniejącej osoby} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Przypisano ponownie {count, plural, one {# zasób} other {# zasobów}} do nowej osoby",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regenerowanie miniatur",
|
||||
"remote": "Zdalny",
|
||||
"remote_assets": "Zasoby zdalne",
|
||||
"remote_media_summary": "Podsumowanie mediów zdalnych",
|
||||
"remove": "Usuń",
|
||||
"remove_assets_album_confirmation": "Czy na pewno chcesz usunąć {count, plural, one {# zasób} few {# zasoby} other {# zasobów}} z albumu?",
|
||||
"remove_assets_shared_link_confirmation": "Czy na pewno chcesz usunąć {count, plural, one {# zasób} other {# zasoby}} z tego udostępnionego linku?",
|
||||
|
|
@ -1601,8 +1632,8 @@
|
|||
"remove_from_locked_folder": "Usuń z folderu zablokowanego",
|
||||
"remove_from_locked_folder_confirmation": "Czy na pewno chcesz przenieść te zdjęcia i filmy z folderu zablokowanego? Będą one widoczne w bibliotece.",
|
||||
"remove_from_shared_link": "Usuń z udostępnionego linku",
|
||||
"remove_memory": "Usuń pamięć",
|
||||
"remove_photo_from_memory": "Usuń zdjęcia z tej pamięci",
|
||||
"remove_memory": "Usuń wspomnienie",
|
||||
"remove_photo_from_memory": "Usuń zdjęcia z tych wspomnień",
|
||||
"remove_tag": "Usuń tag",
|
||||
"remove_url": "Usuń URL",
|
||||
"remove_user": "Usuń użytkownika",
|
||||
|
|
@ -1610,15 +1641,15 @@
|
|||
"removed_from_archive": "Usunięto z archiwum",
|
||||
"removed_from_favorites": "Usunięto z ulubionych",
|
||||
"removed_from_favorites_count": "{count, plural, other {Usunięto #}} z ulubionych",
|
||||
"removed_memory": "Pamięć została usunięta",
|
||||
"removed_photo_from_memory": "Usunięto zdjęcie z pamięci",
|
||||
"removed_memory": "Wspomnienie usunięte",
|
||||
"removed_photo_from_memory": "Usunięto zdjęcie ze wspomnień",
|
||||
"removed_tagged_assets": "Usunięto etykietę z {count, plural, one {# zasobu} other {# zasobów}}",
|
||||
"rename": "Zmień nazwę",
|
||||
"repair": "Napraw",
|
||||
"repair_no_results_message": "Tutaj pojawią się nieśledzone i brakujące pliki",
|
||||
"replace_with_upload": "Prześlij nową wersję",
|
||||
"repository": "Repozytorium",
|
||||
"require_password": "Wymagaj hasło",
|
||||
"require_password": "Wymagaj hasła",
|
||||
"require_user_to_change_password_on_first_login": "Zmuś użytkownika do zmiany hasła podczas następnego logowania",
|
||||
"rescan": "Ponowne skanowanie",
|
||||
"reset": "Reset",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Pokaż przejście pokazu slajdów",
|
||||
"show_supporter_badge": "Odznaka wspierającego",
|
||||
"show_supporter_badge_description": "Pokaż odznakę wspierającego",
|
||||
"show_text_search_menu": "Pokaż menu wyszukiwania tekstowego",
|
||||
"shuffle": "Losuj",
|
||||
"sidebar": "Panel boczny",
|
||||
"sidebar_display_description": "Wyświetl link do widoku w pasku bocznym",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Ślad stosu",
|
||||
"start": "Start",
|
||||
"start_date": "Od dnia",
|
||||
"start_date_before_end_date": "Data początkowa musi być wcześniejsza niż data końcowa",
|
||||
"state": "Województwo",
|
||||
"status": "Status",
|
||||
"stop_casting": "Zatrzymaj strumieniowanie",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Tak",
|
||||
"you_dont_have_any_shared_links": "Nie masz żadnych udostępnionych linków",
|
||||
"your_wifi_name": "Twoja nazwa Wi-Fi",
|
||||
"zoom_image": "Powiększ obraz"
|
||||
"zoom_image": "Powiększ obraz",
|
||||
"zoom_to_bounds": "Powiększ do krawędzi"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -123,6 +123,12 @@
|
|||
"logging_enable_description": "Ativar registo",
|
||||
"logging_level_description": "Quando ativado, qual o nível de log a usar.",
|
||||
"logging_settings": "Registo",
|
||||
"machine_learning_availability_checks": "Verificação de disponibilidade",
|
||||
"machine_learning_availability_checks_description": "Detectar automaticamente e dar preferência aos servidores de aprendizagem automática disponíveis",
|
||||
"machine_learning_availability_checks_enabled": "Activar confirmações de disponibilidade",
|
||||
"machine_learning_availability_checks_interval": "Confirmação de intervalo",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalo, em milisegundos, entre confirmações de disponibilidade",
|
||||
"machine_learning_availability_checks_timeout": "Tempo limite para requisição",
|
||||
"machine_learning_clip_model": "Modelo CLIP",
|
||||
"machine_learning_clip_model_description": "O nome do modelo CLIP definido <link>aqui</link>. Tome nota de que é necessário voltar a executar a tarefa de \"Pesquisa Inteligente\" para todas as imagens depois de alterar o modelo.",
|
||||
"machine_learning_duplicate_detection": "Deteção de Itens Duplicados",
|
||||
|
|
@ -387,8 +393,6 @@
|
|||
"admin_password": "Palavra-passe do administrador",
|
||||
"administration": "Administração",
|
||||
"advanced": "Avançado",
|
||||
"advanced_settings_beta_timeline_subtitle": "Experimente as novas funcionalidades da aplicação",
|
||||
"advanced_settings_beta_timeline_title": "Linha temporal da versão Beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilize esta definição para filtrar ficheiros durante a sincronização baseada em critérios alternativos. Utilize apenas se a aplicação estiver com problemas a detetar todos os álbuns.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Utilizar um filtro alternativo de sincronização de álbuns em dispositivos",
|
||||
"advanced_settings_log_level_title": "Nível de registo: {level}",
|
||||
|
|
@ -425,6 +429,7 @@
|
|||
"album_remove_user_confirmation": "Tem a certeza de que quer remover {user}?",
|
||||
"album_search_not_found": "Nenhum álbum encontrado segundo a pesquisa",
|
||||
"album_share_no_users": "Parece que tem este álbum partilhado com todos os utilizadores ou que não existem utilizadores com quem o partilhar.",
|
||||
"album_summary": "Resumo do álbum",
|
||||
"album_updated": "Álbum atualizado",
|
||||
"album_updated_setting_description": "Receber uma notificação por e-mail quando um álbum partilhado tiver novos ficheiros",
|
||||
"album_user_left": "Saíu do {album}",
|
||||
|
|
|
|||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Habilitar logs",
|
||||
"logging_level_description": "Quando ativado, qual nível de log usar.",
|
||||
"logging_settings": "Logs",
|
||||
"machine_learning_availability_checks": "Verficações de disponibilidade",
|
||||
"machine_learning_availability_checks_description": "Automaticamente detectar e preferir servidores de machine learning disponíveis",
|
||||
"machine_learning_availability_checks_enabled": "Habilitar verificações de disponibilidade",
|
||||
"machine_learning_availability_checks_interval": "Intervalo de verificação",
|
||||
"machine_learning_availability_checks_interval_description": "Intervalo em milisegundos entre verificações de disponibilidade",
|
||||
"machine_learning_availability_checks_timeout": "Tempo limite da solicitação",
|
||||
"machine_learning_availability_checks_timeout_description": "Tempo limite em milisegundos para verificações de disponibilidade",
|
||||
"machine_learning_clip_model": "Modelo CLIP",
|
||||
"machine_learning_clip_model_description": "O nome de um modelo CLIP listado <link>aqui</link>. Lembre-se de executar novamente a tarefa de 'Pesquisa Inteligente' para todas as imagens após alterar o modelo.",
|
||||
"machine_learning_duplicate_detection": "Detecção de duplicidade",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Senha do administrador",
|
||||
"administration": "Administração",
|
||||
"advanced": "Avançado",
|
||||
"advanced_settings_beta_timeline_subtitle": "Teste a nova interface do aplicativo",
|
||||
"advanced_settings_beta_timeline_title": "Linha do tempo Beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Use esta opção para filtrar mídias durante a sincronização com base em critérios alternativos. Tente esta opção somente se o aplicativo estiver com problemas para detectar todos os álbuns.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Utilizar filtro alternativo de sincronização de álbum de dispositivo",
|
||||
"advanced_settings_log_level_title": "Nível de log: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Tem certeza de que deseja remover {user}?",
|
||||
"album_search_not_found": "Não há álbum que corresponda à sua pesquisa",
|
||||
"album_share_no_users": "Parece que você já compartilhou este álbum com todos os usuários ou não há nenhum usuário para compartilhar.",
|
||||
"album_summary": "Resumo do álbum",
|
||||
"album_updated": "Álbum atualizado",
|
||||
"album_updated_setting_description": "Receba uma notificação por e-mail quando um álbum compartilhado tiver novos recursos",
|
||||
"album_user_left": "Saiu do álbum {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Arquivo restaurado",
|
||||
"asset_skipped": "Ignorado",
|
||||
"asset_skipped_in_trash": "Na lixeira",
|
||||
"asset_trashed": "Arquivo enviado para a lixeira",
|
||||
"asset_troubleshoot": "Diagnóstico do arquivo",
|
||||
"asset_uploaded": "Enviado",
|
||||
"asset_uploading": "Enviando…",
|
||||
"asset_viewer_settings_subtitle": "Gerenciar as configurações do visualizador da galeria",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Apresentação de slides automática",
|
||||
"back": "Voltar",
|
||||
"back_close_deselect": "Voltar, fechar ou desmarcar",
|
||||
"background_backup_running_error": "Não é possível iniciar o backup manual agora pois o backup em segundo plano já está sendo executado",
|
||||
"background_location_permission": "Permissão de localização em segundo plano",
|
||||
"background_location_permission_content": "Para que seja possível trocar o endereço quando estiver executando em segundo plano, o Immich deve *sempre* ter a permissão de localização precisa para que o aplicativo consiga ler o nome da rede Wi-Fi",
|
||||
"background_options": "Opções de Plano de Fundo",
|
||||
"backup": "Backup",
|
||||
"backup_album_selection_page_albums_device": "Álbuns no dispositivo ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Toque para incluir, toque duas vezes para excluir",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Selecionar álbuns",
|
||||
"backup_album_selection_page_selection_info": "Informações da Seleção",
|
||||
"backup_album_selection_page_total_assets": "Total de recursos exclusivos",
|
||||
"backup_albums_sync": "Backup de sincronização de álbuns",
|
||||
"backup_all": "Todos",
|
||||
"backup_background_service_backup_failed_message": "Falha ao fazer backup. Tentando novamente…",
|
||||
"backup_background_service_connection_failed_message": "Falha na conexão com o servidor. Tentando novamente…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Alterar código PIN",
|
||||
"change_your_password": "Alterar sua senha",
|
||||
"changed_visibility_successfully": "Visibilidade alterada com sucesso",
|
||||
"charging": "Carregando",
|
||||
"charging_requirement_mobile_backup": "Backups em plano de fundo requerem que o dispositivo esteja sendo carregado",
|
||||
"check_corrupt_asset_backup": "Verifique se há backups corrompidos",
|
||||
"check_corrupt_asset_backup_button": "Verificar",
|
||||
"check_corrupt_asset_backup_description": "Execute esta verificação somente em uma rede Wi-Fi e quando o backup de todos os arquivos já estiver concluído. O processo demora alguns minutos.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Criar usuário",
|
||||
"created": "Criado",
|
||||
"created_at": "Criado em",
|
||||
"creating_linked_albums": "Criando álbuns relacionados...",
|
||||
"crop": "Cortar",
|
||||
"curated_object_page_title": "Objetos",
|
||||
"current_device": "Dispositivo atual",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Erro",
|
||||
"error_change_sort_album": "Falha ao alterar a ordem de exibição",
|
||||
"error_delete_face": "Erro ao remover face do arquivo",
|
||||
"error_getting_places": "Erro ao buscar os locais",
|
||||
"error_loading_image": "Erro ao carregar a página",
|
||||
"error_loading_partners": "Erro ao carregar parceiros: {error}",
|
||||
"error_saving_image": "Erro: {error}",
|
||||
"error_tag_face_bounding_box": "Erro ao marcar o rosto - não foi possível localizar o rosto",
|
||||
"error_title": "Erro - Algo deu errado",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Nenhuma mídia favorita encontrada",
|
||||
"feature_photo_updated": "Foto principal atualizada",
|
||||
"features": "Funcionalidades",
|
||||
"features_in_development": "Funções em desenvolvimento",
|
||||
"features_setting_description": "Gerenciar as funcionalidades da aplicação",
|
||||
"file_name": "Nome do arquivo",
|
||||
"file_name_or_extension": "Nome do arquivo ou extensão",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Local",
|
||||
"local_asset_cast_failed": "Não é possível transmitir um arquivo que não foi enviado ao servidor",
|
||||
"local_assets": "Arquivos no dispositivo",
|
||||
"local_media_summary": "Resumo das mídias locais",
|
||||
"local_network": "Rede local",
|
||||
"local_network_sheet_info": "O aplicativo irá se conectar ao servidor através deste endereço quando estiver na rede Wi-Fi especificada",
|
||||
"location_permission": "Permissão de localização",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Digite a longitude",
|
||||
"lock": "Trancar",
|
||||
"locked_folder": "Pasta com senha",
|
||||
"log_detail_title": "Detalhes do Log",
|
||||
"log_out": "Sair",
|
||||
"log_out_all_devices": "Sair de todos dispositivos",
|
||||
"logged_in_as": "Usuário atual: {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Senha atualizada com sucesso",
|
||||
"logout_all_device_confirmation": "Tem certeza de que deseja sair de todos os dispositivos?",
|
||||
"logout_this_device_confirmation": "Tem certeza de que deseja sair deste dispositivo?",
|
||||
"logs": "Logs",
|
||||
"longitude": "Longitude",
|
||||
"look": "Estilo",
|
||||
"loop_videos": "Repetir vídeos",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Marcar como lido",
|
||||
"marked_all_as_read": "Tudo marcado como lido",
|
||||
"matches": "Correspondências",
|
||||
"matching_assets": "Arquivos encontrados",
|
||||
"media_type": "Tipo de mídia",
|
||||
"memories": "Memórias",
|
||||
"memories_all_caught_up": "Finalizamos por hoje",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Nome ou apelido",
|
||||
"network_requirement_photos_upload": "Use a rede móvel para enviar fotos",
|
||||
"network_requirement_videos_upload": "Use a rede móvel para enviar vídeos",
|
||||
"network_requirements": "Requerimentos de Rede",
|
||||
"network_requirements_updated": "Requerimentos de rede alterados, reiniciando a fila de envio",
|
||||
"networking_settings": "Conexões",
|
||||
"networking_subtitle": "Gerencie as conexões ao servidor",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nova Pessoa",
|
||||
"new_pin_code": "Novo código PIN",
|
||||
"new_pin_code_subtitle": "Esta é a primeira vez que está acessando a pasta com senha. Crie um código PIN para acessar esta página de forma segura",
|
||||
"new_timeline": "Nova Linha do Tempo",
|
||||
"new_user_created": "Novo usuário criado",
|
||||
"new_version_available": "NOVA VERSÃO DISPONÍVEL",
|
||||
"newest_first": "Mais recente primeiro",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "CLIQUE PARA ENVIAR SUA PRIMEIRA FOTO",
|
||||
"no_assets_to_show": "Não há arquivos para exibir",
|
||||
"no_cast_devices_found": "Nenhum dispositivo encontrado",
|
||||
"no_checksum_local": "Nenhum checksum disponível - não foi possível carregar os arquivos locais",
|
||||
"no_checksum_remote": "Nenhum checksum disponível - não foi possível carregar os arquivos remotos",
|
||||
"no_duplicates_found": "Nenhuma duplicidade foi encontrada.",
|
||||
"no_exif_info_available": "Sem informações exif disponíveis",
|
||||
"no_explore_results_message": "Envie mais fotos para explorar sua coleção.",
|
||||
"no_favorites_message": "Adicione aos favoritos para encontrar suas melhores fotos e vídeos rapidamente",
|
||||
"no_libraries_message": "Crie uma biblioteca externa para ver suas fotos e vídeos",
|
||||
"no_local_assets_found": "Nenhum arquivo local foi encontrado com este checksum",
|
||||
"no_locked_photos_message": "Fotos e vídeos na pasta com senha são ocultos e não serão exibidos enquanto explora ou pesquisa na biblioteca.",
|
||||
"no_name": "Sem Nome",
|
||||
"no_notifications": "Nenhuma notificação",
|
||||
"no_people_found": "Nenhuma pessoa encontrada",
|
||||
"no_places": "Sem lugares",
|
||||
"no_remote_assets_found": "Nenhum arquivo remoto foi encontrado com este checksum",
|
||||
"no_results": "Sem resultados",
|
||||
"no_results_description": "Tente um sinônimo ou uma palavra-chave mais geral",
|
||||
"no_shared_albums_message": "Crie um álbum para compartilhar fotos e vídeos com pessoas em sua rede",
|
||||
"no_uploads_in_progress": "Nenhum envio em progresso",
|
||||
"not_available": "N/A",
|
||||
"not_in_any_album": "Fora de álbum",
|
||||
"not_selected": "Não selecionado",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Nota: Para aplicar o rótulo de armazenamento a arquivos enviados anteriormente, execute o",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Porta",
|
||||
"preferences_settings_subtitle": "Gerenciar as preferências do aplicativo",
|
||||
"preferences_settings_title": "Preferências",
|
||||
"preparing": "Preparando",
|
||||
"preset": "Predefinição",
|
||||
"preview": "Pré-visualizar",
|
||||
"previous": "Anterior",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Ler Novidades",
|
||||
"readonly_mode_disabled": "Modo apenas visualização desativado",
|
||||
"readonly_mode_enabled": "Modo apenas visualização ativado",
|
||||
"ready_for_upload": "Pronto para upload",
|
||||
"reassign": "Reatribuir",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {# arquivo reatribuído} other {# arquivos reatribuídos}} a {name, select, null {uma pessoa} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {# arquivo reatribuído} other {# arquivos reatribuídos}} a uma nova pessoa",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Regenerando miniaturas",
|
||||
"remote": "Remoto",
|
||||
"remote_assets": "Arquivos Remotos",
|
||||
"remote_media_summary": "Resumo das mídias remotas",
|
||||
"remove": "Remover",
|
||||
"remove_assets_album_confirmation": "Tem certeza de que deseja remover {count, plural, one {# arquivo} other {# arquivos}} do álbum?",
|
||||
"remove_assets_shared_link_confirmation": "Tem certeza de que deseja remover {count, plural, one {# arquivo} other {# arquivos}} desse link compartilhado?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Usar transições no modo de apresentação",
|
||||
"show_supporter_badge": "Insígnia de apoiador",
|
||||
"show_supporter_badge_description": "Mostrar uma insígnia de apoiador",
|
||||
"show_text_search_menu": "Mostrar menu de pesquisa por texto",
|
||||
"shuffle": "Aleatório",
|
||||
"sidebar": "Barra lateral",
|
||||
"sidebar_display_description": "Exibir um link para a visualização na barra lateral",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stacktrace",
|
||||
"start": "Início",
|
||||
"start_date": "Data inicial",
|
||||
"start_date_before_end_date": "A data de início deve ser antes da data final",
|
||||
"state": "Estado",
|
||||
"status": "Status",
|
||||
"stop_casting": "Parar transmissão",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Sim",
|
||||
"you_dont_have_any_shared_links": "Não há links compartilhados",
|
||||
"your_wifi_name": "Nome do seu Wi-Fi",
|
||||
"zoom_image": "Ampliar imagem"
|
||||
"zoom_image": "Ampliar imagem",
|
||||
"zoom_to_bounds": "Ampliar para preencher"
|
||||
}
|
||||
|
|
|
|||
13
i18n/ro.json
13
i18n/ro.json
|
|
@ -123,6 +123,11 @@
|
|||
"logging_enable_description": "Activează înregistrarea log-urilor",
|
||||
"logging_level_description": "Dacă setarea este activată, înregistrează evenimentele cu nivelul de utilizat.",
|
||||
"logging_settings": "Înregistrare",
|
||||
"machine_learning_availability_checks": "Verificări disponibilitate",
|
||||
"machine_learning_availability_checks_description": "Detectează automat si preferă serverele cu învațare automată",
|
||||
"machine_learning_availability_checks_enabled": "Activează verificare disponibilitate",
|
||||
"machine_learning_availability_checks_interval": "Interval verificare",
|
||||
"machine_learning_availability_checks_interval_description": "Interval in milisecunde între verificările de disponibilitate",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "Numele unui model CLIP listat <link>aici</link>. Rețineți că trebuie să rulați din nou funcția „Smart Search” pentru toate imaginile la schimbarea unui model.",
|
||||
"machine_learning_duplicate_detection": "Detectare Duplicate",
|
||||
|
|
@ -387,8 +392,6 @@
|
|||
"admin_password": "Parolă Administrator",
|
||||
"administration": "Administrare",
|
||||
"advanced": "Avansat",
|
||||
"advanced_settings_beta_timeline_subtitle": "Încearcă noua experiență în aplicație",
|
||||
"advanced_settings_beta_timeline_title": "Cronologie beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Utilizați această opțiune pentru a filtra conținutul media în timpul sincronizării pe baza unor criterii alternative. Încercați numai dacă întâmpinați probleme cu aplicația la detectarea tuturor albumelor.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTAL] Utilizați filtrul alternativ de sincronizare a albumelor de pe dispozitiv",
|
||||
"advanced_settings_log_level_title": "Nivel log: {level}",
|
||||
|
|
@ -425,6 +428,7 @@
|
|||
"album_remove_user_confirmation": "Ești sigur că dorești eliminarea {user}?",
|
||||
"album_search_not_found": "Nu s-au găsit albume care să corespundă căutării dumneavoastră",
|
||||
"album_share_no_users": "Se pare că ai partajat acest album cu toți utilizatorii sau nu ai niciun utilizator cu care să-l partajezi.",
|
||||
"album_summary": "Rezumat album",
|
||||
"album_updated": "Album actualizat",
|
||||
"album_updated_setting_description": "Primiți o notificare prin e-mail când un album partajat are elemente noi",
|
||||
"album_user_left": "A părăsit {album}",
|
||||
|
|
@ -482,7 +486,7 @@
|
|||
"asset_description_updated": "Descrierea resursei a fost actualizată",
|
||||
"asset_filename_is_offline": "Resursa {filename} este offline",
|
||||
"asset_has_unassigned_faces": "Resursa are fețe neatribuite",
|
||||
"asset_hashing": "Calculare amprentă digitală",
|
||||
"asset_hashing": "Calculare amprentă digitală…",
|
||||
"asset_list_group_by_sub_title": "Grupare după",
|
||||
"asset_list_layout_settings_dynamic_layout_title": "Aspect dinamic",
|
||||
"asset_list_layout_settings_group_automatically": "Automat",
|
||||
|
|
@ -496,6 +500,8 @@
|
|||
"asset_restored_successfully": "Date restaurate cu succes",
|
||||
"asset_skipped": "Sărit",
|
||||
"asset_skipped_in_trash": "În coșul de gunoi",
|
||||
"asset_trashed": "Resursă ștearsă",
|
||||
"asset_troubleshoot": "Depanare resursă",
|
||||
"asset_uploaded": "Încărcat",
|
||||
"asset_uploading": "Se incarcă…",
|
||||
"asset_viewer_settings_subtitle": "Gestionați setările de vizualizare a galeriei",
|
||||
|
|
@ -528,6 +534,7 @@
|
|||
"autoplay_slideshow": "Derulare slideshow automat",
|
||||
"back": "Înapoi",
|
||||
"back_close_deselect": "Înapoi, închidere sau deselectare",
|
||||
"background_backup_running_error": "Procesul de backup în fundal este activ, nu se poate porni backup manual",
|
||||
"background_location_permission": "Permisiune locație în fundal",
|
||||
"background_location_permission_content": "Pentru a putea schimba rețeaua activă în fundal, Immich are nevoie de acces *permanent* la locația precisă pentru a citi numele rețelei Wi-Fi",
|
||||
"backup": "Backup",
|
||||
|
|
|
|||
162
i18n/ru.json
162
i18n/ru.json
|
|
@ -7,7 +7,7 @@
|
|||
"action_common_update": "Обновить",
|
||||
"actions": "Действия",
|
||||
"active": "Выполняется",
|
||||
"activity": "Активность",
|
||||
"activity": "Действия",
|
||||
"activity_changed": "Активность {enabled, select, true {включена} other {отключена}}",
|
||||
"add": "Добавить",
|
||||
"add_a_description": "Добавить описание",
|
||||
|
|
@ -26,8 +26,8 @@
|
|||
"add_tag": "Добавить тег",
|
||||
"add_to": "Добавить в…",
|
||||
"add_to_album": "Добавить в альбом",
|
||||
"add_to_album_bottom_sheet_added": "Добавлено в {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Уже в {album}",
|
||||
"add_to_album_bottom_sheet_added": "Добавлено в альбом {album}",
|
||||
"add_to_album_bottom_sheet_already_exists": "Уже в альбоме {album}",
|
||||
"add_to_album_toggle": "Переключить выделение для альбома {album}",
|
||||
"add_to_albums": "Добавить в альбомы",
|
||||
"add_to_albums_count": "Добавить в альбомы ({count})",
|
||||
|
|
@ -65,9 +65,9 @@
|
|||
"confirm_reprocess_all_faces": "Вы уверены, что хотите повторно определить все лица? Будут также удалены имена со всех лиц.",
|
||||
"confirm_user_password_reset": "Вы действительно хотите сбросить пароль пользователя {user}?",
|
||||
"confirm_user_pin_code_reset": "Вы действительно хотите сбросить PIN-код пользователя {user}?",
|
||||
"create_job": "Создать задание",
|
||||
"create_job": "Создать задачу",
|
||||
"cron_expression": "Расписание (выражение планировщика cron)",
|
||||
"cron_expression_description": "Частота и время выполнения задания в формате планировщика cron. Воспользуйтесь при необходимости визуальным редактором <link>Crontab Guru</link>",
|
||||
"cron_expression_description": "Частота и время выполнения задачи в формате планировщика cron. Воспользуйтесь при необходимости визуальным редактором <link>Crontab Guru</link>",
|
||||
"cron_expression_presets": "Расписание (предустановленные варианты)",
|
||||
"disable_login": "Отключить вход",
|
||||
"duplicate_detection_job_description": "Запускает определение похожих изображений при помощи машинного зрения (зависит от умного поиска)",
|
||||
|
|
@ -100,11 +100,11 @@
|
|||
"image_thumbnail_description": "Маленькая миниатюра с удаленными метаданными, используемая при просмотре групп фотографий, таких как основная временная шкала",
|
||||
"image_thumbnail_quality_description": "Качество миниатюр от 1 до 100. Чем выше качество, тем лучше, но при этом создаются файлы большего размера и может снизиться скорость отклика приложения.",
|
||||
"image_thumbnail_title": "Настройки миниатюр",
|
||||
"job_concurrency": "Параллельная обработка задания - {job}",
|
||||
"job_created": "Задание создано",
|
||||
"job_concurrency": "Число параллельных потоков задачи {job}",
|
||||
"job_created": "Задача создана",
|
||||
"job_not_concurrency_safe": "Эта задача не обеспечивает безопасность параллельности выполнения.",
|
||||
"job_settings": "Настройки заданий",
|
||||
"job_settings_description": "Управление параллельной обработкой заданий",
|
||||
"job_settings": "Настройки задач",
|
||||
"job_settings_description": "Управление параллельностью выполнения задач",
|
||||
"job_status": "Состояние выполнения задач",
|
||||
"jobs_delayed": "{jobCount, plural, one {# отложена} other {# отложено}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# не удалось выполнить}}",
|
||||
|
|
@ -123,20 +123,27 @@
|
|||
"logging_enable_description": "Включить ведение журнала",
|
||||
"logging_level_description": "Если включено, выберите желаемый уровень журналирования.",
|
||||
"logging_settings": "Ведение журнала",
|
||||
"machine_learning_availability_checks": "Проверка доступности",
|
||||
"machine_learning_availability_checks_description": "Автоматически определять и использовать доступные серверы машинного обучения",
|
||||
"machine_learning_availability_checks_enabled": "Включить проверку доступности",
|
||||
"machine_learning_availability_checks_interval": "Интервал проверки",
|
||||
"machine_learning_availability_checks_interval_description": "Интервал в миллисекундах между проверками",
|
||||
"machine_learning_availability_checks_timeout": "Тайм-аут запроса",
|
||||
"machine_learning_availability_checks_timeout_description": "Время ожидания ответа сервера в миллисекундах для определения доступности",
|
||||
"machine_learning_clip_model": "CLIP модель",
|
||||
"machine_learning_clip_model_description": "Названия моделей CLIP размещены <link>здесь</link>. Обратите внимание, что при изменении модели необходимо заново запустить задачу «Интеллектуальный поиск» для всех изображений.",
|
||||
"machine_learning_clip_model_description": "Названия доступных CLIP моделей размещены <link>здесь</link>.\nПри изменении модели необходимо заново запустить задачу «Интеллектуальный поиск» для всех объектов.",
|
||||
"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": "При отключении, все функции ML будут отключены независимо от следующих параметров.",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Если этот параметр отключён, абсолютно идентичные файлы всё равно не будут загружаться.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Использование CLIP моделей для выявления возможных дубликатов",
|
||||
"machine_learning_enabled": "Включить машинное обучение",
|
||||
"machine_learning_enabled_description": "При выключении будут отключены все функции ML независимо от следующих параметров.",
|
||||
"machine_learning_facial_recognition": "Распознавание лиц",
|
||||
"machine_learning_facial_recognition_description": "Обнаруживать, распознавать и группировать лица на изображениях",
|
||||
"machine_learning_facial_recognition_model": "Модель для распознавания лиц",
|
||||
"machine_learning_facial_recognition_model_description": "Модели перечислены в порядке убывания размера. Большие модели работают медленнее и используют больше памяти, но дают лучшие результаты. Обратите внимание, что при смене модели необходимо повторно запустить задание распознавания лиц для всех изображений.",
|
||||
"machine_learning_facial_recognition_model_description": "Модели перечислены в порядке убывания их размера. Большие модели работают медленнее и используют больше памяти, но дают лучшие результаты. При смене модели необходимо повторно запустить задачу распознавания лиц для всех изображений.",
|
||||
"machine_learning_facial_recognition_setting": "Включить функцию распознавания лиц",
|
||||
"machine_learning_facial_recognition_setting_description": "Если отключить эту функцию, изображения не будут кодироваться для распознавания лиц и не будут заполнять раздел Люди на обзорной странице.",
|
||||
"machine_learning_facial_recognition_setting_description": "При отключении этой функции изображения не будут кодироваться для распознавания лиц, и не будет заполняться раздел Люди.",
|
||||
"machine_learning_max_detection_distance": "Максимальное различие изображений",
|
||||
"machine_learning_max_detection_distance_description": "Максимальное различие между двумя изображениями, чтобы считать их дубликатами, в диапазоне 0,001-0,1. Более высокие значения позволяют обнаружить больше дубликатов, но могут привести к ложным срабатываниям.",
|
||||
"machine_learning_max_recognition_distance": "Порог распознавания",
|
||||
|
|
@ -146,13 +153,13 @@
|
|||
"machine_learning_min_recognized_faces": "Минимум распознанных лиц",
|
||||
"machine_learning_min_recognized_faces_description": "Минимальное количество распознанных лиц для создания человека. Увеличение этого параметра делает распознавание лиц более точным, но при этом увеличивается вероятность того, что лицо не будет присвоено человеку.",
|
||||
"machine_learning_settings": "Настройки машинного обучения",
|
||||
"machine_learning_settings_description": "Управление функциями и настройками машинного обучения",
|
||||
"machine_learning_settings_description": "Управление функциями и настройками машинного обучения (ML)",
|
||||
"machine_learning_smart_search": "Интеллектуальный поиск",
|
||||
"machine_learning_smart_search_description": "Семантический поиск изображений с использованием вложений CLIP",
|
||||
"machine_learning_smart_search_description": "Семантический (контекстный) поиск объектов с использованием CLIP моделей",
|
||||
"machine_learning_smart_search_enabled": "Включить интеллектуальный поиск",
|
||||
"machine_learning_smart_search_enabled_description": "Если этот параметр отключен, изображения не будут кодироваться для интеллектуального поиска.",
|
||||
"machine_learning_smart_search_enabled_description": "При отключении этой функции изображения не будут кодироваться для интеллектуального поиска.",
|
||||
"machine_learning_url_description": "URL-адрес сервера машинного обучения. Если указано несколько, запросы будут отправляться по очереди на каждый, пока от одного из них не будет получен успешный ответ. Серверы, которые не отвечают, будут временно игнорироваться до тех пор, пока не станут снова доступны.",
|
||||
"manage_concurrency": "Управление параллельностью заданий",
|
||||
"manage_concurrency": "Управление параллельностью",
|
||||
"manage_log_settings": "Управление настройками журнала",
|
||||
"map_dark_style": "Тёмный стиль",
|
||||
"map_enable_description": "Включить функции карты",
|
||||
|
|
@ -170,9 +177,9 @@
|
|||
"memory_cleanup_job": "Очистка воспоминаний",
|
||||
"memory_generate_job": "Создание воспоминаний",
|
||||
"metadata_extraction_job": "Извлечение метаданных",
|
||||
"metadata_extraction_job_description": "Извлекает метаданные из каждого файла, такие как местоположение, лица и разрешение",
|
||||
"metadata_extraction_job_description": "Извлечение метаданных из файлов, таких как местоположение, лица и разрешение",
|
||||
"metadata_faces_import_setting": "Включить импорт лиц",
|
||||
"metadata_faces_import_setting_description": "Импорт лиц из изображений EXIF-данных и файлов sidecar",
|
||||
"metadata_faces_import_setting_description": "Импорт лиц из EXIF-данных и файлов sidecar",
|
||||
"metadata_settings": "Настройки метаданных",
|
||||
"metadata_settings_description": "Управление настройками метаданных",
|
||||
"migration_job": "Миграция",
|
||||
|
|
@ -247,7 +254,7 @@
|
|||
"reset_settings_to_default": "Сброс настроек до значений по умолчанию",
|
||||
"reset_settings_to_recent_saved": "Не сохранённые изменения сброшены к последним сохраненным значениям",
|
||||
"scanning_library": "Сканирование библиотеки",
|
||||
"search_jobs": "Поиск заданий…",
|
||||
"search_jobs": "Поиск задач…",
|
||||
"send_welcome_email": "Отправить приветственное письмо",
|
||||
"server_external_domain_settings": "Внешний домен",
|
||||
"server_external_domain_settings_description": "Домен для публичных ссылок, включая http(s)://",
|
||||
|
|
@ -269,7 +276,7 @@
|
|||
"storage_template_migration": "Применение шаблона хранилища",
|
||||
"storage_template_migration_description": "Применяет текущий <link>{template}</link> к ранее загруженным объектам",
|
||||
"storage_template_migration_info": "Расширения файлов всегда будут сохраняться в нижнем регистре. Изменения в шаблоне будут применяться только к новым ресурсам. Чтобы применить шаблон к ранее загруженным ресурсам, запустите <link>{job}</link>.",
|
||||
"storage_template_migration_job": "Задание по применению шаблона хранилища",
|
||||
"storage_template_migration_job": "Задача по применению шаблона хранилища",
|
||||
"storage_template_more_details": "Для получения дополнительной информации об этой функции обратитесь к разделам документации <template-link>Шаблон хранилища</template-link> и <implications-link>Структура хранения файлов</implications-link>",
|
||||
"storage_template_onboarding_description_v2": "Если эта функция включена, она автоматически организует файлы на основе заданного пользователем шаблона. Для получения дополнительной информации обратитесь к <link>документации</link>.",
|
||||
"storage_template_path_length": "Примерный предел длины пути: <b>{length, number}</b>/{limit, number}",
|
||||
|
|
@ -364,7 +371,7 @@
|
|||
"user_cleanup_job": "Очистка пользователя",
|
||||
"user_delete_delay": "Аккаунт и файлы пользователя <b>{user}</b> будут отложены до окончательного удаления через {delay, plural, one {# день} few {# дня} many {# дней} other {# дня}}.",
|
||||
"user_delete_delay_settings": "Отложенное удаление",
|
||||
"user_delete_delay_settings_description": "Срок в днях, по истечение которого происходит окончательное удаление учетной записи пользователя и его ресурсов. Задача по удалению пользователей выполняется в полночь. Изменения этой настройки будут учтены при следующем запуске задачи.",
|
||||
"user_delete_delay_settings_description": "Срок в днях, по истечении которого происходит окончательное удаление учётной записи пользователя и всех его объектов. Задача по удалению пользователей выполняется в полночь. Изменение этой настройки будет учтено при следующем запуске задачи.",
|
||||
"user_delete_immediately": "Аккаунт и файлы пользователя <b>{user}</b> будут <b>немедленно</b> поставлены в очередь для окончательного удаления.",
|
||||
"user_delete_immediately_checkbox": "Поместить пользователя и его файлы в очередь для немедленного удаления",
|
||||
"user_details": "Данные пользователя",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Пароль администратора",
|
||||
"administration": "Управление сервером",
|
||||
"advanced": "Расширенные",
|
||||
"advanced_settings_beta_timeline_subtitle": "Попробуйте новый функционал приложения",
|
||||
"advanced_settings_beta_timeline_title": "Бета-версия временной шкалы",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Подбор объектов для синхронизации на основе альтернативных критериев. Пробуйте включать только в том случае, если в приложении есть проблемы с обнаружением всех альбомов.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[ЭКСПЕРИМЕНТАЛЬНО] Использование альтернативного способа синхронизации альбомов на устройстве",
|
||||
"advanced_settings_log_level_title": "Уровень логирования: {level}",
|
||||
|
|
@ -403,8 +408,8 @@
|
|||
"advanced_settings_sync_remote_deletions_subtitle": "Автоматически удалять или восстанавливать объекты на этом устройстве, когда это действие выполняется через веб-интерфейс",
|
||||
"advanced_settings_sync_remote_deletions_title": "[ЭКСПЕРИМЕНТАЛЬНО] Синхронизация удаления объектов",
|
||||
"advanced_settings_tile_subtitle": "Расширенные настройки",
|
||||
"advanced_settings_troubleshooting_subtitle": "Включить расширенные возможности для решения проблем",
|
||||
"advanced_settings_troubleshooting_title": "Решение проблем",
|
||||
"advanced_settings_troubleshooting_subtitle": "Включить расширенные возможности для диагностики и решения проблем",
|
||||
"advanced_settings_troubleshooting_title": "Режим диагностики",
|
||||
"age_months": "{months, plural, one {# месяц} many {# месяцев} other {# месяца}}",
|
||||
"age_year_months": "1 год {months, plural, one {# месяц} many {# месяцев} other {# месяца}}",
|
||||
"age_years": "{years, plural, one {# год} many {# лет} other {# года}}",
|
||||
|
|
@ -420,11 +425,12 @@
|
|||
"album_leave": "Покинуть альбом?",
|
||||
"album_leave_confirmation": "Вы уверены, что хотите покинуть {album}?",
|
||||
"album_name": "Название альбома",
|
||||
"album_options": "Параметры альбома",
|
||||
"album_options": "Действия с альбомом",
|
||||
"album_remove_user": "Удалить пользователя?",
|
||||
"album_remove_user_confirmation": "Вы уверены, что хотите удалить пользователя {user}?",
|
||||
"album_search_not_found": "Не найдено альбомов по вашему запросу",
|
||||
"album_share_no_users": "Нет доступных пользователей, с которыми можно поделиться альбомом.",
|
||||
"album_summary": "Информация об альбоме",
|
||||
"album_updated": "Альбом обновлён",
|
||||
"album_updated_setting_description": "Получать уведомление по электронной почте при добавлении новых объектов в общий альбом",
|
||||
"album_user_left": "Вы покинули {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Объект успешно восстановлен",
|
||||
"asset_skipped": "Пропущено",
|
||||
"asset_skipped_in_trash": "В корзине",
|
||||
"asset_trashed": "Объект удалён",
|
||||
"asset_troubleshoot": "Данные для диагностики",
|
||||
"asset_uploaded": "Загружено",
|
||||
"asset_uploading": "Загрузка…",
|
||||
"asset_viewer_settings_subtitle": "Настройка параметров отображения",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Автовоспроизведение слайдшоу",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Назад, закрыть или отменить выбор",
|
||||
"background_backup_running_error": "Выполняется фоновое резервное копирование, запуск вручную пока невозможен",
|
||||
"background_location_permission": "Доступ к местоположению в фоне",
|
||||
"background_location_permission_content": "Чтобы считывать имя Wi-Fi сети в фоне, приложению *всегда* необходим доступ к точному местоположению устройства",
|
||||
"background_options": "Выполнение фоновых задач",
|
||||
"backup": "Резервное копирование",
|
||||
"backup_album_selection_page_albums_device": "Альбомы на устройстве ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Нажмите, чтобы включить, дважды, чтобы исключить",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Выбор альбомов",
|
||||
"backup_album_selection_page_selection_info": "Выбранные альбомы",
|
||||
"backup_album_selection_page_total_assets": "Всего уникальных объектов",
|
||||
"backup_albums_sync": "Синхронизация альбомов",
|
||||
"backup_all": "Все",
|
||||
"backup_background_service_backup_failed_message": "Не удалось выполнить резервное копирование. Повторная попытка…",
|
||||
"backup_background_service_connection_failed_message": "Не удалось подключиться к серверу. Повторная попытка…",
|
||||
|
|
@ -556,7 +567,7 @@
|
|||
"backup_controller_page_background_battery_info_title": "Оптимизация батареи",
|
||||
"backup_controller_page_background_charging": "Только во время зарядки",
|
||||
"backup_controller_page_background_configure_error": "Не удалось настроить фоновую службу",
|
||||
"backup_controller_page_background_delay": "Отложить резервное копирование новых объектов: {duration}",
|
||||
"backup_controller_page_background_delay": "Задержка перед загрузкой новых объектов: {duration}",
|
||||
"backup_controller_page_background_description": "Включите фоновую службу для автоматического резервного копирования любых новых объектов без необходимости открывать приложение",
|
||||
"backup_controller_page_background_is_off": "Автоматическое резервное копирование в фоновом режиме отключено",
|
||||
"backup_controller_page_background_is_on": "Автоматическое резервное копирование в фоновом режиме включено",
|
||||
|
|
@ -573,7 +584,7 @@
|
|||
"backup_controller_page_filename": "Имя файла: {filename} [{size}]",
|
||||
"backup_controller_page_id": "ID: {id}",
|
||||
"backup_controller_page_info": "Информация о резервном копировании",
|
||||
"backup_controller_page_none_selected": "Ничего не выбрано",
|
||||
"backup_controller_page_none_selected": "Не выбрано",
|
||||
"backup_controller_page_remainder": "Осталось",
|
||||
"backup_controller_page_remainder_sub": "Фото и видео для загрузки",
|
||||
"backup_controller_page_server_storage": "Хранилище на сервере",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Изменить PIN-код",
|
||||
"change_your_password": "Изменить свой пароль",
|
||||
"changed_visibility_successfully": "Видимость успешно изменена",
|
||||
"charging": "При зарядке",
|
||||
"charging_requirement_mobile_backup": "Запускать резервное копирование только во время зарядки",
|
||||
"check_corrupt_asset_backup": "Проверка поврежденных резервных копий",
|
||||
"check_corrupt_asset_backup_button": "Проверить",
|
||||
"check_corrupt_asset_backup_description": "Запускайте проверку только через Wi-Fi и после создания резервной копии всех объектов. Операция может занять несколько минут.",
|
||||
|
|
@ -681,8 +694,8 @@
|
|||
"color": "Цвет",
|
||||
"color_theme": "Цветовая тема",
|
||||
"comment_deleted": "Комментарий удалён",
|
||||
"comment_options": "Параметры комментариев",
|
||||
"comments_and_likes": "Комментарии и лайки",
|
||||
"comment_options": "Действия с комментарием",
|
||||
"comments_and_likes": "Комментарии и отметки \"нравится\"",
|
||||
"comments_are_disabled": "Комментарии отключены",
|
||||
"common_create_new_album": "Создать новый альбом",
|
||||
"common_server_error": "Пожалуйста, проверьте подключение к сети и убедитесь, что ваш сервер доступен, а версии приложения и сервера — совместимы.",
|
||||
|
|
@ -705,7 +718,7 @@
|
|||
"control_bottom_app_bar_delete_from_immich": "Удалить из Immich",
|
||||
"control_bottom_app_bar_delete_from_local": "Удалить с устройства",
|
||||
"control_bottom_app_bar_edit_location": "Изменить место",
|
||||
"control_bottom_app_bar_edit_time": "Изменить дату",
|
||||
"control_bottom_app_bar_edit_time": "Изменить дату и время",
|
||||
"control_bottom_app_bar_share_link": "Поделиться ссылкой",
|
||||
"control_bottom_app_bar_share_to": "Поделиться с",
|
||||
"control_bottom_app_bar_trash_from_immich": "В корзину",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Создать пользователя",
|
||||
"created": "Создан",
|
||||
"created_at": "Создан",
|
||||
"creating_linked_albums": "Создание связанных альбомов...",
|
||||
"crop": "Обрезать",
|
||||
"curated_object_page_title": "Предметы",
|
||||
"current_device": "Текущее устройство",
|
||||
|
|
@ -809,7 +823,7 @@
|
|||
"discovered_devices": "Обнаруженные устройства",
|
||||
"dismiss_all_errors": "Сбросить все ошибки",
|
||||
"dismiss_error": "Сбросить ошибку",
|
||||
"display_options": "Настройки отображения",
|
||||
"display_options": "Дополнительно",
|
||||
"display_order": "Порядок отображения",
|
||||
"display_original_photos": "Отображение оригинальных фотографий",
|
||||
"display_original_photos_setting_description": "Открывать при просмотре оригинал фотографии вместо миниатюры, если исходный формат поддерживается браузером. Возможно снижение скорости отображения фотографий.",
|
||||
|
|
@ -841,11 +855,11 @@
|
|||
"duplicates": "Дубликаты",
|
||||
"duplicates_description": "Просмотрите найденные дубликаты и в каждой группе укажите, какие объекты оставить, а какие удалить",
|
||||
"duration": "Продолжительность",
|
||||
"edit": "Редактировать",
|
||||
"edit_album": "Редактировать альбом",
|
||||
"edit": "Изменить",
|
||||
"edit_album": "Изменить альбом",
|
||||
"edit_avatar": "Изменить аватар",
|
||||
"edit_birthday": "Изменить дату рождения",
|
||||
"edit_date": "редактировать дату",
|
||||
"edit_date": "Изменить дату",
|
||||
"edit_date_and_time": "Изменить дату и время",
|
||||
"edit_date_and_time_action_prompt": "Дата и время изменены у {count} объектов",
|
||||
"edit_date_and_time_by_offset": "Изменить дату по смещению",
|
||||
|
|
@ -857,14 +871,14 @@
|
|||
"edit_import_path": "Изменить путь импорта",
|
||||
"edit_import_paths": "Изменить путь импорта",
|
||||
"edit_key": "Изменить ключ",
|
||||
"edit_link": "Редактировать ссылку",
|
||||
"edit_location": "Редактировать местоположение",
|
||||
"edit_link": "Изменить ссылку",
|
||||
"edit_location": "Изменить местоположение",
|
||||
"edit_location_action_prompt": "Места изменены ({count} шт.)",
|
||||
"edit_location_dialog_title": "Местоположение",
|
||||
"edit_name": "Редактировать имя",
|
||||
"edit_people": "Редактировать людей",
|
||||
"edit_name": "Изменить имя",
|
||||
"edit_people": "Изменить людей",
|
||||
"edit_tag": "Изменить тег",
|
||||
"edit_title": "Редактировать Заголовок",
|
||||
"edit_title": "Изменить заголовок",
|
||||
"edit_user": "Изменить пользователя",
|
||||
"edited": "Отредактировано",
|
||||
"editor": "Редактор",
|
||||
|
|
@ -878,7 +892,7 @@
|
|||
"empty_trash": "Очистить корзину",
|
||||
"empty_trash_confirmation": "Вы действительно хотите очистить корзину? Все объекты в ней будут навсегда удалены из Immich.\nВы не сможете отменить это действие!",
|
||||
"enable": "Включить",
|
||||
"enable_backup": "Включить резервное копирование",
|
||||
"enable_backup": "Активировать",
|
||||
"enable_biometric_auth_description": "Введите свой PIN-код для включения биометрической аутентификации",
|
||||
"enabled": "Включено",
|
||||
"end_date": "Дата окончания",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Ошибка",
|
||||
"error_change_sort_album": "Не удалось изменить порядок сортировки альбома",
|
||||
"error_delete_face": "Ошибка при удалении лица из объекта",
|
||||
"error_getting_places": "Ошибка получения мест",
|
||||
"error_loading_image": "Ошибка при загрузке изображения",
|
||||
"error_loading_partners": "Ошибка загрузки партнёров: {error}",
|
||||
"error_saving_image": "Ошибка: {error}",
|
||||
"error_tag_face_bounding_box": "Ошибка при добавлении отметки - не удалось получить координаты рамки лица",
|
||||
"error_title": "Ошибка - Что-то пошло не так",
|
||||
|
|
@ -1002,7 +1018,7 @@
|
|||
"unable_to_scan_library": "Не удалось просканировать библиотеку",
|
||||
"unable_to_set_feature_photo": "Не удалось установить фотографию на обложку",
|
||||
"unable_to_set_profile_picture": "Не удалось установить фото профиля",
|
||||
"unable_to_submit_job": "Не удалось отправить задание",
|
||||
"unable_to_submit_job": "Не удалось отправить задачу на выполнение",
|
||||
"unable_to_trash_asset": "Не удалось переместить объект в корзину",
|
||||
"unable_to_unlink_account": "Не удалось отсоединить учётную запись",
|
||||
"unable_to_unlink_motion_video": "Не удалось отсоединить движущееся видео",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "В избранном сейчас пусто",
|
||||
"feature_photo_updated": "Избранное фото обновлено",
|
||||
"features": "Дополнительные возможности",
|
||||
"features_in_development": "Функции в разработке",
|
||||
"features_setting_description": "Управление дополнительными возможностями приложения",
|
||||
"file_name": "Имя файла",
|
||||
"file_name_or_extension": "Имя файла или расширение",
|
||||
|
|
@ -1167,7 +1184,7 @@
|
|||
},
|
||||
"invalid_date": "Неверная дата",
|
||||
"invalid_date_format": "Неверный формат даты",
|
||||
"invite_people": "Пригласить",
|
||||
"invite_people": "Пригласить участника",
|
||||
"invite_to_album": "Пригласить в альбом",
|
||||
"ios_debug_info_fetch_ran_at": "Выборка запущена {dateTime}",
|
||||
"ios_debug_info_last_sync_at": "Последняя синхронизация {dateTime}",
|
||||
|
|
@ -1185,7 +1202,7 @@
|
|||
"language": "Язык",
|
||||
"language_no_results_subtitle": "Попробуйте скорректировать поисковый запрос",
|
||||
"language_no_results_title": "Языков не найдено",
|
||||
"language_search_hint": "Поиск языков...",
|
||||
"language_search_hint": "Поиск языка...",
|
||||
"language_setting_description": "Выберите предпочитаемый вами язык",
|
||||
"large_files": "Файлы наибольшего размера",
|
||||
"last": "Последний",
|
||||
|
|
@ -1195,10 +1212,10 @@
|
|||
"leave": "Покинуть",
|
||||
"leave_album": "Покинуть альбом",
|
||||
"lens_model": "Модель объектива",
|
||||
"let_others_respond": "Позволять другим откликаться",
|
||||
"let_others_respond": "Разрешить другим пользователям добавлять комментарии и отметки \"нравится\"",
|
||||
"level": "Уровень",
|
||||
"library": "Библиотека",
|
||||
"library_options": "Опции библиотеки",
|
||||
"library_options": "Действия с библиотекой",
|
||||
"library_page_device_albums": "Альбомы на устройстве",
|
||||
"library_page_new_album": "Новый альбом",
|
||||
"library_page_sort_asset_count": "Количество объектов",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "На устройстве",
|
||||
"local_asset_cast_failed": "Невозможна трансляция объектов, которые ещё не загружены на сервер",
|
||||
"local_assets": "Объекты на устройстве",
|
||||
"local_media_summary": "Информация об объекте на устройстве",
|
||||
"local_network": "Локальная сеть",
|
||||
"local_network_sheet_info": "Приложение будет подключаться к серверу по этому адресу, когда устройство подключено к указанной Wi-Fi сети",
|
||||
"location_permission": "Доступ к местоположению",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Введите долготу",
|
||||
"lock": "Заблокировать",
|
||||
"locked_folder": "Личная папка",
|
||||
"log_detail_title": "Детали события",
|
||||
"log_out": "Выйти",
|
||||
"log_out_all_devices": "Завершить сеансы на всех устройствах",
|
||||
"logged_in_as": "Авторизован как {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Пароль успешно обновлен",
|
||||
"logout_all_device_confirmation": "Вы действительно хотите завершить все сеансы, кроме текущего?",
|
||||
"logout_this_device_confirmation": "Вы действительно хотите завершить сеанс на этом устройстве?",
|
||||
"logs": "Журнал событий",
|
||||
"longitude": "Долгота",
|
||||
"look": "Просмотр",
|
||||
"loop_videos": "Циклическое воспроизведение видео",
|
||||
|
|
@ -1268,7 +1288,7 @@
|
|||
"make": "Производитель",
|
||||
"manage_geolocation": "Управление местами съёмки",
|
||||
"manage_shared_links": "Управление публичными ссылками",
|
||||
"manage_sharing_with_partners": "Функция совместного доступа к фото и видео, позволяющая видеть все объекты партнёров, а также предоставлять доступ к своим",
|
||||
"manage_sharing_with_partners": "Функция совместного доступа к фото и видео, позволяющая видеть объекты партнёров, а также предоставлять доступ к своим",
|
||||
"manage_the_app_settings": "Управление настройками приложения",
|
||||
"manage_your_account": "Управление учётной записью",
|
||||
"manage_your_api_keys": "Управление API ключами для взаимодействия с другими программами",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Отметить как прочитанное",
|
||||
"marked_all_as_read": "Отмечены как прочитанные",
|
||||
"matches": "Совпадения",
|
||||
"matching_assets": "Соответствующие объекты",
|
||||
"media_type": "Тип медиа",
|
||||
"memories": "Воспоминания",
|
||||
"memories_all_caught_up": "Это всё на сегодня",
|
||||
|
|
@ -1312,7 +1333,7 @@
|
|||
"memory_lane_title": "Воспоминание {title}",
|
||||
"menu": "Меню",
|
||||
"merge": "Объединить",
|
||||
"merge_people": "Объединить людей",
|
||||
"merge_people": "Объединить с другим",
|
||||
"merge_people_limit": "Вы можете объединять до 5 лиц за один раз",
|
||||
"merge_people_prompt": "Вы хотите объединить этих людей? Это действие необратимо.",
|
||||
"merge_people_successfully": "Лица людей успешно объединены",
|
||||
|
|
@ -1324,7 +1345,7 @@
|
|||
"model": "Модель",
|
||||
"month": "Месяц",
|
||||
"monthly_title_text_date_format": "MMMM y",
|
||||
"more": "Больше",
|
||||
"more": "Дополнительные действия",
|
||||
"move": "Переместить",
|
||||
"move_off_locked_folder": "Переместить из личной папки",
|
||||
"move_to_lock_folder_action_prompt": "Объекты добавлены в личную папку ({count} шт.)",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Имя или ник",
|
||||
"network_requirement_photos_upload": "Использовать мобильный интернет для загрузки фото",
|
||||
"network_requirement_videos_upload": "Использовать мобильный интернет для загрузки видео",
|
||||
"network_requirements": "Требования к сети",
|
||||
"network_requirements_updated": "Требования к сети изменились, сброс очереди загрузки",
|
||||
"networking_settings": "Сеть",
|
||||
"networking_subtitle": "Настройка подключения к серверу",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Новый человек",
|
||||
"new_pin_code": "Новый PIN-код",
|
||||
"new_pin_code_subtitle": "Это ваш первый доступ к личной папке. Создайте PIN-код для защищенного доступа к этой странице.",
|
||||
"new_timeline": "Новая лента",
|
||||
"new_user_created": "Новый пользователь создан",
|
||||
"new_version_available": "ДОСТУПНА НОВАЯ ВЕРСИЯ",
|
||||
"newest_first": "Сначала новые",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "НАЖМИТЕ ДЛЯ ЗАГРУЗКИ ВАШЕГО ПЕРВОГО ФОТО",
|
||||
"no_assets_to_show": "Медиа отсутствуют",
|
||||
"no_cast_devices_found": "Не найдено устройств для трансляции",
|
||||
"no_checksum_local": "Контрольные суммы отсутствуют - невозможно получить объекты на устройстве",
|
||||
"no_checksum_remote": "Контрольные суммы отсутствуют - невозможно получить объекты с сервера",
|
||||
"no_duplicates_found": "Дубликатов не обнаружено.",
|
||||
"no_exif_info_available": "Нет доступной информации exif",
|
||||
"no_explore_results_message": "Загружайте больше фотографий, чтобы наслаждаться вашей коллекцией.",
|
||||
"no_favorites_message": "Добавляйте объекты в избранное, чтобы быстрее находить свои лучшие фото и видео",
|
||||
"no_libraries_message": "Создайте внешнюю библиотеку для просмотра в Immich сторонних фотографий и видео",
|
||||
"no_local_assets_found": "На устройстве не найдено объектов с такой контрольной суммой",
|
||||
"no_locked_photos_message": "Фото и видео, перемещенные в личную папку, скрыты и не отображаются при просмотре библиотеки.",
|
||||
"no_name": "Нет имени",
|
||||
"no_notifications": "Нет уведомлений",
|
||||
"no_people_found": "Никого не найдено",
|
||||
"no_places": "Нет мест",
|
||||
"no_remote_assets_found": "На сервере не найдено объектов с такой контрольной суммой",
|
||||
"no_results": "Нет результатов",
|
||||
"no_results_description": "Попробуйте использовать синоним или более общее ключевое слово",
|
||||
"no_shared_albums_message": "Создайте альбом для обмена фотографиями и видеозаписями с людьми в вашей сети",
|
||||
"no_uploads_in_progress": "Нет активных загрузок",
|
||||
"not_available": "Нет данных",
|
||||
"not_in_any_album": "Ни в одном альбоме",
|
||||
"not_selected": "Не выбрано",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Примечание: Чтобы применить метку хранилища к ранее загруженным ресурсам, запустите",
|
||||
|
|
@ -1410,7 +1438,7 @@
|
|||
"open_in_map_view": "Открыть в режиме просмотра карты",
|
||||
"open_in_openstreetmap": "Открыть в OpenStreetMap",
|
||||
"open_the_search_filters": "Открыть фильтры поиска",
|
||||
"options": "Опции",
|
||||
"options": "Параметры",
|
||||
"or": "или",
|
||||
"organize_into_albums": "Распределить по альбомам",
|
||||
"organize_into_albums_description": "Добавить уже существующие объекты в альбомы, используя текущие настройки синхронизации",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Порт",
|
||||
"preferences_settings_subtitle": "Настройка внешнего вида",
|
||||
"preferences_settings_title": "Параметры",
|
||||
"preparing": "Подготовка",
|
||||
"preset": "Предустановленные варианты",
|
||||
"preview": "Предварительный просмотр",
|
||||
"previous": "Предыдущее",
|
||||
|
|
@ -1560,10 +1589,11 @@
|
|||
"rating_clear": "Очистить рейтинг",
|
||||
"rating_count": "{count, plural, one {# звезда} many {# звезд} other {# звезды}}",
|
||||
"rating_description": "Система оценки объектов в панели информации",
|
||||
"reaction_options": "Опции реакций",
|
||||
"reaction_options": "Действия с отметкой",
|
||||
"read_changelog": "Прочитать список изменений",
|
||||
"readonly_mode_disabled": "Режим «только просмотр» отключён",
|
||||
"readonly_mode_enabled": "Режим «только просмотр» включён",
|
||||
"ready_for_upload": "Готово к загрузке",
|
||||
"reassign": "Переназначить",
|
||||
"reassigned_assets_to_existing_person": "Лица на {count, plural, one {# объекте} other {# объектах}} переназначены на {name, select, null {другого человека} other {человека с именем {name}}}",
|
||||
"reassigned_assets_to_new_person": "Лица на {count, plural, one {# объекте} other {# объектах}} переназначены на нового человека",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Восстановление миниатюр",
|
||||
"remote": "На сервере",
|
||||
"remote_assets": "Объекты на сервере",
|
||||
"remote_media_summary": "Информация об объекте на сервере",
|
||||
"remove": "Удалить",
|
||||
"remove_assets_album_confirmation": "Вы действительно хотите удалить {count, plural, one {# объект} many {# объектов} other {# объекта}} из альбома?",
|
||||
"remove_assets_shared_link_confirmation": "Вы действительно хотите удалить {count, plural, one {# объект} many {# объектов} other {# объекта}} из публичного доступа по этой ссылке?",
|
||||
|
|
@ -1653,7 +1684,7 @@
|
|||
"saved_api_key": "API ключ изменён",
|
||||
"saved_profile": "Профиль сохранён",
|
||||
"saved_settings": "Настройки сохранены",
|
||||
"say_something": "Скажите что-нибудь",
|
||||
"say_something": "Напишите что-нибудь",
|
||||
"scaffold_body_error_occurred": "Возникла ошибка",
|
||||
"scan_all_libraries": "Сканировать все библиотеки",
|
||||
"scan_library": "Сканировать",
|
||||
|
|
@ -1674,7 +1705,7 @@
|
|||
"search_filter_camera_title": "Выберите тип камеры",
|
||||
"search_filter_date": "Дата",
|
||||
"search_filter_date_interval": "{start} — {end}",
|
||||
"search_filter_date_title": "Выберите промежуток",
|
||||
"search_filter_date_title": "Выберите период",
|
||||
"search_filter_display_option_not_in_album": "Не в альбоме",
|
||||
"search_filter_display_options": "Настройки отображения",
|
||||
"search_filter_filename": "Поиск по имени файла",
|
||||
|
|
@ -1727,7 +1758,7 @@
|
|||
"select_from_computer": "Выбрать с компьютера",
|
||||
"select_keep_all": "Выбрать все для сохранения",
|
||||
"select_library_owner": "Выберите владельца библиотеки",
|
||||
"select_new_face": "Выбрать другое лицо",
|
||||
"select_new_face": "Выбрать другого человека",
|
||||
"select_person_to_tag": "Выделите лицо человека, которого хотите отметить",
|
||||
"select_photos": "Выберите фотографии",
|
||||
"select_trash_all": "Выбрать все для удаления",
|
||||
|
|
@ -1740,7 +1771,7 @@
|
|||
"server_endpoint": "Адрес сервера",
|
||||
"server_info_box_app_version": "Версия приложения",
|
||||
"server_info_box_server_url": "URL сервера",
|
||||
"server_offline": "Сервер не в сети",
|
||||
"server_offline": "Оффлайн",
|
||||
"server_online": "Сервер в сети",
|
||||
"server_privacy": "Конфиденциальность сервера",
|
||||
"server_stats": "Статистика сервера",
|
||||
|
|
@ -1827,7 +1858,7 @@
|
|||
"shared_link_individual_shared": "Индивидуальный общий доступ",
|
||||
"shared_link_info_chip_metadata": "EXIF",
|
||||
"shared_link_manage_links": "Управление публичными ссылками",
|
||||
"shared_link_options": "Параметры публичных ссылок",
|
||||
"shared_link_options": "Действия со ссылкой",
|
||||
"shared_link_password_description": "Требовать пароль для доступа к этой общей ссылке",
|
||||
"shared_links": "Публичные ссылки",
|
||||
"shared_links_description": "Делитесь фотографиями и видео по ссылке",
|
||||
|
|
@ -1856,13 +1887,14 @@
|
|||
"show_metadata": "Показывать метаданные",
|
||||
"show_or_hide_info": "Показать или скрыть информацию",
|
||||
"show_password": "Показать пароль",
|
||||
"show_person_options": "Показать опции персоны",
|
||||
"show_person_options": "Действия с человеком",
|
||||
"show_progress_bar": "Показать Индикатор Выполнения",
|
||||
"show_search_options": "Показать параметры поиска",
|
||||
"show_shared_links": "Показать публичные ссылки",
|
||||
"show_slideshow_transition": "Показать слайд-шоу переход",
|
||||
"show_supporter_badge": "Значок поддержки",
|
||||
"show_supporter_badge_description": "Показать значок поддержки",
|
||||
"show_text_search_menu": "Показать меню текстового поиска",
|
||||
"shuffle": "Перемешать",
|
||||
"sidebar": "Боковая панель",
|
||||
"sidebar_display_description": "Отображать раздел на боковой панели",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Трассировка стека",
|
||||
"start": "Старт",
|
||||
"start_date": "Дата начала",
|
||||
"start_date_before_end_date": "Дата начала должна быть меньше даты окончания",
|
||||
"state": "Регион",
|
||||
"status": "Состояние",
|
||||
"stop_casting": "Остановить трансляцию",
|
||||
|
|
@ -1978,7 +2011,7 @@
|
|||
"trash_page_select_assets_btn": "Выбранные объекты",
|
||||
"trash_page_title": "Корзина ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Объекты, хранящиеся в корзине более {days, plural, one {# дня} other {# дней}}, удаляются автоматически.",
|
||||
"troubleshoot": "Решение проблем",
|
||||
"troubleshoot": "Диагностика",
|
||||
"type": "Тип",
|
||||
"unable_to_change_pin_code": "Ошибка при изменении PIN-кода",
|
||||
"unable_to_setup_pin_code": "Ошибка при создании PIN-кода",
|
||||
|
|
@ -2037,7 +2070,7 @@
|
|||
"user": "Пользователь",
|
||||
"user_has_been_deleted": "Этот пользователь был удалён.",
|
||||
"user_id": "ID пользователя",
|
||||
"user_liked": "{user} отметил(а) {type, select, photo {это фото} video {это видео} asset {этот ресурс} other {этот альбом}}",
|
||||
"user_liked": "Пользователю {user} нравится {type, select, photo {это фото} video {это видео} asset {этот объект} other {этот альбом}}",
|
||||
"user_pin_code_settings": "PIN-код",
|
||||
"user_pin_code_settings_description": "Настройка PIN-кода для доступа к личной папке",
|
||||
"user_privacy": "Конфиденциальность пользователя",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Да",
|
||||
"you_dont_have_any_shared_links": "У вас нет публичных ссылок",
|
||||
"your_wifi_name": "Имя вашей Wi-Fi сети",
|
||||
"zoom_image": "Приблизить"
|
||||
"zoom_image": "Изменить масштаб",
|
||||
"zoom_to_bounds": "Увеличить до границ"
|
||||
}
|
||||
|
|
|
|||
40
i18n/sk.json
40
i18n/sk.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Povoliť ukladanie záznamov",
|
||||
"logging_level_description": "Ak je povolené, akú úroveň záznamov použiť.",
|
||||
"logging_settings": "Ukladanie záznamov",
|
||||
"machine_learning_availability_checks": "Kontroly dostupnosti",
|
||||
"machine_learning_availability_checks_description": "Automaticky zistiť a uprednostniť dostupné servery strojového učenia",
|
||||
"machine_learning_availability_checks_enabled": "Povoliť kontroly dostupnosti",
|
||||
"machine_learning_availability_checks_interval": "Interval kontroly",
|
||||
"machine_learning_availability_checks_interval_description": "Interval v milisekundách medzi kontrolami dostupnosti",
|
||||
"machine_learning_availability_checks_timeout": "Časový limit požiadavky",
|
||||
"machine_learning_availability_checks_timeout_description": "Časový limit v milisekundách pre kontroly dostupnosti",
|
||||
"machine_learning_clip_model": "Model CLIP",
|
||||
"machine_learning_clip_model_description": "Názov modelu CLIP je uvedený <link>tu</link>. Pamätajte, že pri zmene modelu je nutné znovu spustiť úlohu 'Inteligentné vyhľadávanie' pre všetky obrázky.",
|
||||
"machine_learning_duplicate_detection": "Detekcia duplikátov",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Administrátorské heslo",
|
||||
"administration": "Administrácia",
|
||||
"advanced": "Pokročilé",
|
||||
"advanced_settings_beta_timeline_subtitle": "Vyskúšajte prostredie novej aplikácie",
|
||||
"advanced_settings_beta_timeline_title": "Beta verzia časovej osi",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Túto možnosť použite na filtrovanie médií počas synchronizácie na základe alternatívnych kritérií. Túto možnosť vyskúšajte len vtedy, ak máte problémy s detekciou všetkých albumov v aplikácii.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTÁLNE] Použiť alternatívny filter synchronizácie albumu zariadenia",
|
||||
"advanced_settings_log_level_title": "Úroveň ukladania záznamov: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Ste si istý, že chcete odstrániť používateľa {user}?",
|
||||
"album_search_not_found": "Neboli nájdené žiadne albumy zodpovedajúce vášmu hľadaniu",
|
||||
"album_share_no_users": "Vyzerá to, že ste tento album zdieľali so všetkými používateľmi alebo nemáte žiadneho používateľa, s ktorým by ste ho mohli zdieľať.",
|
||||
"album_summary": "Súhrn albumu",
|
||||
"album_updated": "Album bol aktualizovaný",
|
||||
"album_updated_setting_description": "Obdržať e-mailové upozornenie, keď v zdieľanom albume pribudnú nové položky",
|
||||
"album_user_left": "Opustil {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Položky boli úspešne obnovené",
|
||||
"asset_skipped": "Preskočené",
|
||||
"asset_skipped_in_trash": "V koši",
|
||||
"asset_trashed": "Položka bola vyhodená",
|
||||
"asset_troubleshoot": "Riešenie problémov s položkami",
|
||||
"asset_uploaded": "Nahrané",
|
||||
"asset_uploading": "Nahráva sa…",
|
||||
"asset_viewer_settings_subtitle": "Spravujte nastavenia prehliadača galérie",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Automatické prehrávanie prezentácie",
|
||||
"back": "Späť",
|
||||
"back_close_deselect": "Späť, zavrieť alebo zrušiť výber",
|
||||
"background_backup_running_error": "V súčasnosti prebieha zálohovanie na pozadí, nie je možné spustiť ručné zálohovanie",
|
||||
"background_location_permission": "Povolenie na určenie polohy na pozadí",
|
||||
"background_location_permission_content": "Aby bolo možné prepínať siete pri spustení na pozadí, musí mať aplikácia Immich *vždy* presný prístup k polohe, aby mohla prečítať názov siete Wi-Fi",
|
||||
"background_options": "Možnosti pozadia",
|
||||
"backup": "Zálohovanie",
|
||||
"backup_album_selection_page_albums_device": "Albumy v zariadení ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Ťuknutím na položku ju zahrniete, dvojitým ťuknutím ju vylúčite",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Vybrať albumy",
|
||||
"backup_album_selection_page_selection_info": "Informácie o výbere",
|
||||
"backup_album_selection_page_total_assets": "Celkový počet jedinečných súborov",
|
||||
"backup_albums_sync": "Synchronizácia zálohovaných albumov",
|
||||
"backup_all": "Všetko",
|
||||
"backup_background_service_backup_failed_message": "Zálohovanie médií zlyhalo. Skúšam to znova…",
|
||||
"backup_background_service_connection_failed_message": "Nepodarilo sa pripojiť k serveru. Skúšam to znova…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Zmeniť PIN kód",
|
||||
"change_your_password": "Zmeniť heslo",
|
||||
"changed_visibility_successfully": "Viditeľnosť bola úspešne zmenená",
|
||||
"charging": "Nabíja sa",
|
||||
"charging_requirement_mobile_backup": "Zálohovanie na pozadí vyžaduje, aby bolo zariadenie nabíjané",
|
||||
"check_corrupt_asset_backup": "Skontrolovať, či nie sú poškodené zálohy položiek",
|
||||
"check_corrupt_asset_backup_button": "Vykonať kontrolu",
|
||||
"check_corrupt_asset_backup_description": "Spustiť túto kontrolu len cez Wi-Fi a po zálohovaní všetkých položiek. Tento postup môže trvať niekoľko minút.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Vytvoriť používateľa",
|
||||
"created": "Vytvorené",
|
||||
"created_at": "Vytvorené",
|
||||
"creating_linked_albums": "Vytváranie prepojených albumov...",
|
||||
"crop": "Orezať",
|
||||
"curated_object_page_title": "Veci",
|
||||
"current_device": "Súčasné zariadenie",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Chyba",
|
||||
"error_change_sort_album": "Nepodarilo sa zmeniť poradie albumu",
|
||||
"error_delete_face": "Chyba pri odstraňovaní tváre z položky",
|
||||
"error_getting_places": "Chyba pri získavaní polôh",
|
||||
"error_loading_image": "Nepodarilo sa načítať obrázok",
|
||||
"error_loading_partners": "Chyba pri načítaní partnerov: {error}",
|
||||
"error_saving_image": "Chyba: {error}",
|
||||
"error_tag_face_bounding_box": "Chyba pri označovaní tváre - nemožno získať súradnice ohraničujúceho poľa",
|
||||
"error_title": "Chyba - niečo sa pokazilo",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Žiadne obľúbené médiá",
|
||||
"feature_photo_updated": "Hlavný obrázok bol aktualizovaný",
|
||||
"features": "Funkcie",
|
||||
"features_in_development": "Funkcie vo vývoji",
|
||||
"features_setting_description": "Spravovať funkcie aplikácie",
|
||||
"file_name": "Názov súboru",
|
||||
"file_name_or_extension": "Názov alebo prípona súboru",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokálne",
|
||||
"local_asset_cast_failed": "Nie je možné preniesť médium, ktoré nie je nahrané na serveri",
|
||||
"local_assets": "Lokálne položky",
|
||||
"local_media_summary": "Súhrn lokálnych médií",
|
||||
"local_network": "Miestna sieť",
|
||||
"local_network_sheet_info": "Pri použití zadanej siete Wi-Fi sa aplikácia pripojí k serveru prostredníctvom tejto URL adresy",
|
||||
"location_permission": "Povolenie na určenie polohy",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Zadajte platnú zemepisnú dĺžku",
|
||||
"lock": "Zamknúť",
|
||||
"locked_folder": "Zamknutý priečinok",
|
||||
"log_detail_title": "Podrobnosti o zázname",
|
||||
"log_out": "Odhlásiť sa",
|
||||
"log_out_all_devices": "Odhlásiť všetky zariadenia",
|
||||
"logged_in_as": "Prihlásený ako {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Aktualizácia hesla prebehla úspešne",
|
||||
"logout_all_device_confirmation": "Ste si istý, že sa chcete odhlásiť zo všetkých zariadení?",
|
||||
"logout_this_device_confirmation": "Ste si istý, že sa chcete odhlásiť z tohoto zariadenia?",
|
||||
"logs": "Záznamy",
|
||||
"longitude": "Zemepisná dĺžka",
|
||||
"look": "Vzhľad",
|
||||
"loop_videos": "Opakovať videá",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Označiť ako prečítané",
|
||||
"marked_all_as_read": "Označené všetko ako prečítané",
|
||||
"matches": "Zhody",
|
||||
"matching_assets": "Vyhovujúce položky",
|
||||
"media_type": "Typ média",
|
||||
"memories": "Spomienky",
|
||||
"memories_all_caught_up": "Na dnes to je všetko",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Meno alebo prezývka",
|
||||
"network_requirement_photos_upload": "Použiť mobilné dáta na zálohovanie fotografií",
|
||||
"network_requirement_videos_upload": "Použiť mobilné dáta na zálohovanie videí",
|
||||
"network_requirements": "Požiadavky na sieť",
|
||||
"network_requirements_updated": "Požiadavky na sieť sa zmenili, obnovuje sa poradie zálohovania",
|
||||
"networking_settings": "Sieť",
|
||||
"networking_subtitle": "Spravovať nastavenia koncového bodu servera",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nová osoba",
|
||||
"new_pin_code": "Nový PIN kód",
|
||||
"new_pin_code_subtitle": "Toto je váš prvý prístup k zamknutému priečinku. Vytvorte si PIN kód na bezpečný prístup k tejto stránke",
|
||||
"new_timeline": "Nová časová os",
|
||||
"new_user_created": "Nový používateľ vytvorený",
|
||||
"new_version_available": "JE DOSTUPNÁ NOVÁ VERZIA",
|
||||
"newest_first": "Najprv najnovšie",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIKNITE A NAHRAJTE SVOJU PRVÚ FOTKU",
|
||||
"no_assets_to_show": "Žiadne položky",
|
||||
"no_cast_devices_found": "Nenašli sa žiadne zariadenia na prenos",
|
||||
"no_checksum_local": "Kontrola súčtu nie je k dispozícii – nie je možné načítať lokálne položky",
|
||||
"no_checksum_remote": "Kontrola súčtu nie je k dispozícii – nie je možné načítať vzdialené položky",
|
||||
"no_duplicates_found": "Nenašli sa žiadne duplicity.",
|
||||
"no_exif_info_available": "Nie sú dostupné exif údaje",
|
||||
"no_explore_results_message": "Nahrajte viac fotiek na objavovanie vašej zbierky.",
|
||||
"no_favorites_message": "Pridajte si obľúbené, aby ste rýchlo našli svoje najlepšie obrázky a videá",
|
||||
"no_libraries_message": "Vytvorí externú knižnicu na prezeranie fotiek a videí",
|
||||
"no_local_assets_found": "Neboli nájdené žiadne lokálne položky s touto kontrolnou sumou",
|
||||
"no_locked_photos_message": "Fotografie a videá v zamknutom priečinku sú skryté a nezobrazujú sa pri prehľadávaní alebo vyhľadávaní v knižnici.",
|
||||
"no_name": "Bez mena",
|
||||
"no_notifications": "Žiadne oznámenia",
|
||||
"no_people_found": "Nenašli sa žiadni vyhovujúci ľudia",
|
||||
"no_places": "Bez miesta",
|
||||
"no_remote_assets_found": "Neboli nájdené žiadne vzdialené položky s touto kontrolnou sumou",
|
||||
"no_results": "Žiadne výsledky",
|
||||
"no_results_description": "Skúste synonymum alebo všeobecnejší výraz",
|
||||
"no_shared_albums_message": "Vytvorí album na zdieľanie fotiek a videí s ľuďmi vo vašej sieti",
|
||||
"no_uploads_in_progress": "Žiadne prebiehajúce nahrávanie",
|
||||
"not_available": "Nedostupné",
|
||||
"not_in_any_album": "Nie je v žiadnom albume",
|
||||
"not_selected": "Nevybrané",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Poznámka: Ak chcete použiť Štítok úložiska na predtým nahrané médiá, spustite príkaz",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Spravovať predvoľby aplikácie",
|
||||
"preferences_settings_title": "Predvoľby",
|
||||
"preparing": "Pripravuje sa",
|
||||
"preset": "Predvoľba",
|
||||
"preview": "Náhľad",
|
||||
"previous": "Predošlé",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Prečítať zoznam zmien",
|
||||
"readonly_mode_disabled": "Režim iba na čítanie je vypnutý",
|
||||
"readonly_mode_enabled": "Režim iba na čítanie je zapnutý",
|
||||
"ready_for_upload": "Pripravené na nahratie",
|
||||
"reassign": "Preradiť",
|
||||
"reassigned_assets_to_existing_person": "Opätovne {count, plural, one {priradená # položka} few {priradené # položky} other {priradených # položiek}} k {name, select, null {existujúcej osobe} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Opätovne {count, plural, one {priradená # položka} few {priradené # položky} other {priradených # položiek}} novej osobe",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Pregenerovanie náhľadov",
|
||||
"remote": "Vzdialené",
|
||||
"remote_assets": "Vzdialené položky",
|
||||
"remote_media_summary": "Súhrn vzdialených médií",
|
||||
"remove": "Odstrániť",
|
||||
"remove_assets_album_confirmation": "Naozaj chcete odstrániť {count, plural, one {# položku} few {# položky} other {# položiek}} z albumu?",
|
||||
"remove_assets_shared_link_confirmation": "Naozaj chcete odstrániť {count, plural, one {# položku} few {# položky} other {# položiek}} z tohoto zdieľaného odkazu?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Zobraziť prechody v prezentácii",
|
||||
"show_supporter_badge": "Odznak podporovateľa",
|
||||
"show_supporter_badge_description": "Zobraziť odznak podporovateľa",
|
||||
"show_text_search_menu": "Zobraziť ponuku vyhľadávania textu",
|
||||
"shuffle": "Náhodné poradie",
|
||||
"sidebar": "Bočný panel",
|
||||
"sidebar_display_description": "Zobraziť odkaz na zobrazenie v bočnom paneli",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Výpis zásobníku",
|
||||
"start": "Spustiť",
|
||||
"start_date": "Počiatočný dátum",
|
||||
"start_date_before_end_date": "Dátum začiatku musí byť pred dátumom ukončenia",
|
||||
"state": "Štát",
|
||||
"status": "Stav",
|
||||
"stop_casting": "Zastaviť prenos",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Áno",
|
||||
"you_dont_have_any_shared_links": "Nemáte žiadne zdielané odkazy",
|
||||
"your_wifi_name": "Váš názov siete Wi-Fi",
|
||||
"zoom_image": "Priblížiť obrázok"
|
||||
"zoom_image": "Priblížiť obrázok",
|
||||
"zoom_to_bounds": "Zväčšiť na okraje"
|
||||
}
|
||||
|
|
|
|||
104
i18n/sl.json
104
i18n/sl.json
|
|
@ -8,7 +8,7 @@
|
|||
"actions": "Dejanja",
|
||||
"active": "Aktivno",
|
||||
"activity": "Aktivnost",
|
||||
"activity_changed": "Aktivnost {enabled, select, true {omogočena} other {onemogočena}}",
|
||||
"activity_changed": "Aktivnost je {enabled, select, true {omogočena} other {onemogočena}}",
|
||||
"add": "Dodaj",
|
||||
"add_a_description": "Dodaj opis",
|
||||
"add_a_location": "Dodaj lokacijo",
|
||||
|
|
@ -39,15 +39,15 @@
|
|||
"admin": {
|
||||
"add_exclusion_pattern_description": "Dodajte vzorec izključitev. Globiranje z uporabo *, ** in ? je podprto. Če želite prezreti vse datoteke v katerem koli imeniku z imenom \"Raw\", uporabite \"**/Raw/**\". Če želite prezreti vse datoteke, ki se končajo na \".tif\", uporabite \"**/*.tif\". Če želite prezreti absolutno pot, uporabite \"/pot/za/ignoriranje/**\".",
|
||||
"admin_user": "Skrbniški uporabnik",
|
||||
"asset_offline_description": "Sredstva zunanje knjižnice ni več mogoče najti na disku in je bilo premaknjeno v koš. Če je bila datoteka premaknjena znotraj knjižnice, preverite svojo časovnico za novo ustrezno sredstvo. Če želite obnoviti to sredstvo, zagotovite, da ima Immich dostop do spodnje poti datoteke, in skenirajte knjižnico.",
|
||||
"asset_offline_description": "Tega sredstva zunanje knjižnice ni več mogoče najti na disku in je bilo premaknjeno v koš. Če je bila datoteka premaknjena znotraj knjižnice, preverite svojo časovnico za novo ustrezno sredstvo. Če želite obnoviti to sredstvo, zagotovite, da ima Immich dostop do spodnje poti datoteke, in skenirajte knjižnico.",
|
||||
"authentication_settings": "Nastavitve preverjanja pristnosti",
|
||||
"authentication_settings_description": "Upravljanje gesel, OAuth in drugih nastavitev preverjanja pristnosti",
|
||||
"authentication_settings_disable_all": "Ali zares želite onemogočiti vse prijavne metode? Prijava bo popolnoma onemogočena.",
|
||||
"authentication_settings_reenable": "Ponovno omogoči z uporabo <link>strežniškega ukaza</link>.",
|
||||
"authentication_settings_reenable": "Za ponovno omogočanje uporabite <link>strežniški ukaz</link>.",
|
||||
"background_task_job": "Opravila v ozadju",
|
||||
"backup_database": "Ustvari izpis baze podatkov",
|
||||
"backup_database_enable_description": "Omogoči izpise baze podatkov",
|
||||
"backup_keep_last_amount": "Število prejšnjih odlagališč, ki jih je treba obdržati",
|
||||
"backup_keep_last_amount": "Število prejšnjih izpisov baze podatkov, ki jih je treba obdržati",
|
||||
"backup_onboarding_1_description": "kopijo zunaj lokacije v oblaku ali na drugi fizični lokaciji.",
|
||||
"backup_onboarding_2_description": "lokalne kopije na različnih napravah. To vključuje glavne datoteke in lokalno varnostno kopijo teh datotek.",
|
||||
"backup_onboarding_3_description": "skupno število kopij vaših podatkov, vključno z izvirnimi datotekami. To vključuje 1 kopijo zunaj lokacije in 2 lokalni kopiji.",
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
"backup_onboarding_title": "Varnostne kopije",
|
||||
"backup_settings": "Nastavitve izpisa baze podatkov",
|
||||
"backup_settings_description": "Upravljanje nastavitev izpisa podatkovne baze.",
|
||||
"cleared_jobs": "Razčiščeno opravilo za: {job}",
|
||||
"cleared_jobs": "Razčiščena opravila za: {job}",
|
||||
"config_set_by_file": "Konfiguracija je trenutno nastavljena s konfiguracijsko datoteko",
|
||||
"confirm_delete_library": "Ali ste prepričani, da želite izbrisati knjižnico {library}?",
|
||||
"confirm_delete_library_assets": "Ali ste prepričani, da želite izbrisati to knjižnico? To bo iz Immicha izbrisalo {count, plural, one {# vsebovani vir} two {# vsebovana vira} few {# vsebovane vire} other {vseh # vsebovanih virov}} in tega ni možno razveljaviti. Datoteke bodo ostale na disku.",
|
||||
|
|
@ -72,10 +72,10 @@
|
|||
"disable_login": "Onemogoči prijavo",
|
||||
"duplicate_detection_job_description": "Zaženite strojno učenje na sredstvih, da zaznate podobne slike. Zanaša se na Pametno Iskanje",
|
||||
"exclusion_pattern_description": "Vzorci izključitev vam omogočajo, da prezrete datoteke in mape pri skeniranju knjižnice. To je uporabno, če imate mape z datotekami, ki jih ne želite uvoziti, na primer datoteke RAW.",
|
||||
"external_library_management": "Upravljanje zunanje knjižnice",
|
||||
"external_library_management": "Upravljanje zunanjih knjižnic",
|
||||
"face_detection": "Zaznavanje obrazov",
|
||||
"face_detection_description": "Zaznajte obraze v sredstvih s pomočjo strojnega učenja. Pri videoposnetkih se upošteva samo sličica. \"Vse\" (ponovno) obdela vsa sredstva. \"Manjkajoče\" postavi v čakalno vrsto sredstva, ki še niso bila obdelana. Zaznani obrazi bodo postavljeni v čakalno vrsto za prepoznavanje obrazov, ko bo zaznavanje obrazov končano, in jih bodo združili v obstoječe ali nove osebe.",
|
||||
"facial_recognition_job_description": "Združi zaznane obraze v osebe. Ta korak se izvede po končanem zaznavanju obrazov. \"Vse\" (ponovno) združuje vse obraze. \"Manjkajoče\", doda v čakalno vrsto obraze, ki nimajo dodeljene osebe.",
|
||||
"face_detection_description": "Zaznavanje obrazov v sredstvih z uporabo strojnega učenja. Pri videoposnetkih se upošteva samo sličica. »Osveži« (ponovno) obdela vsa sredstva. »Ponastavi« dodatno izbriše vse trenutne podatke o obrazih. »Manjkajoča« uvrsti sredstva, ki še niso bila obdelana, v čakalno vrsto. Zaznani obrazi bodo po končanem zaznavanju obrazov uvrščeni v čakalno vrsto za prepoznavanje obrazov, pri čemer bodo združeni v obstoječe ali nove osebe.",
|
||||
"facial_recognition_job_description": "Združi zaznane obraze v osebe. Ta korak se izvede po končanem zaznavanju obrazov. »Ponastavi« (ponovno) združi vse obraze. »Manjkajoča« uvrsti obraze, ki jim ni dodeljena oseba, v čakalno vrsto.",
|
||||
"failed_job_command": "Za opravilo {job} ukaz {command} ni uspel",
|
||||
"force_delete_user_warning": "OPOZORILO: S tem boste takoj odstranili uporabnika in vsa sredstva. Tega ni mogoče razveljaviti in datotek ni mogoče obnoviti.",
|
||||
"image_format": "Format",
|
||||
|
|
@ -102,12 +102,12 @@
|
|||
"image_thumbnail_title": "Nastavitve sličic",
|
||||
"job_concurrency": "{job} sočasnost",
|
||||
"job_created": "Opravilo ustvarjeno",
|
||||
"job_not_concurrency_safe": "To opravilo ni sočasno-varno.",
|
||||
"job_not_concurrency_safe": "To delo ni varno za sočasnost.",
|
||||
"job_settings": "Nastavitve opravil",
|
||||
"job_settings_description": "Upravljaj sočasnost opravil",
|
||||
"job_status": "Status opravila",
|
||||
"jobs_delayed": "{jobCount, plural, other {# zadržan}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# neuspešen}}",
|
||||
"jobs_delayed": "{jobCount, plural, other {# zadržani}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# neuspešni}}",
|
||||
"library_created": "Ustvarjena knjižnica: {library}",
|
||||
"library_deleted": "Knjižnica izbrisana",
|
||||
"library_import_path_description": "Določi mapo za uvoz. Ta mapa in njene podmape bodo pregledane za slike in video posnetke.",
|
||||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Omogoči dnevnik",
|
||||
"logging_level_description": "Nivo dnevnika, ko je le-ta omogočen.",
|
||||
"logging_settings": "Dnevnik",
|
||||
"machine_learning_availability_checks": "Preverjanja razpoložljivosti",
|
||||
"machine_learning_availability_checks_description": "Samodejno zaznavanje in dajanje prednosti razpoložljivim strežnikom strojnega učenja",
|
||||
"machine_learning_availability_checks_enabled": "Omogoči preverjanja razpoložljivosti",
|
||||
"machine_learning_availability_checks_interval": "Interval preverjanja",
|
||||
"machine_learning_availability_checks_interval_description": "Interval v milisekundah med preverjanji razpoložljivosti",
|
||||
"machine_learning_availability_checks_timeout": "Zahteva za časovno omejitev",
|
||||
"machine_learning_availability_checks_timeout_description": "Časovna omejitev v milisekundah za preverjanje razpoložljivosti",
|
||||
"machine_learning_clip_model": "model CLIP",
|
||||
"machine_learning_clip_model_description": "Ime CLIP modela iz seznama <link>tukaj</link>. Vedite, da boste morali po menjavi modela ponovno zagnati opravilo za 'Pametno iskanje' za vse slike.",
|
||||
"machine_learning_duplicate_detection": "Zaznavanje dvojnikov",
|
||||
|
|
@ -131,7 +138,7 @@
|
|||
"machine_learning_duplicate_detection_setting_description": "Za iskanje verjetnih dvojnikov uporabite vdelave CLIP",
|
||||
"machine_learning_enabled": "Omogoči strojno učenje",
|
||||
"machine_learning_enabled_description": "Če je onemogočeno, bodo vse funkcije strojnega učenja onemogočene ne glede na spodnje nastavitve.",
|
||||
"machine_learning_facial_recognition": "Zaznavanje obrazov",
|
||||
"machine_learning_facial_recognition": "Prepoznavanje obrazov",
|
||||
"machine_learning_facial_recognition_description": "Zaznavanje, prepoznavanje in združevanje obrazov na slikah",
|
||||
"machine_learning_facial_recognition_model": "Model za prepoznavanje obraza",
|
||||
"machine_learning_facial_recognition_model_description": "Modeli so navedeni v padajočem vrstnem redu glede na velikost. Večji modeli so počasnejši in uporabljajo več pomnilnika, vendar dajejo boljše rezultate. Upoštevajte, da morate po spremembi modela znova zagnati opravilo zaznavanja obrazov za vse slike.",
|
||||
|
|
@ -144,7 +151,7 @@
|
|||
"machine_learning_min_detection_score": "Najmanjši rezultat zaznavanja",
|
||||
"machine_learning_min_detection_score_description": "Najmanjši rezultat zaupanja za zaznavanje obraza od 0-1. Nižje vrednosti bodo zaznale več obrazov, vendar lahko povzročijo lažne pozitivne rezultate.",
|
||||
"machine_learning_min_recognized_faces": "Najmanjše število prepoznanih obrazov",
|
||||
"machine_learning_min_recognized_faces_description": "Najmanjše število prepoznanih obrazov za osebo, ki se ustvari. Če to povečate, postane prepoznavanje obraza natančnejše na račun večje možnosti, da obraz ni dodeljen osebi.",
|
||||
"machine_learning_min_recognized_faces_description": "Najmanjše število prepoznanih obrazov za osebo, da se ustvari. Če to povečate, postane prepoznavanje obraza natančnejše na račun večje možnosti, da obraz ni dodeljen osebi.",
|
||||
"machine_learning_settings": "Nastavitve strojnega učenja",
|
||||
"machine_learning_settings_description": "Upravljajte funkcije in nastavitve strojnega učenja",
|
||||
"machine_learning_smart_search": "Pametno iskanje",
|
||||
|
|
@ -176,41 +183,41 @@
|
|||
"metadata_settings": "Nastavitve metapodatkov",
|
||||
"metadata_settings_description": "Upravljanje nastavitev metapodatkov",
|
||||
"migration_job": "Migracija",
|
||||
"migration_job_description": "Preselite sličice za sredstva in obraze v najnovejšo strukturo map",
|
||||
"migration_job_description": "Prenesite sličice za sredstva in obraze v najnovejšo strukturo map",
|
||||
"nightly_tasks_cluster_faces_setting_description": "Zaženi prepoznavanje obrazov na novo zaznanih obrazih",
|
||||
"nightly_tasks_cluster_new_faces_setting": "Združite nove obraze",
|
||||
"nightly_tasks_database_cleanup_setting": "Naloge čiščenja baze podatkov",
|
||||
"nightly_tasks_database_cleanup_setting_description": "Očistite stare, potekle podatke iz baze podatkov",
|
||||
"nightly_tasks_generate_memories_setting": "Ustvarjajte spomine",
|
||||
"nightly_tasks_generate_memories_setting_description": "Ustvarite nove spomine iz sredstev",
|
||||
"nightly_tasks_generate_memories_setting": "Ustvari spomine",
|
||||
"nightly_tasks_generate_memories_setting_description": "Ustvari nove spomine iz sredstev",
|
||||
"nightly_tasks_missing_thumbnails_setting": "Ustvari manjkajoče sličice",
|
||||
"nightly_tasks_missing_thumbnails_setting_description": "Sredstva brez sličic postavite v čakalno vrsto za ustvarjanje sličic",
|
||||
"nightly_tasks_settings": "Nastavitve nočnih opravil",
|
||||
"nightly_tasks_settings_description": "Upravljajte nočne naloge",
|
||||
"nightly_tasks_start_time_setting": "Začetni čas",
|
||||
"nightly_tasks_start_time_setting_description": "Čas, ko strežnik začne izvajati nočne naloge",
|
||||
"nightly_tasks_sync_quota_usage_setting": "Poraba kvote za sinhronizacijo",
|
||||
"nightly_tasks_sync_quota_usage_setting": "Posodobi kvoto porabljenega prostora",
|
||||
"nightly_tasks_sync_quota_usage_setting_description": "Posodobi kvoto shrambe uporabnikov glede na trenutno uporabo",
|
||||
"no_paths_added": "Ni dodanih poti",
|
||||
"no_pattern_added": "Brez dodanega vzorca",
|
||||
"no_pattern_added": "Nobenega dodanega vzorca",
|
||||
"note_apply_storage_label_previous_assets": "Opomba: Če želite oznako za shranjevanje uporabiti za predhodno naložena sredstva, zaženite",
|
||||
"note_cannot_be_changed_later": "OPOMBA: Tega pozneje ni mogoče spremeniti!",
|
||||
"notification_email_from_address": "Iz naslova",
|
||||
"notification_email_from_address_description": "E-poštni naslov pošiljatelja, na primer: \"Immich Photo Server <noreply@example.com>\". Uporabite naslov, s katerega lahko pošiljate e-pošto.",
|
||||
"notification_email_from_address": "Od naslova",
|
||||
"notification_email_from_address_description": "Pošiljateljev e-poštni naslov, na primer: \"Immich Photo Server <noreply@example.com>\". Uporabite naslov, s katerega lahko pošiljate e-pošto.",
|
||||
"notification_email_host_description": "Gostitelj e-poštnega strežnika (npr. smtp.immich.app)",
|
||||
"notification_email_ignore_certificate_errors": "Prezri napake potrdil",
|
||||
"notification_email_ignore_certificate_errors_description": "Prezri napake pri preverjanju potrdila TLS (ni priporočljivo)",
|
||||
"notification_email_password_description": "Geslo za uporabo pri preverjanju pristnosti z e-poštnim strežnikom",
|
||||
"notification_email_port_description": "Vrata e-poštnega strežnika (npr. 25, 465 ali 587)",
|
||||
"notification_email_sent_test_email_button": "Pošljite testno e-pošto in shranite",
|
||||
"notification_email_sent_test_email_button": "Pošljite testno e-pošto in shrani",
|
||||
"notification_email_setting_description": "Nastavitve za pošiljanje e-poštnih obvestil",
|
||||
"notification_email_test_email": "Pošlji testno e-pošto",
|
||||
"notification_email_test_email_failed": "Pošiljanje testnega e-poštnega sporočila ni uspelo, preverite svoje vrednosti",
|
||||
"notification_email_test_email_failed": "Pošiljanje testnega e-poštnega sporočila ni uspelo, preverite svoje podatke",
|
||||
"notification_email_test_email_sent": "Testno e-poštno sporočilo je bilo poslano na {email}. Prosimo, preverite svoj nabiralnik.",
|
||||
"notification_email_username_description": "Uporabniško ime za uporabo pri preverjanju pristnosti z e-poštnim strežnikom",
|
||||
"notification_enable_email_notifications": "Omogoči e-poštna obvestila",
|
||||
"notification_settings": "Nastavitve obvestil",
|
||||
"notification_settings_description": "Upravljajte nastavitve obvestil, vključno z e-pošto",
|
||||
"notification_settings_description": "Upravljaj z nastavitvami obvestil, vključno z e-pošto",
|
||||
"oauth_auto_launch": "Samodejni zagon",
|
||||
"oauth_auto_launch_description": "Samodejno zaženite tok prijave OAuth, ko obiščete stran za prijavo",
|
||||
"oauth_auto_register": "Samodejna registracija",
|
||||
|
|
@ -221,7 +228,7 @@
|
|||
"oauth_mobile_redirect_uri": "Mobilni preusmeritveni URI",
|
||||
"oauth_mobile_redirect_uri_override": "Preglasitev URI preusmeritve za mobilne naprave",
|
||||
"oauth_mobile_redirect_uri_override_description": "Omogoči, ko ponudnik OAuth ne dovoli mobilnega URI-ja, kot je ''{callback}''",
|
||||
"oauth_role_claim": "Zahteva vloge",
|
||||
"oauth_role_claim": "Zahteva za vlogo",
|
||||
"oauth_role_claim_description": "Samodejno dodeli skrbniški dostop na podlagi prisotnosti tega zahtevka. Zahtevek ima lahko »uporabnik« ali »skrbnik«.",
|
||||
"oauth_settings": "OAuth",
|
||||
"oauth_settings_description": "Upravljanje nastavitev prijave OAuth",
|
||||
|
|
@ -241,13 +248,13 @@
|
|||
"person_cleanup_job": "Čiščenje osebe",
|
||||
"quota_size_gib": "Velikost kvote (GiB)",
|
||||
"refreshing_all_libraries": "Osveževanje vseh knjižnic",
|
||||
"registration": "Administratorska registracija",
|
||||
"registration": "Registracija administratorja",
|
||||
"registration_description": "Ker ste prvi uporabnik v sistemu, boste dodeljeni kot skrbnik in ste odgovorni za skrbniška opravila, dodatne uporabnike pa boste ustvarili sami.",
|
||||
"require_password_change_on_login": "Od uporabnika zahtevajte spremembo gesla ob prvi prijavi",
|
||||
"reset_settings_to_default": "Ponastavi nastavitve na privzete",
|
||||
"reset_settings_to_recent_saved": "Ponastavite nastavitve na nedavno shranjene nastavitve",
|
||||
"scanning_library": "Pregledovanje knjižnice",
|
||||
"search_jobs": "Iskanje opravil…",
|
||||
"search_jobs": "Išči opravila…",
|
||||
"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)://",
|
||||
|
|
@ -256,7 +263,7 @@
|
|||
"server_settings": "Nastavitve strežnika",
|
||||
"server_settings_description": "Upravljanje nastavitev strežnika",
|
||||
"server_welcome_message": "Pozdravno sporočilo",
|
||||
"server_welcome_message_description": "Sporočilo, ki se prikaže na strani za prijavo.",
|
||||
"server_welcome_message_description": "Sporočilo prikazano na prijavni strani.",
|
||||
"sidecar_job": "Stranski metapodatki",
|
||||
"sidecar_job_description": "Odkrijte ali sinhronizirajte stranske metapodatke iz datotečnega sistema",
|
||||
"slideshow_duration_description": "Število sekund za prikaz posamezne slike",
|
||||
|
|
@ -264,7 +271,7 @@
|
|||
"storage_template_date_time_description": "Časovni žig ustvarjanja sredstva se uporablja za informacije o datumu in času",
|
||||
"storage_template_date_time_sample": "Vzorec časa {date}",
|
||||
"storage_template_enable_description": "Omogoči mehanizem predloge za shranjevanje",
|
||||
"storage_template_hash_verification_enabled": "Preverjanje zgoščevanja je omogočeno",
|
||||
"storage_template_hash_verification_enabled": "Omogočeno preverjanje zgoščene vrednosti",
|
||||
"storage_template_hash_verification_enabled_description": "Omogoči preverjanje zgoščene vrednosti, tega ne onemogočite, razen če niste prepričani o posledicah",
|
||||
"storage_template_migration": "Selitev predloge za shranjevanje",
|
||||
"storage_template_migration_description": "Uporabi trenutno <link>{template}</link> za predhodno naložena sredstva",
|
||||
|
|
@ -283,7 +290,7 @@
|
|||
"template_email_invite_album": "Predloga povabila v album",
|
||||
"template_email_preview": "Predogled",
|
||||
"template_email_settings": "E-poštne predloge",
|
||||
"template_email_update_album": "Predloga posodobitve albuma",
|
||||
"template_email_update_album": "Posodobi predlogo albuma",
|
||||
"template_email_welcome": "Predloga pozdravnega e-poštnega sporočila",
|
||||
"template_settings": "Predloge obvestil",
|
||||
"template_settings_description": "Upravljanje predlog po meri za obvestila",
|
||||
|
|
@ -299,14 +306,14 @@
|
|||
"transcoding_acceleration_qsv": "Hitra sinhronizacija (zahteva procesor Intel 7. generacije ali novejši)",
|
||||
"transcoding_acceleration_rkmpp": "RKMPP (samo na Rockchip SOC)",
|
||||
"transcoding_acceleration_vaapi": "VAAPI",
|
||||
"transcoding_accepted_audio_codecs": "Sprejeti zvočni kodeki",
|
||||
"transcoding_accepted_audio_codecs": "Dovoljeni zvočni kodeki",
|
||||
"transcoding_accepted_audio_codecs_description": "Izberite, katerih zvočnih kodekov ni treba prekodirati. Uporablja se samo za določene politike prekodiranja.",
|
||||
"transcoding_accepted_containers": "Sprejeti zabojniki",
|
||||
"transcoding_accepted_containers_description": "Izberite, katerih formatov zabojnika ni treba ponovno muksirati v MP4. Uporablja se samo za določene politike prekodiranja.",
|
||||
"transcoding_accepted_video_codecs": "Podprti video kodeki",
|
||||
"transcoding_accepted_video_codecs_description": "Izberite, katerih video kodekov ni treba prekodirati. Uporablja se samo za določene politike prekodiranja.",
|
||||
"transcoding_advanced_options_description": "Možnosti večini uporabnikov ne bi bilo treba spreminjati",
|
||||
"transcoding_audio_codec": "Avdio kodek",
|
||||
"transcoding_advanced_options_description": "Možnosti, ki jih večini uporabnikov ne treba spreminjati",
|
||||
"transcoding_audio_codec": "Zvočni kodek",
|
||||
"transcoding_audio_codec_description": "Opus je najbolj kakovostna možnost, vendar ima slabšo združljivost s starimi napravami ali programsko opremo.",
|
||||
"transcoding_bitrate_description": "Videoposnetki, ki presegajo največjo bitno hitrost ali niso v sprejemljivem formatu",
|
||||
"transcoding_codecs_learn_more": "Če želite izvedeti več o tukaj uporabljeni terminologiji, glejte dokumentacijo FFmpeg za <h264-link>kodek H.264</h264-link>, <hevc-link>kodek HEVC</hevc-link> in <vp9-link>VP9 kodek</vp9-link>.",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Skrbniško geslo",
|
||||
"administration": "Administracija",
|
||||
"advanced": "Napredno",
|
||||
"advanced_settings_beta_timeline_subtitle": "Preizkusite novo izkušnjo aplikacije",
|
||||
"advanced_settings_beta_timeline_title": "Časovnica beta različice",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Uporabite to možnost za filtriranje medijev med sinhronizacijo na podlagi alternativnih meril. To poskusite le, če imate težave z aplikacijo, ki zaznava vse albume.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EKSPERIMENTALNO] Uporabite alternativni filter za sinhronizacijo albuma v napravi",
|
||||
"advanced_settings_log_level_title": "Nivo dnevnika: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Ali ste prepričani, da želite odstraniti {user}?",
|
||||
"album_search_not_found": "Ni najdenih albumov, ki bi ustrezali vašemu iskanju",
|
||||
"album_share_no_users": "Videti je, da ste ta album dali v skupno rabo z vsemi uporabniki ali pa nimate nobenega uporabnika, s katerim bi ga lahko delili.",
|
||||
"album_summary": "Povzetek albuma",
|
||||
"album_updated": "Album posodobljen",
|
||||
"album_updated_setting_description": "Prejmite e-poštno obvestilo, ko ima album v skupni rabi nova sredstva",
|
||||
"album_user_left": "Zapustil {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Sredstvo uspešno obnovljeno",
|
||||
"asset_skipped": "Preskočeno",
|
||||
"asset_skipped_in_trash": "V smetnjak",
|
||||
"asset_trashed": "Sredstvo je bilo premaknjeno v koš",
|
||||
"asset_troubleshoot": "Odpravljanje težav s sredstvi",
|
||||
"asset_uploaded": "Naloženo",
|
||||
"asset_uploading": "Nalaganje…",
|
||||
"asset_viewer_settings_subtitle": "Upravljaj nastavitve pregledovalnika galerije",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Samodejno predvajanje diaprojekcije",
|
||||
"back": "Nazaj",
|
||||
"back_close_deselect": "Nazaj, zaprite ali prekličite izbiro",
|
||||
"background_backup_running_error": "Varnostno kopiranje v ozadju se trenutno izvaja, ročnega varnostnega kopiranja ni mogoče zagnati",
|
||||
"background_location_permission": "Dovoljenje za iskanje lokacije v ozadju",
|
||||
"background_location_permission_content": "Ko deluje v ozadju mora imeti Immich za zamenjavo omrežij, *vedno* dostop do natančne lokacije, da lahko aplikacija prebere ime omrežja Wi-Fi",
|
||||
"background_options": "Možnosti ozadja",
|
||||
"backup": "Varnostna kopija",
|
||||
"backup_album_selection_page_albums_device": "Albumi v napravi ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tapnite za vključitev, dvakrat tapnite za izključitev",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Izberi albume",
|
||||
"backup_album_selection_page_selection_info": "Informacije o izbiri",
|
||||
"backup_album_selection_page_total_assets": "Skupaj unikatnih sredstev",
|
||||
"backup_albums_sync": "Sinhronizacija varnostnih kopij albumov",
|
||||
"backup_all": "Vse",
|
||||
"backup_background_service_backup_failed_message": "Varnostno kopiranje sredstev ni uspelo. Ponovno poskušam…",
|
||||
"backup_background_service_connection_failed_message": "Povezava s strežnikom ni uspela. Ponovno poskušam…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Spremeni PIN kodo",
|
||||
"change_your_password": "Spremenite geslo",
|
||||
"changed_visibility_successfully": "Uspešno spremenjena vidnost",
|
||||
"charging": "Polnjenje",
|
||||
"charging_requirement_mobile_backup": "Za varnostno kopiranje v ozadju je potrebno polnjenje naprave",
|
||||
"check_corrupt_asset_backup": "Preverite poškodovane varnostne kopije sredstev",
|
||||
"check_corrupt_asset_backup_button": "Izvedi preverjanje",
|
||||
"check_corrupt_asset_backup_description": "To preverjanje zaženite samo prek omrežja Wi-Fi in potem, ko so vsa sredstva varnostno kopirana. Postopek lahko traja nekaj minut.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Ustvari uporabnika",
|
||||
"created": "Ustvarjeno",
|
||||
"created_at": "Ustvarjeno",
|
||||
"creating_linked_albums": "Ustvarjanje povezanih albumov ...",
|
||||
"crop": "Obrezovanje",
|
||||
"curated_object_page_title": "Stvari",
|
||||
"current_device": "Trenutna naprava",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Napaka",
|
||||
"error_change_sort_album": "Vrstnega reda albuma ni bilo mogoče spremeniti",
|
||||
"error_delete_face": "Napaka pri brisanju obraza iz sredstva",
|
||||
"error_getting_places": "Napaka pri pridobivanju mest",
|
||||
"error_loading_image": "Napaka pri nalaganju slike",
|
||||
"error_loading_partners": "Napaka pri nalaganju partnerjev: {error}",
|
||||
"error_saving_image": "Napaka: {error}",
|
||||
"error_tag_face_bounding_box": "Napaka pri označevanju obraza - ni mogoče pridobiti koordinat omejevalnega okvirja",
|
||||
"error_title": "Napaka - nekaj je šlo narobe",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Ni priljubljenih sredstev",
|
||||
"feature_photo_updated": "Funkcijska fotografija je posodobljena",
|
||||
"features": "Funkcije",
|
||||
"features_in_development": "Funkcije v razvoju",
|
||||
"features_setting_description": "Upravljaj funkcije aplikacije",
|
||||
"file_name": "Ime datoteke",
|
||||
"file_name_or_extension": "Ime ali končnica datoteke",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Lokalno",
|
||||
"local_asset_cast_failed": "Sredstva, ki niso naložena na strežnik, ni mogoče predvajati",
|
||||
"local_assets": "Lokalna sredstva",
|
||||
"local_media_summary": "Povzetek lokalnih medijev",
|
||||
"local_network": "Lokalno omrežje",
|
||||
"local_network_sheet_info": "Aplikacija se bo povezala s strežnikom prek tega URL-ja, ko bo uporabljala navedeno omrežje Wi-Fi",
|
||||
"location_permission": "Dovoljenje za lokacijo",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Tukaj vnesi svojo zemljepisno dolžino",
|
||||
"lock": "Zaklepanje",
|
||||
"locked_folder": "Zaklenjena mapa",
|
||||
"log_detail_title": "Podrobnosti dnevnika",
|
||||
"log_out": "Odjava",
|
||||
"log_out_all_devices": "Odjava vseh naprav",
|
||||
"logged_in_as": "Prijavljen kot {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Geslo je bilo uspešno posodobljeno",
|
||||
"logout_all_device_confirmation": "Ali ste prepričani, da želite odjaviti vse naprave?",
|
||||
"logout_this_device_confirmation": "Ali ste prepričani, da se želite odjaviti iz te naprave?",
|
||||
"logs": "Dnevniki",
|
||||
"longitude": "Zemljepisna dolžina",
|
||||
"look": "Izgled",
|
||||
"loop_videos": "Zanka videoposnetkov",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Označi kot prebrano",
|
||||
"marked_all_as_read": "Označeno vse kot prebrano",
|
||||
"matches": "Ujemanja",
|
||||
"matching_assets": "Ujemajoča se sredstva",
|
||||
"media_type": "Vrsta medija",
|
||||
"memories": "Spomini",
|
||||
"memories_all_caught_up": "Vse dohiteno",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Ime ali vzdevek",
|
||||
"network_requirement_photos_upload": "Uporaba mobilnih podatkov za varnostno kopiranje fotografij",
|
||||
"network_requirement_videos_upload": "Uporaba mobilnih podatkov za varnostno kopiranje videoposnetkov",
|
||||
"network_requirements": "Omrežne zahteve",
|
||||
"network_requirements_updated": "Omrežne zahteve so se spremenile, ponastavitev čakalne vrste za varnostno kopiranje",
|
||||
"networking_settings": "Omrežje",
|
||||
"networking_subtitle": "Upravljaj nastavitve končne točke strežnika",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Nova oseba",
|
||||
"new_pin_code": "Nova PIN koda",
|
||||
"new_pin_code_subtitle": "To je vaš prvi dostop do zaklenjene mape. Ustvarite PIN kodo za varen dostop do te strani",
|
||||
"new_timeline": "Nova časovnica",
|
||||
"new_user_created": "Nov uporabnik ustvarjen",
|
||||
"new_version_available": "NA VOLJO JE NOVA RAZLIČICA",
|
||||
"newest_first": "Najprej najnovejše",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLIKNITE ZA NALOŽITEV SVOJE PRVE FOTOGRAFIJE",
|
||||
"no_assets_to_show": "Ni sredstev za prikaz",
|
||||
"no_cast_devices_found": "Naprav za predvajanje ni bilo mogoče najti",
|
||||
"no_checksum_local": "Kontrolna vsota ni na voljo – lokalnih sredstev ni mogoče pridobiti",
|
||||
"no_checksum_remote": "Kontrolna vsota ni na voljo – oddaljenega sredstva ni mogoče pridobiti",
|
||||
"no_duplicates_found": "Najden ni bil noben dvojnik.",
|
||||
"no_exif_info_available": "Podatki o exif niso na voljo",
|
||||
"no_explore_results_message": "Naložite več fotografij, da raziščete svojo zbirko.",
|
||||
"no_favorites_message": "Dodajte priljubljene, da hitreje najdete svoje najboljše slike in videoposnetke",
|
||||
"no_libraries_message": "Ustvarite zunanjo knjižnico za ogled svojih fotografij in videoposnetkov",
|
||||
"no_local_assets_found": "S to kontrolno vsoto ni bilo najdenih lokalnih sredstev",
|
||||
"no_locked_photos_message": "Fotografije in videoposnetki v zaklenjeni mapi so skriti in se ne bodo prikazali med brskanjem ali iskanjem po knjižnici.",
|
||||
"no_name": "Brez imena",
|
||||
"no_notifications": "Ni obvestil",
|
||||
"no_people_found": "Ni najdenih ustreznih oseb",
|
||||
"no_places": "Ni krajev",
|
||||
"no_remote_assets_found": "S to kontrolno vsoto ni bilo najdenih oddaljenih sredstev",
|
||||
"no_results": "Brez rezultatov",
|
||||
"no_results_description": "Poskusite s sinonimom ali bolj splošno ključno besedo",
|
||||
"no_shared_albums_message": "Ustvarite album za skupno rabo fotografij in videoposnetkov z osebami v vašem omrežju",
|
||||
"no_uploads_in_progress": "Ni nalaganj v teku",
|
||||
"not_available": "Ni na voljo",
|
||||
"not_in_any_album": "Ni v nobenem albumu",
|
||||
"not_selected": "Ni izbrano",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Opomba: Če želite oznako za shranjevanje uporabiti za predhodno naložena sredstva, zaženite",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Vrata",
|
||||
"preferences_settings_subtitle": "Upravljaj nastavitve aplikacije",
|
||||
"preferences_settings_title": "Nastavitve",
|
||||
"preparing": "Priprava",
|
||||
"preset": "Prednastavitev",
|
||||
"preview": "Predogled",
|
||||
"previous": "Prejšnj-a/-i",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Preberi dnevnik sprememb",
|
||||
"readonly_mode_disabled": "Način samo za branje je onemogočen",
|
||||
"readonly_mode_enabled": "Način samo za branje je omogočen",
|
||||
"ready_for_upload": "Pripravljeno za nalaganje",
|
||||
"reassign": "Prerazporedi",
|
||||
"reassigned_assets_to_existing_person": "Ponovno dodeljeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} za {name, select, null {an existing person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Ponovno dodeljeno {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} za novo osebo",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Obnavljanje sličic",
|
||||
"remote": "Oddaljeno",
|
||||
"remote_assets": "Oddaljena sredstva",
|
||||
"remote_media_summary": "Povzetek oddaljenih medijev",
|
||||
"remove": "Odstrani",
|
||||
"remove_assets_album_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} iz albuma?",
|
||||
"remove_assets_shared_link_confirmation": "Ali ste prepričani, da želite odstraniti {count, plural, one {# sredstvo} two {# sredstvi} few {# sredstva} other {# sredstev}} iz te skupne povezave?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Prikaži prehod diaprojekcije",
|
||||
"show_supporter_badge": "Značka podpornika",
|
||||
"show_supporter_badge_description": "Prikaži značko podpornika",
|
||||
"show_text_search_menu": "Prikaži meni za iskanje po besedilu",
|
||||
"shuffle": "Naključno",
|
||||
"sidebar": "Stranska vrstica",
|
||||
"sidebar_display_description": "Prikaži povezavo do pogleda v stranski vrstici",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Sled nabora",
|
||||
"start": "Začetek",
|
||||
"start_date": "Datum začetka",
|
||||
"start_date_before_end_date": "Začetni datum mora biti pred končnim datumom",
|
||||
"state": "Dežela",
|
||||
"status": "Status",
|
||||
"stop_casting": "Ustavi predvajanje",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Da",
|
||||
"you_dont_have_any_shared_links": "Nimate nobenih skupnih povezav",
|
||||
"your_wifi_name": "Vaše ime Wi-Fi",
|
||||
"zoom_image": "Povečava slike"
|
||||
"zoom_image": "Povečava slike",
|
||||
"zoom_to_bounds": "Povečaj do meja"
|
||||
}
|
||||
|
|
|
|||
54
i18n/sv.json
54
i18n/sv.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Aktivera loggning",
|
||||
"logging_level_description": "Vilken loggnivå som ska användas vid aktivering.",
|
||||
"logging_settings": "Loggning",
|
||||
"machine_learning_availability_checks": "Tillgänglighetskontroller",
|
||||
"machine_learning_availability_checks_description": "Upptäck och föredrar automatiskt tillgängliga maskininlärningsservrar",
|
||||
"machine_learning_availability_checks_enabled": "Aktivera tillgänglighetskontroller",
|
||||
"machine_learning_availability_checks_interval": "Kontrollera intervall",
|
||||
"machine_learning_availability_checks_interval_description": "Intervall i millisekunder mellan tillgänglighetskontroller",
|
||||
"machine_learning_availability_checks_timeout": "Begär timeout",
|
||||
"machine_learning_availability_checks_timeout_description": "Timeout i millisekunder för tillgänglighetskontroller",
|
||||
"machine_learning_clip_model": "CLIP-modell",
|
||||
"machine_learning_clip_model_description": "Namnet på en CLIP-modell listad <link> här </link>. Observera att du måste köra ett \"Smart Sökning\" jobb för alla bilder när du ändrar modell.",
|
||||
"machine_learning_duplicate_detection": "Dubblettdetektering",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Admin Lösenord",
|
||||
"administration": "Administration",
|
||||
"advanced": "Avancerat",
|
||||
"advanced_settings_beta_timeline_subtitle": "Testa den nya appupplevelsen",
|
||||
"advanced_settings_beta_timeline_title": "Tidslinje(BETA)",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Använd det här alternativet för att filtrera media under synkronisering baserat på alternativa kriterier. Prova detta endast om du har problem med att appen inte hittar alla album.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[EXPERIMENTELLT] Använd alternativ enhetsalbum-synkroniseringsfilter",
|
||||
"advanced_settings_log_level_title": "Loggnivå: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Är du säker på att du vill ta bort {user}?",
|
||||
"album_search_not_found": "Inga album hittades som matchade din sökning",
|
||||
"album_share_no_users": "Det verkar som att du har delat det här albumet med alla användare eller så har du inte någon användare att dela med.",
|
||||
"album_summary": "Albumsammanfattning",
|
||||
"album_updated": "Albumet uppdaterat",
|
||||
"album_updated_setting_description": "Få ett e-postmeddelande när ett delat album har nya tillgångar",
|
||||
"album_user_left": "Lämnade {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Objekt återställt",
|
||||
"asset_skipped": "Överhoppad",
|
||||
"asset_skipped_in_trash": "I papperskorgen",
|
||||
"asset_trashed": "Tillgång kasserad",
|
||||
"asset_troubleshoot": "Felsökning av tillgångar",
|
||||
"asset_uploaded": "Uppladdad",
|
||||
"asset_uploading": "Laddar upp...…",
|
||||
"asset_viewer_settings_subtitle": "Hantera inställningar för gallerivisare",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Spela upp bildspel automatiskt",
|
||||
"back": "Bakåt",
|
||||
"back_close_deselect": "Tillbaka, stäng eller avmarkera",
|
||||
"background_backup_running_error": "Bakgrundssäkerhetskopiering körs för närvarande, kan inte starta manuell säkerhetskopiering",
|
||||
"background_location_permission": "Tillåtelse för bakgrundsplats",
|
||||
"background_location_permission_content": "För att kunna byta nätverk när appen körs i bakgrunden måste Immich *alltid* ha åtkomst till exakt plats så att appen kan läsa av Wi-Fi-nätverkets namn",
|
||||
"background_options": "Bakgrundsalternativ",
|
||||
"backup": "Säkerhetskopiera",
|
||||
"backup_album_selection_page_albums_device": "Album på enhet ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Välj album",
|
||||
"backup_album_selection_page_selection_info": "Info om valda objekt",
|
||||
"backup_album_selection_page_total_assets": "Antal unika objekt",
|
||||
"backup_albums_sync": "Säkerhetskopiera album synkronisering",
|
||||
"backup_all": "Allt",
|
||||
"backup_background_service_backup_failed_message": "Säkerhetskopiering av foton och videor misslyckades. Försöker igen…",
|
||||
"backup_background_service_connection_failed_message": "Anslutning till servern misslyckades. Försöker igen…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Ändra PIN-kod",
|
||||
"change_your_password": "Ändra ditt lösenord",
|
||||
"changed_visibility_successfully": "Synligheten har ändrats",
|
||||
"charging": "Laddar",
|
||||
"charging_requirement_mobile_backup": "Bakgrundssäkerhetskopiering kräver att enheten laddas",
|
||||
"check_corrupt_asset_backup": "Kontrollera om det finns korrupta säkerhetskopior av objekt",
|
||||
"check_corrupt_asset_backup_button": "Kontrollera",
|
||||
"check_corrupt_asset_backup_description": "Kör kontrollen endast över Wi-Fi och när alla objekt har säkerhetskopierats. Det kan ta några minuter.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Skapa användare",
|
||||
"created": "Skapad",
|
||||
"created_at": "Skapad",
|
||||
"creating_linked_albums": "Skapar länkade album...",
|
||||
"crop": "Beskär",
|
||||
"curated_object_page_title": "Objekt",
|
||||
"current_device": "Aktuell enhet",
|
||||
|
|
@ -871,7 +885,7 @@
|
|||
"editor_close_without_save_prompt": "Ändringarna kommer inte att sparas",
|
||||
"editor_close_without_save_title": "Stäng redigeraren?",
|
||||
"editor_crop_tool_h2_aspect_ratios": "Bildförhållande",
|
||||
"editor_crop_tool_h2_rotation": "Rotation",
|
||||
"editor_crop_tool_h2_rotation": "Vridning",
|
||||
"email": "Epost",
|
||||
"email_notifications": "E-postaviseringar",
|
||||
"empty_folder": "Mappen är tom",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Fel",
|
||||
"error_change_sort_album": "Kunde inte ändra sorteringsordning för album",
|
||||
"error_delete_face": "Fel uppstod när ansikte skulle tas bort från objektet",
|
||||
"error_getting_places": "Det gick inte att hämta platser",
|
||||
"error_loading_image": "Fel vid bildladdning",
|
||||
"error_loading_partners": "Fel vid inläsning av partner: {error}",
|
||||
"error_saving_image": "Fel: {error}",
|
||||
"error_tag_face_bounding_box": "Fel vid taggning av ansikte – kan inte hämta koordinater för begränsningsruta",
|
||||
"error_title": "Fel – något gick fel",
|
||||
|
|
@ -1015,7 +1031,7 @@
|
|||
"unable_to_update_user": "Kunde inte uppdatera användare",
|
||||
"unable_to_upload_file": "Det går inte att ladda upp filen"
|
||||
},
|
||||
"exif": "Exif",
|
||||
"exif": "EXIF",
|
||||
"exif_bottom_sheet_description": "Lägg till beskrivning...",
|
||||
"exif_bottom_sheet_description_error": "Fel vid uppdatering av beskrivningen",
|
||||
"exif_bottom_sheet_details": "DETALJER",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Inga favoritobjekt hittades",
|
||||
"feature_photo_updated": "Funktionsfoto uppdaterad",
|
||||
"features": "Funktioner",
|
||||
"features_in_development": "Funktioner i utveckling",
|
||||
"features_setting_description": "Hantera appens funktioner",
|
||||
"file_name": "Filnamn",
|
||||
"file_name_or_extension": "Filnamn eller -tillägg",
|
||||
|
|
@ -1071,7 +1088,7 @@
|
|||
"folders_feature_description": "Bläddra i mappvyn för foton och videoklipp i filsystemet",
|
||||
"forgot_pin_code_question": "Glömt din pinkod?",
|
||||
"forward": "Framåt",
|
||||
"gcast_enabled": "Google Cast",
|
||||
"gcast_enabled": "Google-Cast",
|
||||
"gcast_enabled_description": "Denna funktion läser in externa resurser från Google för att fungera.",
|
||||
"general": "Allmänt",
|
||||
"geolocation_instruction_location": "Klicka på en tillgång med GPS-koordinater för att använda dess plats, eller välj en plats direkt från kartan",
|
||||
|
|
@ -1213,11 +1230,12 @@
|
|||
"link_to_oauth": "Länk till OAuth",
|
||||
"linked_oauth_account": "Länkat OAuth konto",
|
||||
"list": "Lista",
|
||||
"loading": "Laddar",
|
||||
"loading": "Inläsning",
|
||||
"loading_search_results_failed": "Det gick inte att läsa in sökresultat",
|
||||
"local": "Lokalt",
|
||||
"local_asset_cast_failed": "Det går inte att casta en tillgång som inte har laddats upp till servern",
|
||||
"local_assets": "Lokala tillgångar",
|
||||
"local_media_summary": "Sammanfattning av lokala medier",
|
||||
"local_network": "Lokalt nätverk",
|
||||
"local_network_sheet_info": "Appen kommer ansluta till servern via denna URL när det specificerade WiFi-nätverket används",
|
||||
"location_permission": "Plats-rättighet",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Ange din longitud här",
|
||||
"lock": "Lås",
|
||||
"locked_folder": "Låst Mapp",
|
||||
"log_detail_title": "Loggdetalj",
|
||||
"log_out": "Logga ut",
|
||||
"log_out_all_devices": "Logga ut alla enheter",
|
||||
"logged_in_as": "Inloggad som {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Uppdatering av lösenord lyckades",
|
||||
"logout_all_device_confirmation": "Är du säker på att du vill logga ut från alla enheter?",
|
||||
"logout_this_device_confirmation": "Är du säker på att du vill logga ut från denna enhet?",
|
||||
"logs": "Loggar",
|
||||
"longitude": "Longitud",
|
||||
"look": "Titta",
|
||||
"loop_videos": "Loopa videor",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Markera som läst",
|
||||
"marked_all_as_read": "Markerade alla som lästa",
|
||||
"matches": "Matchar",
|
||||
"matching_assets": "Matchande tillgångar",
|
||||
"media_type": "Mediatyp",
|
||||
"memories": "Minnen",
|
||||
"memories_all_caught_up": "Du är ikapp",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Namn eller smeknamn",
|
||||
"network_requirement_photos_upload": "Använd mobildata för att säkerhetskopiera foton",
|
||||
"network_requirement_videos_upload": "Använd mobildata för att säkerhetskopiera videor",
|
||||
"network_requirements": "Nätverkskrav",
|
||||
"network_requirements_updated": "Nätverkskraven har ändrats, återställer säkerhetskopieringskön",
|
||||
"networking_settings": "Nätverk",
|
||||
"networking_subtitle": "Hantera inställningar för server-endpointen",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Ny person",
|
||||
"new_pin_code": "Ny PIN-kod",
|
||||
"new_pin_code_subtitle": "Det här är första gången du öppnar den låsta mappen. Skapa en PIN-kod för att säkert få åtkomst till den här sidan",
|
||||
"new_timeline": "Ny tidslinje",
|
||||
"new_user_created": "Ny användare skapad",
|
||||
"new_version_available": "NY VERSION TILLGÄNGLIG",
|
||||
"newest_first": "Nyast först",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "KLICKA FÖR ATT LADDA UPP DIN FÖRSTA BILD",
|
||||
"no_assets_to_show": "Inga objekt att visa",
|
||||
"no_cast_devices_found": "Inga Cast-enheter hittades",
|
||||
"no_checksum_local": "Ingen kontrollsumma tillgänglig - kan inte hämta lokala tillgångar",
|
||||
"no_checksum_remote": "Ingen kontrollsumma tillgänglig - kan inte hämta fjärrtillgång",
|
||||
"no_duplicates_found": "Inga dubbletter hittades.",
|
||||
"no_exif_info_available": "EXIF-information ej tillgänglig",
|
||||
"no_explore_results_message": "Ladda upp fler bilder för att utforska din samling.",
|
||||
"no_favorites_message": "Lägg till favoriter för att snabbt hitta dina bästa bilder och videor",
|
||||
"no_libraries_message": "Skapa ett externt bibliotek för att se dina bilder och videor",
|
||||
"no_local_assets_found": "Inga lokala tillgångar hittades med denna kontrollsumma",
|
||||
"no_locked_photos_message": "Foton och videor i den låsta mappen är dolda och visas inte när du bläddrar eller söker i ditt bibliotek.",
|
||||
"no_name": "Inget namn",
|
||||
"no_notifications": "Inga aviseringar",
|
||||
"no_people_found": "Inga matchande personer hittade",
|
||||
"no_places": "Inga platser",
|
||||
"no_remote_assets_found": "Inga fjärrtillgångar hittades med denna kontrollsumma",
|
||||
"no_results": "Inga resultat",
|
||||
"no_results_description": "Pröva en synonym eller ett annat mer allmänt sökord",
|
||||
"no_shared_albums_message": "Skapa ett album för att dela bilder och videor med andra personer",
|
||||
"no_uploads_in_progress": "Inga uppladdningar pågår",
|
||||
"not_available": "N/A",
|
||||
"not_in_any_album": "Inte i något album",
|
||||
"not_selected": "Ej vald",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Obs: Om du vill använda lagringsetiketten på tidigare uppladdade tillgångar kör du",
|
||||
|
|
@ -1499,6 +1527,7 @@
|
|||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Hantera appens inställningar",
|
||||
"preferences_settings_title": "Inställningar",
|
||||
"preparing": "Förbereder",
|
||||
"preset": "Förinställt värde",
|
||||
"preview": "Förhandsvisning",
|
||||
"previous": "Föregående",
|
||||
|
|
@ -1515,14 +1544,14 @@
|
|||
"profile_drawer_client_out_of_date_minor": "Mobilappen är föråldrad. Uppdatera till senaste versionen.",
|
||||
"profile_drawer_client_server_up_to_date": "Klient och server är uppdaterade",
|
||||
"profile_drawer_github": "GitHub",
|
||||
"profile_drawer_readonly_mode": "Skrivskyddat läge aktiverat. Håll in användaravatarikonen för att avsluta",
|
||||
"profile_drawer_readonly_mode": "Skrivskyddat läge aktiverat. Långtryck användaravatarikonen för att avsluta.",
|
||||
"profile_drawer_server_out_of_date_major": "Servern har en föråldrad mjukvara. Uppdatera till senaste versionen.",
|
||||
"profile_drawer_server_out_of_date_minor": "Servern har en föråldrad mjukvara. Uppdatera till senaste versionen.",
|
||||
"profile_image_of_user": "{user} profilbild",
|
||||
"profile_picture_set": "Profilbild vald.",
|
||||
"public_album": "Publikt album",
|
||||
"public_share": "Offentlig delning",
|
||||
"purchase_account_info": "Supporter",
|
||||
"purchase_account_info": "Anhängare",
|
||||
"purchase_activated_subtitle": "Tack för att du stödjer Immich och open source-mjukvara",
|
||||
"purchase_activated_time": "Aktiverad {date}",
|
||||
"purchase_activated_title": "Aktiveringan av din nyckel lyckades",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Läs ändringslogg",
|
||||
"readonly_mode_disabled": "Skrivskyddat läge inaktiverat",
|
||||
"readonly_mode_enabled": "Skrivskyddat läge aktiverat",
|
||||
"ready_for_upload": "Redo för uppladdning",
|
||||
"reassign": "Omfördela",
|
||||
"reassigned_assets_to_existing_person": "Tilldelade om {count, plural, one {# objekt} other {# objekt}} till {name, select, null {an existing person} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Tilldelade om {count, plural, one {# objekt} other {# objekt}} till en ny persson",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Uppdaterar miniatyrer",
|
||||
"remote": "Fjärrr",
|
||||
"remote_assets": "Fjärrtillgångar",
|
||||
"remote_media_summary": "Sammanfattning av fjärrmedia",
|
||||
"remove": "Ta bort",
|
||||
"remove_assets_album_confirmation": "Är du säker på att du vill ta bort {count, plural, one {# asset} other {# assets}} från albumet?",
|
||||
"remove_assets_shared_link_confirmation": "Är du säker på att du vill ta bort {count, plural, one {# asset} other {# assets}} från denna delade länk?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Visa bildspelsövergång",
|
||||
"show_supporter_badge": "Supporteremblem",
|
||||
"show_supporter_badge_description": "Visa supporteremblem",
|
||||
"show_text_search_menu": "Visa textsökningsmeny",
|
||||
"shuffle": "Blanda",
|
||||
"sidebar": "Sidopanel",
|
||||
"sidebar_display_description": "Visa en länk till vyn i sidofältet",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Stapelspårning",
|
||||
"start": "Starta",
|
||||
"start_date": "Startdatum",
|
||||
"start_date_before_end_date": "Startdatumet måste vara före slutdatumet",
|
||||
"state": "Stat",
|
||||
"status": "Status",
|
||||
"stop_casting": "Sluta casta",
|
||||
|
|
@ -1909,7 +1942,7 @@
|
|||
"suggestions": "Förslag",
|
||||
"sunrise_on_the_beach": "Soluppgång på stranden",
|
||||
"support": "Support",
|
||||
"support_and_feedback": "Support & Feedback",
|
||||
"support_and_feedback": "Support och Feedback",
|
||||
"support_third_party_description": "Din Immich-installation paketerades av en tredje part. Problem som du upplever kan orsakas av det paketet, så vänligen ta upp problem med dem i första hand med hjälp av länkarna nedan.",
|
||||
"swap_merge_direction": "Byt sammanfogningsriktning",
|
||||
"sync": "Synka",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Ja",
|
||||
"you_dont_have_any_shared_links": "Du har inga delade länkar",
|
||||
"your_wifi_name": "Ditt Wi-Fi-namn",
|
||||
"zoom_image": "Zooma bild"
|
||||
"zoom_image": "Zooma bild",
|
||||
"zoom_to_bounds": "Zooma till gränser"
|
||||
}
|
||||
|
|
|
|||
851
i18n/ta.json
851
i18n/ta.json
File diff suppressed because it is too large
Load diff
120
i18n/tr.json
120
i18n/tr.json
|
|
@ -11,14 +11,14 @@
|
|||
"activity_changed": "Etkinlik {enabled, select, true {etkin} other {devre dışı}}",
|
||||
"add": "Ekle",
|
||||
"add_a_description": "Açıklama ekle",
|
||||
"add_a_location": "Konum ekle",
|
||||
"add_a_location": "Bir konum ekle",
|
||||
"add_a_name": "İsim ekle",
|
||||
"add_a_title": "Başlık ekle",
|
||||
"add_birthday": "Doğum günü ekle",
|
||||
"add_endpoint": "Uç nokta ekle",
|
||||
"add_exclusion_pattern": "Hariç tutma deseni ekle",
|
||||
"add_import_path": "İçe aktarma yolu ekle",
|
||||
"add_location": "Lokasyon ekle",
|
||||
"add_location": "Konum ekle",
|
||||
"add_more_users": "Daha fazla kullanıcı ekle",
|
||||
"add_partner": "Partner ekle",
|
||||
"add_path": "Yol ekle",
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
"added_to_favorites_count": "{count, number} fotoğraf favorilere eklendi",
|
||||
"admin": {
|
||||
"add_exclusion_pattern_description": "Hariç tutma desenleri ekleyin. *, ** ve ? kullanılarak Globbing (temsili yer doldurucu karakter) desteklenir. Farzedelim \"Raw\" adlı bir dizininiz var, içinde ki tüm dosyaları yoksaymak için \"**/Raw/**\" şeklinde yazabilirsiniz. \".tif\" ile biten tüm dosyaları yoksaymak için \"**/*.tif\" yazabilirsiniz. Mutlak yolu yoksaymak için \"/yoksayılacak/olan/yol/**\" şeklinde yazabilirsiniz.",
|
||||
"admin_user": "Yönetici kullanıcısı",
|
||||
"admin_user": "Yönetici Kullanıcı",
|
||||
"asset_offline_description": "Bu harici kütüphane öğesi artık diskte bulunmuyor ve çöp kutusuna taşındı. Dosya kütüphane içinde taşındıysa, yeni karşılık gelen öğe için zaman çizelgenizi kontrol edin. Bu öğeyi geri yüklemek için lütfen aşağıdaki dosya yolunun Immich tarafından erişilebilir olduğundan emin olun ve kütüphaneyi tarayın.",
|
||||
"authentication_settings": "Yetkilendirme Ayarları",
|
||||
"authentication_settings_description": "Şifre, OAuth, ve diğer yetkilendirme ayarlarını yönet",
|
||||
|
|
@ -66,9 +66,9 @@
|
|||
"confirm_user_password_reset": "{user} adlı kullanıcının şifresini sıfırlamak istediğinize emin misiniz?",
|
||||
"confirm_user_pin_code_reset": "{user} adlı kullanıcının PIN kodunu sıfırlamak istediğinize emin misiniz?",
|
||||
"create_job": "Görev oluştur",
|
||||
"cron_expression": "Cron İfadesi",
|
||||
"cron_expression": "Cron ifadesi",
|
||||
"cron_expression_description": "Cron formatını kullanarak tarama aralığını belirle. Daha fazla bilgi için örneğin <link>Crontab Guru</link>’ya bakın",
|
||||
"cron_expression_presets": "Cron İfadesi Önayarları",
|
||||
"cron_expression_presets": "Cron ifadesi ön ayarları",
|
||||
"disable_login": "Girişi devre dışı bırak",
|
||||
"duplicate_detection_job_description": "Benzer fotoğrafları bulmak için makine öğrenmesini çalıştır. Bu işlem Akıllı Arama'ya bağlıdır",
|
||||
"exclusion_pattern_description": "Kütüphaneyi tararken dosya ve klasörleri görmezden gelmek için dışlama desenlerini kullanabilirsiniz. RAW dosyaları gibi bazı dosya ve klasörleri içe aktarmak istemediğinizde bu seçeneği kullanabilirsiniz.",
|
||||
|
|
@ -84,18 +84,18 @@
|
|||
"image_fullsize_enabled": "Tam boyutlu görüntü üretimini etkinleştir",
|
||||
"image_fullsize_enabled_description": "Yerleşik önizlemeyi tercih et” seçeneği etkinleştirildiğinde, yerleşik önizlemeler dönüştürme yapılmadan doğrudan kullanılır. JPEG gibi web dostu formatlar bu ayardan etkilenmez.",
|
||||
"image_fullsize_quality_description": "1-100 arasında tam boyutlu görüntü kalitesi. Daha yüksek kalitelidir, ancak daha büyük dosyalar üretir.",
|
||||
"image_fullsize_title": "Tam boyutlu görüntü ayarları",
|
||||
"image_prefer_embedded_preview": "Gömülü önizlemeyi tercih et",
|
||||
"image_prefer_embedded_preview_setting_description": "RAtoğrafları için mümkün olduğunda gömülü önizlemeyi kullan. Bu, bazı fotoğraflarda daha gerçekçi renkler n kameraya bağlıdır ve fotoğrafta normalden daha fazla görüntü bozukluklarına sebep olabilir.",
|
||||
"image_fullsize_title": "Tam Boyutlu Görüntü Ayarları",
|
||||
"image_prefer_embedded_preview": "Gömülü ön izlemeyi tercih et",
|
||||
"image_prefer_embedded_preview_setting_description": "RAW fotoğrafları için mümkün olduğunda gömülü ön izlemeyi kullan. Bu, bazı fotoğraflarda daha gerçekçi renkler n kameraya bağlıdır ve fotoğrafta normalden daha fazla görüntü bozukluklarına sebep olabilir.",
|
||||
"image_prefer_wide_gamut": "Geniş renk aralığını tercih et",
|
||||
"image_prefer_wide_gamut_setting_description": "Önizleme görseli için P3 renk paletini tercih et. Bu, geniş renk paletli fotoğraflarda renk canlılığını daha iyi korur, fakat fotoğraflar eski tarayıcılarda ve eski cihazlarda daha farklı görünebilir. sRGB fotoğraflar renk paletini korumak için sRGB olarak tutulur.",
|
||||
"image_preview_description": "Orta boyutlu görüntü, meta verisi çıkarılmış, tekil bir öğe görüntülenirken ve makine öğrenimi için kullanılır",
|
||||
"image_preview_quality_description": "Ön izleme kalitesi 1-100 arasıdır. Yüksek değerler daha iyi kalite sağlar, ancak daha büyük dosyalar üretir ve uygulama yanıt verme hızını düşürebilir. Düşük bir değer belirlemek, makine öğrenimi kalitesini etkileyebilir.",
|
||||
"image_preview_title": "Ön izleme Ayarları",
|
||||
"image_preview_title": "Ön İzleme Ayarları",
|
||||
"image_quality": "Kalite",
|
||||
"image_resolution": "Çözünürlük",
|
||||
"image_resolution_description": "Daha yüksek çözünürlükle, daha fazla detayı koruyabilir ancak kodlanması daha uzun sürer, daha büyük dosya boyutlarına sahip olur ve uygulamanın yanıt verme hızını azaltabilir.",
|
||||
"image_settings": "Fotoğraf ayarları",
|
||||
"image_settings": "Fotoğraf Ayarları",
|
||||
"image_settings_description": "Oluşturulan fotoğrafların kalite ve çözünürlüklerini yönet",
|
||||
"image_thumbnail_description": "Meta verisi çıkarılmış küçük boyutlu küçük resim, ana zaman çizelgesi gibi fotoğraf gruplarını görüntülerken kullanılır",
|
||||
"image_thumbnail_quality_description": "Küçük resim kalitesi 1-100 arasında. Daha yüksek değerler daha iyidir, ancak daha büyük dosyalar üretir ve uygulamanın yanıt hızını azaltabilir.",
|
||||
|
|
@ -105,27 +105,34 @@
|
|||
"job_not_concurrency_safe": "Bu işlem eşzamanlama için uygun değil.",
|
||||
"job_settings": "Görev Ayarları",
|
||||
"job_settings_description": "Aynı anda çalışacak görevleri yönet",
|
||||
"job_status": "Görev Statüleri",
|
||||
"job_status": "Görev Durumu",
|
||||
"jobs_delayed": "{jobCount, plural, other {# gecikmeli}}",
|
||||
"jobs_failed": "{jobCount, plural, other {# Başarısız}}",
|
||||
"library_created": "{library} kütüphanesi oluşturuldu",
|
||||
"library_created": "Oluşturulan kütüphane : {library}",
|
||||
"library_deleted": "Kütüphane silindi",
|
||||
"library_import_path_description": "Belirtilecek klasörü içe aktarın. Bu klasör, alt klasörler dahil olmak üzere, görüntüler ve videolar için taranacaktır.",
|
||||
"library_scanning": "Periyodik Tarama",
|
||||
"library_scanning_description": "Periyodik kütüphane taramasını yönet",
|
||||
"library_scanning_enable_description": "Periyodik kütüphane taramasını etkinleştir",
|
||||
"library_settings": "Harici kütüphane",
|
||||
"library_settings": "Harici Kütüphane",
|
||||
"library_settings_description": "Harici kütüphane ayarlarını yönet",
|
||||
"library_tasks_description": "Yeni yada değiştirilmiş öğeler için dış kütüphaneleri tara",
|
||||
"library_watching_enable_description": "Harici kütüphanelerdeki dosya değişikliklerini izle",
|
||||
"library_watching_settings": "Kütüphane izleme (DENEYSEL)",
|
||||
"library_watching_settings_description": "Değişen dosyalar için otomatik olarak izle",
|
||||
"logging_enable_description": "Günlüğü aktifleştir",
|
||||
"logging_enable_description": "Günlüğü etkinleştir",
|
||||
"logging_level_description": "Etkinleştirildiğinde hangi günlük seviyesi kullanılır.",
|
||||
"logging_settings": "Günlük tutma",
|
||||
"logging_settings": "Günlük Tutma",
|
||||
"machine_learning_availability_checks": "Kullanılabilirlik kontrolleri",
|
||||
"machine_learning_availability_checks_description": "Kullanılabilir makine öğrenimi sunucularını otomatik olarak algılayın ve tercih edin",
|
||||
"machine_learning_availability_checks_enabled": "Kullanılabilirlik kontrollerini etkinleştir",
|
||||
"machine_learning_availability_checks_interval": "Kontrol aralığı",
|
||||
"machine_learning_availability_checks_interval_description": "Kullanılabilirlik kontrolleri arasındaki milisaniye cinsinden aralık",
|
||||
"machine_learning_availability_checks_timeout": "İstek zaman aşımı",
|
||||
"machine_learning_availability_checks_timeout_description": "Kullanılabilirlik kontrolleri için milisaniye cinsinden zaman aşımı",
|
||||
"machine_learning_clip_model": "CLIP modeli",
|
||||
"machine_learning_clip_model_description": "<link>Link</link> burada listelenen CLIP modelinin adı. Bu özelliği değiştirdikten sonra \"Akıllı Arama\" işini tüm fotoğraflar için tekrardan çalıştırmalısınız.",
|
||||
"machine_learning_duplicate_detection": "Kopya fotoğraf tespiti",
|
||||
"machine_learning_duplicate_detection": "Kopya Fotoğraf Tespiti",
|
||||
"machine_learning_duplicate_detection_enabled": "Kopya fotoğraf tespitini etkinleştir",
|
||||
"machine_learning_duplicate_detection_enabled_description": "Devre dışı bırakılırsa aynı öğeler yine de temizlenecek.",
|
||||
"machine_learning_duplicate_detection_setting_description": "Birbirinin kopyası olan varlıkları bulmak için CLIP kullan",
|
||||
|
|
@ -133,9 +140,9 @@
|
|||
"machine_learning_enabled_description": "Eğer devre dışı bırakılırsa bütün Makine Öğrenmesi özellikleri devre dışı bırakılacak.",
|
||||
"machine_learning_facial_recognition": "Yüz Tanıma",
|
||||
"machine_learning_facial_recognition_description": "Fotoğraflardaki yüzleri tara, tanı ve gruplandır",
|
||||
"machine_learning_facial_recognition_model": "Yüz Tanıma Modeli",
|
||||
"machine_learning_facial_recognition_model": "Yüz tanıma modeli",
|
||||
"machine_learning_facial_recognition_model_description": "Modeller, azalan boyut sırasına göre listelenmiştir. Daha büyük modeller daha yavaştır ve daha fazla bellek kullanır, ancak daha iyi sonuçlar üretir. Bir modeli değiştirdikten sonra tüm görüntüler için yüz algılama işini yeniden çalıştırmanız gerektiğini unutmayın.",
|
||||
"machine_learning_facial_recognition_setting": "Yüz Tanımayı etkinleştir",
|
||||
"machine_learning_facial_recognition_setting": "Yüz tanımayı etkinleştir",
|
||||
"machine_learning_facial_recognition_setting_description": "Devre dışı bırakıldığında fotoğraflar yüz tanıma için işlenmeyecek ve Keşfet sayfasındaki Kişiler sekmesini doldurmayacak.",
|
||||
"machine_learning_max_detection_distance": "Maksimum tespit uzaklığı",
|
||||
"machine_learning_max_detection_distance_description": "Resimleri birbirinin çifti saymak için hesap edilecek azami benzerlik ölçüsü, 0.001-0.1 aralığında. Daha yüksek değer daha hassas olup daha fazla çift tespit eder ancak çift olmayan resimleri birbirinin çifti sayabilir.",
|
||||
|
|
@ -209,7 +216,7 @@
|
|||
"notification_email_test_email_sent": "Test emaili {email} adresine yollandı. Lütfen gelen kutunuzu kontrol edin.",
|
||||
"notification_email_username_description": "Email sunucu doğrulamasında kullanılacak olan kullanıcı adı",
|
||||
"notification_enable_email_notifications": "Email bildirimlerini etkinleştir",
|
||||
"notification_settings": "Bildirim ayarları",
|
||||
"notification_settings": "Bildirim Ayarları",
|
||||
"notification_settings_description": "Email ve bildirim ayarlarını yönet",
|
||||
"oauth_auto_launch": "Otomatik başlat",
|
||||
"oauth_auto_launch_description": "Giriş sayfasına girildiğinde OAuth akışını otomatik olarak başlat",
|
||||
|
|
@ -232,16 +239,16 @@
|
|||
"oauth_storage_quota_claim_description": "Kullanıcıya depolama kotası koymak için kullanılacak değer (en: OAuth claim).",
|
||||
"oauth_storage_quota_default": "Varsayılan depolama kotası (GiB)",
|
||||
"oauth_storage_quota_default_description": "Değer (en: OAuth claim) mevcut değilse GiB cinsinden konulacak kota.",
|
||||
"oauth_timeout": "İstek zaman aşımı",
|
||||
"oauth_timeout": "İstek Zaman Aşımı",
|
||||
"oauth_timeout_description": "Milisaniye cinsinden istek zaman aşımı",
|
||||
"password_enable_description": "E-posta ve şifre ile giriş yapın",
|
||||
"password_settings": "Şifre ile Giriş",
|
||||
"password_settings_description": "Şifre giriş ayarlarını yönet",
|
||||
"paths_validated_successfully": "Tüm yollar başarıyla doğrulandı",
|
||||
"person_cleanup_job": "Kişi temizleme",
|
||||
"quota_size_gib": "Kota boyutu (GiB)",
|
||||
"quota_size_gib": "Kota Boyutu (GiB)",
|
||||
"refreshing_all_libraries": "Tüm kütüphaneler yenileniyor",
|
||||
"registration": "Yönetici kaydı",
|
||||
"registration": "Yönetici Kaydı",
|
||||
"registration_description": "Sistemdeki ilk kullanıcı olduğunuz için hesabınız Yönetici olarak ayarlandı. Yeni oluşturulan üyeliklerin, ve yönetici görevlerinin sorumlusu olarak atandınız.",
|
||||
"require_password_change_on_login": "Kullanıcının ilk girişinde şifre değiştirmesini zorunlu kıl",
|
||||
"reset_settings_to_default": "Ayarları varsayılana sıfırla",
|
||||
|
|
@ -253,7 +260,7 @@
|
|||
"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": "Sunucu Ayarları",
|
||||
"server_settings_description": "Sunucu ayarlarını yönet",
|
||||
"server_welcome_message": "Hoş geldin mesajı",
|
||||
"server_welcome_message_description": "Giriş sayfasında gösterilen mesaj.",
|
||||
|
|
@ -289,7 +296,7 @@
|
|||
"template_settings_description": "Bildirim şablonlarını yönet",
|
||||
"theme_custom_css_settings": "Özel CSS",
|
||||
"theme_custom_css_settings_description": "CSS (Cascading Style Sheets) kullanılarak Immich'in tasarımı değiştirilebilir.",
|
||||
"theme_settings": "Tema ayarları",
|
||||
"theme_settings": "Tema Ayarları",
|
||||
"theme_settings_description": "Immich web arayüzünün özelleştirilmesi ayarlarını yönet",
|
||||
"thumbnail_generation_job": "Önizlemeleri oluştur",
|
||||
"thumbnail_generation_job_description": "Her bir öğe için büyük, küçük ve bulanık küçük resimler ile her kişi için küçük resimler oluşturun",
|
||||
|
|
@ -356,8 +363,8 @@
|
|||
"trash_enabled_description": "Çöp özelliklerini etkinleştir",
|
||||
"trash_number_of_days": "Gün sayısı",
|
||||
"trash_number_of_days_description": "Öğeleri kalıcı olarak silmeden önce çöp kutusunda tutma süresi (gün)",
|
||||
"trash_settings": "Çöp ayarları",
|
||||
"trash_settings_description": "Çöp ayarlarını yönet",
|
||||
"trash_settings": "Çöp Kutusu Ayarları",
|
||||
"trash_settings_description": "Çöp kutusu ayarlarını yönet",
|
||||
"unlink_all_oauth_accounts": "Tüm OAuth hesaplarının bağlantısını kaldır",
|
||||
"unlink_all_oauth_accounts_description": "Yeni bir sağlayıcıya geçmeden önce tüm OAuth hesaplarını kaldırılmayı unutmayın.",
|
||||
"unlink_all_oauth_accounts_prompt": "Tüm OAuth hesaplarını kaldırmak istediğinizden emin misiniz? Bu, her kullanıcı için OAuth kimliğini sıfırlar ve geri alınamaz.",
|
||||
|
|
@ -374,7 +381,7 @@
|
|||
"user_restore_description": "<b>{user}</b> kullanıcısı geri yüklenecek.",
|
||||
"user_restore_scheduled_removal": "Kullanıcıyı geri yükle - {date, date, long} tarihinde planlanan kaldırma",
|
||||
"user_settings": "Kullanıcı Ayarları",
|
||||
"user_settings_description": "Kullanıcı Ayarlarını Yönet",
|
||||
"user_settings_description": "Kullanıcı ayarlarını yönet",
|
||||
"user_successfully_removed": "Kullanıcı {email} başarıyla kaldırıldı.",
|
||||
"version_check_enabled_description": "Sürüm kontrolü etkin",
|
||||
"version_check_implications": "Sürüm kontrol özelliği, github.com ile periyodik iletişime dayanır",
|
||||
|
|
@ -383,12 +390,10 @@
|
|||
"video_conversion_job": "Videoları dönüştür",
|
||||
"video_conversion_job_description": "Tarayıcılar ve cihazlarla daha geniş uyumluluk için videoları dönüştür"
|
||||
},
|
||||
"admin_email": "Yönetici Emaili",
|
||||
"admin_email": "Yönetici E-postası",
|
||||
"admin_password": "Yönetici Şifresi",
|
||||
"administration": "Yönetim",
|
||||
"advanced": "Gelişmiş",
|
||||
"advanced_settings_beta_timeline_subtitle": "Yeni uygulama deneyimini deneyin",
|
||||
"advanced_settings_beta_timeline_title": "Beta Zaman Çizelgesi",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Eşzamanlama sırasında medyayı alternatif ölçütlere göre süzgeçten geçirmek için bu seçeneği kullanın. Uygulamanın tüm albümleri algılamasında sorun yaşıyorsanız yalnızca bu durumda deneyin.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[DENEYSEL] Alternatif cihaz albüm eşzamanlama süzgeci kullanın",
|
||||
"advanced_settings_log_level_title": "Günlük düzeyi: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "{user} kullanıcısını kaldırmak istediğinize emin misiniz?",
|
||||
"album_search_not_found": "Aramanızla eşleşen albüm bulunamadı",
|
||||
"album_share_no_users": "Görünüşe göre bu albümü tüm kullanıcılarla paylaştınız veya paylaşacak herhangi bir başka kullanıcınız yok.",
|
||||
"album_summary": "Albüm özeti",
|
||||
"album_updated": "Albüm güncellendi",
|
||||
"album_updated_setting_description": "Paylaşılan bir albüme yeni bir öğe eklendiğinde e-posta bildirimi alın",
|
||||
"album_user_left": "{album}den ayrıldınız",
|
||||
|
|
@ -491,11 +497,13 @@
|
|||
"asset_list_layout_sub_title": "Düzen",
|
||||
"asset_list_settings_subtitle": "Fotoğraf ızgara düzeni ayarları",
|
||||
"asset_list_settings_title": "Fotoğraf Izgarası",
|
||||
"asset_offline": "Varlık Çevrim Dışı",
|
||||
"asset_offline": "Öğe Çevrim Dışı",
|
||||
"asset_offline_description": "Bu harici öğe artık diskte bulunmuyor. Yardım için lütfen Immich yöneticinizle iletişime geçin.",
|
||||
"asset_restored_successfully": "Öğe başarıyla geri yüklendi",
|
||||
"asset_skipped": "Atlandı",
|
||||
"asset_skipped_in_trash": "Çöpte",
|
||||
"asset_trashed": "Öğe çöpe atıldı",
|
||||
"asset_troubleshoot": "Öğe Sorun Giderme",
|
||||
"asset_uploaded": "Yüklendi",
|
||||
"asset_uploading": "Yükleniyor…",
|
||||
"asset_viewer_settings_subtitle": "Galeri görüntüleyici ayarlarını düzenle",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Otomatik slayt gösterisi",
|
||||
"back": "Geri",
|
||||
"back_close_deselect": "Geri, kapat veya seçimi kaldır",
|
||||
"background_backup_running_error": "Arka plan yedekleme şu anda çalışıyor, manuel yedekleme başlatılamıyor",
|
||||
"background_location_permission": "Arka plan konum izni",
|
||||
"background_location_permission_content": "Arka planda çalışırken ağ değiştirmek için Immich'in *her zaman* tam konum erişimine sahip olması gerekir, böylece uygulama Wi-Fi ağının adını okuyabilir",
|
||||
"background_options": "Arka Plan Seçenekleri",
|
||||
"backup": "Yedekle",
|
||||
"backup_album_selection_page_albums_device": "Cihazdaki albümler ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Seçmek için dokunun, hariç tutmak için çift dokunun",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Albüm seç",
|
||||
"backup_album_selection_page_selection_info": "Seçim Bilgileri",
|
||||
"backup_album_selection_page_total_assets": "Toplam eşsiz öğeler",
|
||||
"backup_albums_sync": "Yedekleme albümlerinin senkronizasyonu",
|
||||
"backup_all": "Tümü",
|
||||
"backup_background_service_backup_failed_message": "Yedekleme başarısız. Tekrar deneniyor…",
|
||||
"backup_background_service_connection_failed_message": "Sunucuya bağlanılamadı. Tekrar deneniyor…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "PIN kodunu değiştirin",
|
||||
"change_your_password": "Şifreni değiştir",
|
||||
"changed_visibility_successfully": "Görünürlük başarıyla değiştirildi",
|
||||
"charging": "Şarj oluyor",
|
||||
"charging_requirement_mobile_backup": "Arka plan yedekleme için cihazın şarjda olması gerekir",
|
||||
"check_corrupt_asset_backup": "Bozuk öğe yedeklemelerini kontrol et",
|
||||
"check_corrupt_asset_backup_button": "Kontrol et",
|
||||
"check_corrupt_asset_backup_description": "Bu kontrolü yalnızca Wi-Fi üzerinden ve tüm öğeler yedeklendikten sonra çalıştırın. İşlem birkaç dakika sürebilir.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Kullanıcı oluştur",
|
||||
"created": "Oluşturuldu",
|
||||
"created_at": "Oluşturuldu",
|
||||
"creating_linked_albums": "Bağlantılı albümler oluşturuluyor...",
|
||||
"crop": "Kes",
|
||||
"curated_object_page_title": "Nesneler",
|
||||
"current_device": "Mevcut cihaz",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Hata",
|
||||
"error_change_sort_album": "Albüm sıralama düzeni değiştirilemedi",
|
||||
"error_delete_face": "Öğeden yüz silme hatası",
|
||||
"error_getting_places": "Konum bilgisi alınırken hata oluştu",
|
||||
"error_loading_image": "Resim yüklenirken hata oluştu",
|
||||
"error_loading_partners": "Ortakları yükleme hatası: {error}",
|
||||
"error_saving_image": "Hata: {error}",
|
||||
"error_tag_face_bounding_box": "Yüz etiketleme hatası – sınırlayıcı kutu koordinatları alınamadı",
|
||||
"error_title": "Bir Hata Oluştu - Bir şeyler ters gitti",
|
||||
|
|
@ -1054,6 +1070,7 @@
|
|||
"favorites_page_no_favorites": "Favori öğe bulunamadı",
|
||||
"feature_photo_updated": "Öne çıkan fotoğraf güncellendi",
|
||||
"features": "Özellikler",
|
||||
"features_in_development": "Geliştirme Aşamasındaki Özellikler",
|
||||
"features_setting_description": "Uygulamanın özelliklerini yönet",
|
||||
"file_name": "Dosya adı",
|
||||
"file_name_or_extension": "Dosya adı veya uzantı",
|
||||
|
|
@ -1093,8 +1110,8 @@
|
|||
"haptic_feedback_switch": "Dokunsal geri bildirimi aç",
|
||||
"haptic_feedback_title": "Dokunsal Geri Bildirim (Haptic Feedback)",
|
||||
"has_quota": "Kota var",
|
||||
"hash_asset": "Hash varlığı",
|
||||
"hashed_assets": "Hashlenmiş varlıklar",
|
||||
"hash_asset": "Karma öğe",
|
||||
"hashed_assets": "Karma öğeler",
|
||||
"hashing": "Hashleme",
|
||||
"header_settings_add_header_tip": "Header Ekle",
|
||||
"header_settings_field_validator_msg": "Değer boş olamaz",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "Yerel",
|
||||
"local_asset_cast_failed": "Sunucuya yüklenmemiş bir öğe yansıtılamaz",
|
||||
"local_assets": "Yerel Öğeler",
|
||||
"local_media_summary": "Yerel Medya Özeti",
|
||||
"local_network": "Yerel Wi-Fi",
|
||||
"local_network_sheet_info": "Uygulama belirlenmiş Wi-Fi ağını kullanırken bu URL üzerinden sunucuya bağlanacaktır",
|
||||
"location_permission": "Konum izni",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Buraya boylam yazın",
|
||||
"lock": "Kilitle",
|
||||
"locked_folder": "Kilitli Klasör",
|
||||
"log_detail_title": "Günlük Ayrıntıları",
|
||||
"log_out": "Oturumu kapat",
|
||||
"log_out_all_devices": "Tüm Cihazlarda Oturumu Kapat",
|
||||
"logged_in_as": "{user} olarak oturum açıldı",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Şifre başarıyla güncellendi",
|
||||
"logout_all_device_confirmation": "Tüm cihazlarda oturum kapatmak istediğinizden emin misiniz?",
|
||||
"logout_this_device_confirmation": "Bu cihazda oturum kapatmak istediğinizden emin misiniz?",
|
||||
"logs": "Kayıtlar",
|
||||
"longitude": "Boylam",
|
||||
"look": "Görünüm",
|
||||
"loop_videos": "Videoları döngüye al",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Okundu olarak işaretle",
|
||||
"marked_all_as_read": "Tümü okundu olarak işaretlendi",
|
||||
"matches": "Eşleşenler",
|
||||
"matching_assets": "Eşleşen Öğeler",
|
||||
"media_type": "Medya türü",
|
||||
"memories": "Anılar",
|
||||
"memories_all_caught_up": "Tümü görüldü",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "İsim veya takma isim",
|
||||
"network_requirement_photos_upload": "Fotoğrafları yedeklemek için mobil veriyi kullan",
|
||||
"network_requirement_videos_upload": "Videoları yedeklemek için mobil veriyi kullan",
|
||||
"network_requirements": "Ağ Gereksinimleri",
|
||||
"network_requirements_updated": "Ağ durumu değişti, yedekleme kuyruğu sıfırlandı",
|
||||
"networking_settings": "Ağ Ayarları",
|
||||
"networking_subtitle": "Sunucu uç nokta ayarlarını düzenle",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Yeni kişi",
|
||||
"new_pin_code": "Yeni PIN kodu",
|
||||
"new_pin_code_subtitle": "Kilitli klasöre ilk kez erişiyorsunuz. Bu sayfaya güvenli erişim için bir PIN kodu oluşturun",
|
||||
"new_timeline": "Yeni Zaman Çizelgesi",
|
||||
"new_user_created": "Yeni kullanıcı oluşturuldu",
|
||||
"new_version_available": "YENİ SÜRÜM MEVCUT",
|
||||
"newest_first": "Önce en yeniler",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "İLK FOTOĞRAFINIZI YÜKLEMEK İÇİN TIKLAYIN",
|
||||
"no_assets_to_show": "Gösterilecek öğe yok",
|
||||
"no_cast_devices_found": "Yansıtılacak cihaz bulunamadı",
|
||||
"no_checksum_local": "Sağlama toplamı mevcut değil - yerel varlıkları alamıyor",
|
||||
"no_checksum_remote": "Sağlama toplamı mevcut değil - uzak varlık alınamıyor",
|
||||
"no_duplicates_found": "Çift bulunamadı.",
|
||||
"no_exif_info_available": "EXIF bilgisi mevcut değil",
|
||||
"no_explore_results_message": "Koleksiyonunuzu keşfetmek için daha fazla fotoğraf yükleyin.",
|
||||
"no_favorites_message": "En sevdiğiniz fotoğraf ve videoları hızlıca bulmak için favorilere ekleyin",
|
||||
"no_libraries_message": "Fotoğraf ve videolarınızı görmek için bir harici kütüphane oluşturun",
|
||||
"no_local_assets_found": "Bu sağlama toplamı ile yerel varlık bulunamadı",
|
||||
"no_locked_photos_message": "Kilitli klasördeki fotoğraf ve videolar gizlidir; kitaplığınızda gezinirken veya arama yaparken görünmezler.",
|
||||
"no_name": "İsim yok",
|
||||
"no_notifications": "Bildirim yok",
|
||||
"no_people_found": "Eşleşen kişi bulunamadı",
|
||||
"no_places": "Yer yok",
|
||||
"no_remote_assets_found": "Bu sağlama toplamı ile uzaktaki varlık bulunamadı",
|
||||
"no_results": "Sonuç bulunamadı",
|
||||
"no_results_description": "Eş anlamlı ya da daha genel anlamlı bir kelime deneyin",
|
||||
"no_shared_albums_message": "Fotoğrafları ve videoları ağınızdaki kişilerle paylaşmak için bir albüm oluşturun",
|
||||
"no_uploads_in_progress": "Yükleme işlemi yok",
|
||||
"not_available": "YOK",
|
||||
"not_in_any_album": "Hiçbir albümde değil",
|
||||
"not_selected": "Seçilmedi",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Not: Daha önce yüklenen öğeler için bir depolama yolu etiketi uygulamak üzere şunu başlatın",
|
||||
|
|
@ -1493,12 +1521,13 @@
|
|||
"places_count": "{count, plural, one {{count, number} yer} other {{count, number} yer}}",
|
||||
"play": "Oynat",
|
||||
"play_memories": "Anıları oynat",
|
||||
"play_motion_photo": "Hareketli fotoğrafı oynat",
|
||||
"play_motion_photo": "Hareketli Fotoğrafı Oynat",
|
||||
"play_or_pause_video": "Videoyu oynat ya da durdur",
|
||||
"please_auth_to_access": "Erişim için lütfen kimliğinizi doğrulayın",
|
||||
"port": "Port",
|
||||
"preferences_settings_subtitle": "Uygulama tercihlerini düzenle",
|
||||
"preferences_settings_title": "Tercihler",
|
||||
"preparing": "Hazırlanıyor",
|
||||
"preset": "Ön ayar",
|
||||
"preview": "Önizleme",
|
||||
"previous": "Önceki",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Değişiklik günlüğünü oku",
|
||||
"readonly_mode_disabled": "Salt okunur mod devre dışı",
|
||||
"readonly_mode_enabled": "Salt okunur mod etkin",
|
||||
"ready_for_upload": "Yüklemeye hazır",
|
||||
"reassign": "Yeniden ata",
|
||||
"reassigned_assets_to_existing_person": "{count, plural, one {# öğe} other {# öğeler}} {name, select, null {mevcut bir kişiye} other {{name}}} atandı",
|
||||
"reassigned_assets_to_new_person": "{count, plural, one {# öğe} other {# öğeler}} yeni bir kişiye atandı",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Küçük resimler yeniden oluşturuluyor",
|
||||
"remote": "Uzaktan",
|
||||
"remote_assets": "Uzak Öğeler",
|
||||
"remote_media_summary": "Uzaktan Medya Özeti",
|
||||
"remove": "Kaldır",
|
||||
"remove_assets_album_confirmation": "{count, plural, one {# öğeyi} other {# öğeleri}} albümden çıkarmak istediğinizden emin misiniz?",
|
||||
"remove_assets_shared_link_confirmation": "{count, plural, one {# öğeyi} other {# öğeleri}} bu paylaşılan bağlantıdan çıkarmak istediğinizden emin misiniz?",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Slayt geçişini göster",
|
||||
"show_supporter_badge": "Destekçi rozeti",
|
||||
"show_supporter_badge_description": "Destekçi rozetini göster",
|
||||
"show_text_search_menu": "Metin arama menüsünü göster",
|
||||
"shuffle": "Karıştır",
|
||||
"sidebar": "Yan panel",
|
||||
"sidebar_display_description": "Yan panelde görünüme kısa yol göster",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Yığın izi",
|
||||
"start": "Başlat",
|
||||
"start_date": "Başlangıç tarihi",
|
||||
"start_date_before_end_date": "Başlangıç tarihi bitiş tarihinden önce olmalıdır",
|
||||
"state": "Eyalet/İl",
|
||||
"status": "Durum",
|
||||
"stop_casting": "Yansıtmayı durdur",
|
||||
|
|
@ -1974,7 +2007,7 @@
|
|||
"trash_page_empty_trash_dialog_content": "Çöp kutusuna atılmış öğeleri silmek istediğinize emin misiniz? Bu öğeler Immich'ten kalıcı olarak silinecek",
|
||||
"trash_page_info": "Çöp kutusuna atılan öğeler {days} gün sonra kalıcı olarak silinecektir",
|
||||
"trash_page_no_assets": "Çöp kutusuna atılmış öğe yok",
|
||||
"trash_page_restore_all": "Tümünü geri yükle",
|
||||
"trash_page_restore_all": "Tümünü Geri Yükle",
|
||||
"trash_page_select_assets_btn": "Öğeleri seç",
|
||||
"trash_page_title": "Çöp Kutusu ({count})",
|
||||
"trashed_items_will_be_permanently_deleted_after": "Silinen öğeler {days, plural, one {# gün} other {# gün}} sonra kalıcı olarak silinecek.",
|
||||
|
|
@ -1990,16 +2023,16 @@
|
|||
"unfavorite_action_prompt": "{count} Favorilerden kaldırıldı",
|
||||
"unhide_person": "Kişiyi göster",
|
||||
"unknown": "Bilinmeyen",
|
||||
"unknown_country": "Bilinmeyen ülke",
|
||||
"unknown_year": "Bilinmeyen YIl",
|
||||
"unknown_country": "Bilinmeyen Ülke",
|
||||
"unknown_year": "Bilinmeyen Yıl",
|
||||
"unlimited": "Sınırsız",
|
||||
"unlink_motion_video": "Hareketli video bağlantısını kaldır",
|
||||
"unlink_oauth": "OAuth bağlantısını kaldır",
|
||||
"unlinked_oauth_account": "Bağlantısı kaldırılmış OAuth hesabı",
|
||||
"unmute_memories": "Anıların sesini aç",
|
||||
"unmute_memories": "Anıların Sesini Aç",
|
||||
"unnamed_album": "İsimsiz Albüm",
|
||||
"unnamed_album_delete_confirmation": "Bu albümü silmek istediğinizden emin misiniz?",
|
||||
"unnamed_share": "İsimsiz paylaşım",
|
||||
"unnamed_share": "İsimsiz Paylaşım",
|
||||
"unsaved_change": "Kaydedilmemiş değişiklik",
|
||||
"unselect_all": "Tümünü seçimini kaldır",
|
||||
"unselect_all_duplicates": "Tüm çiftlerin seçimini kaldır",
|
||||
|
|
@ -2046,11 +2079,11 @@
|
|||
"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",
|
||||
"user_usage_stats_description": "Hesap kullanım istatistiklerini göster",
|
||||
"username": "Kullanıcı adı",
|
||||
"users": "Kullanıcılar",
|
||||
"users_added_to_album_count": "Albüme {count, plural, one {# user} other {# users}} eklendi",
|
||||
"utilities": "Yardımcılar",
|
||||
"utilities": "Yardımcı Uygulamalar",
|
||||
"validate": "Doğrula",
|
||||
"validate_endpoint_error": "Lütfen geçerli bir URL girin",
|
||||
"variables": "Değişkenler",
|
||||
|
|
@ -2060,7 +2093,7 @@
|
|||
"version_history": "Sürüm Geçmişi",
|
||||
"version_history_item": "{version}, {date} tarihinde kuruldu",
|
||||
"video": "Video",
|
||||
"video_hover_setting": "Üzerinde durulduğunda video önizlemesi oynat",
|
||||
"video_hover_setting": "Üzerinde durulduğunda video ön izlemesi oynat",
|
||||
"video_hover_setting_description": "Öğe üzerinde fareyle durulduğunda video küçük resmini oynatır. Bu özellik devre dışıyken, oynatma simgesine fareyle gidilerek oynatma başlatılabilir.",
|
||||
"videos": "Videolar",
|
||||
"videos_count": "{count, plural, one {# video} other {# video}}",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Evet",
|
||||
"you_dont_have_any_shared_links": "Herhangi bir paylaşılan bağlantınız yok",
|
||||
"your_wifi_name": "Wi-Fi Adınız",
|
||||
"zoom_image": "Görüntüyü yakınlaştır"
|
||||
"zoom_image": "Görüntüyü yakınlaştır",
|
||||
"zoom_to_bounds": "Sınırlara yakınlaştır"
|
||||
}
|
||||
|
|
|
|||
58
i18n/uk.json
58
i18n/uk.json
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "Увімкнути ведення журналу",
|
||||
"logging_level_description": "Коли увімкнено, який рівень журналювання використовувати.",
|
||||
"logging_settings": "Журналювання",
|
||||
"machine_learning_availability_checks": "Перевірки доступності",
|
||||
"machine_learning_availability_checks_description": "Автоматично виявляти та надавати перевагу доступним серверам машинного навчання",
|
||||
"machine_learning_availability_checks_enabled": "Увімкнути перевірки доступності",
|
||||
"machine_learning_availability_checks_interval": "Інтервал перевірки",
|
||||
"machine_learning_availability_checks_interval_description": "Інтервал у мілісекундах між перевірками доступності",
|
||||
"machine_learning_availability_checks_timeout": "Тайм-аут запиту",
|
||||
"machine_learning_availability_checks_timeout_description": "Тайм-аут у мілісекундах для перевірки доступності",
|
||||
"machine_learning_clip_model": "Модель CLIP",
|
||||
"machine_learning_clip_model_description": "Ім'я однієї з моделей CLIP, яка перерахована <link>тут</link>. Зауважте, що потрібно знову запустити завдання «Розумний пошук» для всіх зображень після зміни моделі.",
|
||||
"machine_learning_duplicate_detection": "Виявлення дублікатів",
|
||||
|
|
@ -258,7 +265,7 @@
|
|||
"server_welcome_message": "Вітальне повідомлення",
|
||||
"server_welcome_message_description": "Повідомлення, яке відображається на сторінці входу.",
|
||||
"sidecar_job": "Метадані з sidecar-файлів",
|
||||
"sidecar_job_description": "Виявлення або синхронізація метаданих додатків з файлової системи",
|
||||
"sidecar_job_description": "Пошук або синхронізація сайдкар-метаданих з файлової системи",
|
||||
"slideshow_duration_description": "Кількість секунд для відображення кожного зображення",
|
||||
"smart_search_job_description": "Запуск машинного навчання для ресурсів для підтримки розумного пошуку",
|
||||
"storage_template_date_time_description": "Позначка часу створення ресурсу використовується для інформації про дату й час",
|
||||
|
|
@ -340,7 +347,7 @@
|
|||
"transcoding_settings": "Налаштування транскодування відео",
|
||||
"transcoding_settings_description": "Керування які відео транскодувати і як їх обробляти",
|
||||
"transcoding_target_resolution": "Роздільна здатність",
|
||||
"transcoding_target_resolution_description": "Вищі роздільні здатності можуть зберігати більше деталей, але займають більше часу на кодування, мають більші розміри файлів і можуть зменшити швидкість роботи додатку.",
|
||||
"transcoding_target_resolution_description": "Вищі роздільні здатності можуть зберігати більше деталей, але займають більше часу на кодування, мають більші розміри файлів і можуть зменшити швидкість роботи застосунку.",
|
||||
"transcoding_temporal_aq": "Тимчасове AQ",
|
||||
"transcoding_temporal_aq_description": "Це застосовується лише до NVENC. Підвищує якість сцен з великою деталізацією та низьким рухом. Може бути несумісним зі старими пристроями.",
|
||||
"transcoding_threads": "Потоки",
|
||||
|
|
@ -387,8 +394,6 @@
|
|||
"admin_password": "Пароль адміністратора",
|
||||
"administration": "Адміністрування",
|
||||
"advanced": "Розширені",
|
||||
"advanced_settings_beta_timeline_subtitle": "Випробуйте новий інтерфейс застосунку",
|
||||
"advanced_settings_beta_timeline_title": "Бета-версія стрічки",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Використовуйте цей варіант для фільтрації медіафайлів під час синхронізації за альтернативними критеріями. Спробуйте це, якщо у вас виникають проблеми з тим, що застосунок не виявляє всі альбоми.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[ЕКСПЕРИМЕНТАЛЬНИЙ] Використовуйте альтернативний фільтр синхронізації альбомів пристрою",
|
||||
"advanced_settings_log_level_title": "Рівень логування: {level}",
|
||||
|
|
@ -425,6 +430,7 @@
|
|||
"album_remove_user_confirmation": "Ви впевнені, що хочете видалити {user}?",
|
||||
"album_search_not_found": "Альбомів, що відповідають вашому запиту, не знайдено",
|
||||
"album_share_no_users": "Схоже, ви поділилися цим альбомом з усіма користувачами або у вас немає жодного користувача, з яким можна було б поділитися.",
|
||||
"album_summary": "Короткий опис альбому",
|
||||
"album_updated": "Альбом оновлено",
|
||||
"album_updated_setting_description": "Отримуйте сповіщення на електронну пошту, коли у спільному альбомі з'являються нові ресурси",
|
||||
"album_user_left": "Ви покинули {album}",
|
||||
|
|
@ -496,6 +502,8 @@
|
|||
"asset_restored_successfully": "Елемент успішно відновлено",
|
||||
"asset_skipped": "Пропущено",
|
||||
"asset_skipped_in_trash": "У кошику",
|
||||
"asset_trashed": "Об'єкт видалено з кошика",
|
||||
"asset_troubleshoot": "Вирішення проблем з активами",
|
||||
"asset_uploaded": "Завантажено",
|
||||
"asset_uploading": "Завантаження…",
|
||||
"asset_viewer_settings_subtitle": "Керуйте налаштуваннями переглядача галереї",
|
||||
|
|
@ -529,8 +537,10 @@
|
|||
"autoplay_slideshow": "Автоматичне відтворення слайдшоу",
|
||||
"back": "Назад",
|
||||
"back_close_deselect": "Повернутися, закрити або скасувати вибір",
|
||||
"background_backup_running_error": "Наразі виконується фонове резервне копіювання, неможливо розпочати резервне копіювання вручну",
|
||||
"background_location_permission": "Дозвіл до місцезнаходження у фоні",
|
||||
"background_location_permission_content": "Щоб перемикати мережі у фоновому режимі, Immich має *завжди* мати доступ до точної геолокації, щоб зчитувати назву Wi-Fi мережі",
|
||||
"background_options": "Параметри фону",
|
||||
"backup": "Резервне копіювання",
|
||||
"backup_album_selection_page_albums_device": "Альбоми на пристрої ({count})",
|
||||
"backup_album_selection_page_albums_tap": "Торкніться, щоб включити, двічі, щоб виключити",
|
||||
|
|
@ -538,6 +548,7 @@
|
|||
"backup_album_selection_page_select_albums": "Оберіть альбоми",
|
||||
"backup_album_selection_page_selection_info": "Інформація про обране",
|
||||
"backup_album_selection_page_total_assets": "Загальна кількість унікальних елементів",
|
||||
"backup_albums_sync": "Синхронізація резервних копій альбомів",
|
||||
"backup_all": "Усі",
|
||||
"backup_background_service_backup_failed_message": "Не вдалося зробити резервну копію елементів. Повторюю…",
|
||||
"backup_background_service_connection_failed_message": "Не вдалося зв'язатися із сервером. Повторюю…",
|
||||
|
|
@ -654,6 +665,8 @@
|
|||
"change_pin_code": "Змінити PIN-код",
|
||||
"change_your_password": "Змініть свій пароль",
|
||||
"changed_visibility_successfully": "Видимість успішно змінено",
|
||||
"charging": "Зарядка",
|
||||
"charging_requirement_mobile_backup": "Для фонового резервного копіювання пристрій повинен заряджатися",
|
||||
"check_corrupt_asset_backup": "Перевірити на пошкоджені резервні копії ресурсів",
|
||||
"check_corrupt_asset_backup_button": "Виконати перевірку",
|
||||
"check_corrupt_asset_backup_description": "Запустити цю перевірку лише через Wi-Fi та після того, як всі ресурси будуть завантажені на сервер. Процес може зайняти кілька хвилин.",
|
||||
|
|
@ -740,6 +753,7 @@
|
|||
"create_user": "Створити користувача",
|
||||
"created": "Створено",
|
||||
"created_at": "Створено",
|
||||
"creating_linked_albums": "Створення пов’язаних альбомів...",
|
||||
"crop": "Кадрувати",
|
||||
"curated_object_page_title": "Речі",
|
||||
"current_device": "Поточний пристрій",
|
||||
|
|
@ -889,7 +903,9 @@
|
|||
"error": "Помилка",
|
||||
"error_change_sort_album": "Не вдалося змінити порядок сортування альбому",
|
||||
"error_delete_face": "Помилка при видаленні обличчя з елементу",
|
||||
"error_getting_places": "Помилка отримання місць",
|
||||
"error_loading_image": "Помилка завантаження зображення",
|
||||
"error_loading_partners": "Помилка завантаження партнерів: {error}",
|
||||
"error_saving_image": "Помилка: {error}",
|
||||
"error_tag_face_bounding_box": "Помилка під час позначення обличчя – не вдалося отримати координати рамки",
|
||||
"error_title": "Помилка: щось пішло не так",
|
||||
|
|
@ -1054,7 +1070,8 @@
|
|||
"favorites_page_no_favorites": "Немає улюблених елементів",
|
||||
"feature_photo_updated": "Вибране фото оновлено",
|
||||
"features": "Додаткові можливості",
|
||||
"features_setting_description": "Керування додатковими можливостями додатка",
|
||||
"features_in_development": "Функції в розробці",
|
||||
"features_setting_description": "Керування додатковими можливостями застосунку",
|
||||
"file_name": "Ім'я файлу",
|
||||
"file_name_or_extension": "Ім'я файлу або розширення",
|
||||
"filename": "Ім'я файлу",
|
||||
|
|
@ -1120,7 +1137,7 @@
|
|||
"home_page_delete_remote_err_local": "Локальні елемент(и) вже в процесі видалення з сервера, пропущено",
|
||||
"home_page_favorite_err_local": "Поки що не можна додати до улюблених локальні елементи, пропущено",
|
||||
"home_page_favorite_err_partner": "Поки що не можна додати до улюблених елементи партнера, пропущено",
|
||||
"home_page_first_time_notice": "Якщо ви користуєтеся додатком вперше, будь ласка, оберіть альбом для резервного копіювання, щоб на шкалі часу з’явилися фото та відео",
|
||||
"home_page_first_time_notice": "Якщо ви користуєтеся застосунком вперше, будь ласка, оберіть альбом для резервного копіювання, щоб на шкалі часу з’явилися фото та відео",
|
||||
"home_page_locked_error_local": "Не вдається перемістити локальні файли до особистої папки, пропускається",
|
||||
"home_page_locked_error_partner": "Не вдається перемістити партнерські файли до особистої папки, пропускається",
|
||||
"home_page_share_err_local": "Неможливо поділитися локальними елементами через посилання, пропущено",
|
||||
|
|
@ -1218,6 +1235,7 @@
|
|||
"local": "На пристрої",
|
||||
"local_asset_cast_failed": "Неможливо транслювати ресурс, який не завантажено на сервер",
|
||||
"local_assets": "Локальні фото та відео",
|
||||
"local_media_summary": "Зведення місцевих ЗМІ",
|
||||
"local_network": "Локальна мережа",
|
||||
"local_network_sheet_info": "Застосунок підключатиметься до сервера через цей URL, коли використовується вказана Wi-Fi мережа",
|
||||
"location_permission": "Дозвіл до місцезнаходження",
|
||||
|
|
@ -1229,6 +1247,7 @@
|
|||
"location_picker_longitude_hint": "Вкажіть довготу",
|
||||
"lock": "Заблокувати",
|
||||
"locked_folder": "Особиста папка",
|
||||
"log_detail_title": "Деталі журналу",
|
||||
"log_out": "Вийти",
|
||||
"log_out_all_devices": "Вийти з усіх пристроїв",
|
||||
"logged_in_as": "Вхід виконано як {user}",
|
||||
|
|
@ -1259,6 +1278,7 @@
|
|||
"login_password_changed_success": "Пароль оновлено успішно",
|
||||
"logout_all_device_confirmation": "Ви впевнені, що хочете вийти з усіх пристроїв?",
|
||||
"logout_this_device_confirmation": "Ви впевнені, що хочете вийти з цього пристрою?",
|
||||
"logs": "Журнали",
|
||||
"longitude": "Довгота",
|
||||
"look": "Дивитися",
|
||||
"loop_videos": "Циклічні відео",
|
||||
|
|
@ -1301,6 +1321,7 @@
|
|||
"mark_as_read": "Позначити як прочитане",
|
||||
"marked_all_as_read": "Позначено всі як прочитані",
|
||||
"matches": "Збіги",
|
||||
"matching_assets": "Відповідні активи",
|
||||
"media_type": "Тип медіа",
|
||||
"memories": "Спогади",
|
||||
"memories_all_caught_up": "Це все на сьогодні",
|
||||
|
|
@ -1341,6 +1362,7 @@
|
|||
"name_or_nickname": "Ім'я або псевдонім",
|
||||
"network_requirement_photos_upload": "Використовувати стільникові дані для резервного копіювання фото",
|
||||
"network_requirement_videos_upload": "Використовувати стільникові дані для резервного копіювання відео",
|
||||
"network_requirements": "Вимоги до мережі",
|
||||
"network_requirements_updated": "Вимоги до мережі змінилися, черга резервного копіювання очищена",
|
||||
"networking_settings": "Мережеві налаштування",
|
||||
"networking_subtitle": "Керування налаштуваннями кінцевої точки сервера",
|
||||
|
|
@ -1351,6 +1373,7 @@
|
|||
"new_person": "Нова людина",
|
||||
"new_pin_code": "Новий PIN-код",
|
||||
"new_pin_code_subtitle": "Ви вперше отримуєте доступ до особистої папки. Створіть PIN-код для безпечного доступу до цієї сторінки",
|
||||
"new_timeline": "Нова хронологія",
|
||||
"new_user_created": "Створено нового користувача",
|
||||
"new_version_available": "ДОСТУПНА НОВА ВЕРСІЯ",
|
||||
"newest_first": "Спочатку нові",
|
||||
|
|
@ -1364,20 +1387,25 @@
|
|||
"no_assets_message": "НАТИСНІТЬ, ЩОБ ЗАВАНТАЖИТИ ВАШЕ ПЕРШЕ ФОТО",
|
||||
"no_assets_to_show": "Елементи відсутні",
|
||||
"no_cast_devices_found": "Пристрої для трансляції не знайдено",
|
||||
"no_checksum_local": "Контрольна сума недоступна – неможливо отримати локальні ресурси",
|
||||
"no_checksum_remote": "Контрольна сума недоступна – неможливо отримати віддалений ресурс",
|
||||
"no_duplicates_found": "Дублікатів не виявлено.",
|
||||
"no_exif_info_available": "Відсутня інформація про exif",
|
||||
"no_explore_results_message": "Завантажуйте більше фотографій, щоб насолоджуватися вашою колекцією.",
|
||||
"no_favorites_message": "Додавайте улюблені файли, щоб швидко знаходити ваші найкращі зображення та відео",
|
||||
"no_libraries_message": "Створіть зовнішню бібліотеку для перегляду фотографій і відео",
|
||||
"no_local_assets_found": "З цією контрольною сумою не знайдено локальних ресурсів",
|
||||
"no_locked_photos_message": "Фото та відео в особистій папці приховані і не відображаються під час перегляду чи пошуку у вашій бібліотеці.",
|
||||
"no_name": "Без імені",
|
||||
"no_notifications": "Немає сповіщень",
|
||||
"no_people_found": "Людей, що відповідають запиту, не знайдено",
|
||||
"no_places": "Місць немає",
|
||||
"no_remote_assets_found": "З цією контрольною сумою не знайдено віддалених ресурсів",
|
||||
"no_results": "Немає результатів",
|
||||
"no_results_description": "Спробуйте використовувати синонім або більш загальне ключове слово",
|
||||
"no_shared_albums_message": "Створіть альбом, щоб ділитися фотографіями та відео з людьми у вашій мережі",
|
||||
"no_uploads_in_progress": "Немає активних завантажень",
|
||||
"not_available": "Немає даних",
|
||||
"not_in_any_album": "У жодному альбомі",
|
||||
"not_selected": "Не вибрано",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "Примітка: Щоб застосувати мітку сховища до раніше завантажених ресурсів, виконайте команду",
|
||||
|
|
@ -1471,7 +1499,7 @@
|
|||
"permission_onboarding_permission_denied": "Доступ заборонено. Для використання Immich надайте дозволи до \"Фото та відео\" в налаштуваннях.",
|
||||
"permission_onboarding_permission_granted": "Доступ надано! Все готово.",
|
||||
"permission_onboarding_permission_limited": "Доступ обмежено. Щоби дозволити Immich створювати резервні копії та керувати всією галереєю, надайте дозволи на фото й відео в налаштуваннях.",
|
||||
"permission_onboarding_request": "Додатку Immich потрібен дозвіл для перегляду ваших фото та відео.",
|
||||
"permission_onboarding_request": "Застосунку Immich потрібен дозвіл для перегляду ваших фото та відео.",
|
||||
"person": "Людина",
|
||||
"person_age_months": "{months, plural, one {# місяць} other {# місяці}}",
|
||||
"person_age_year_months": "1 year , {months, plural, one {# місяць} other {# місяці}}",
|
||||
|
|
@ -1497,8 +1525,9 @@
|
|||
"play_or_pause_video": "Відтворення або призупинення відео",
|
||||
"please_auth_to_access": "Будь ласка, пройдіть автентифікацію",
|
||||
"port": "Порт",
|
||||
"preferences_settings_subtitle": "Керування налаштуваннями додатку",
|
||||
"preferences_settings_subtitle": "Керування налаштуваннями застосунку",
|
||||
"preferences_settings_title": "Параметри",
|
||||
"preparing": "Підготовка",
|
||||
"preset": "Передвстановлення",
|
||||
"preview": "Прев'ю",
|
||||
"previous": "Попереднє",
|
||||
|
|
@ -1564,6 +1593,7 @@
|
|||
"read_changelog": "Прочитати зміни в оновленні",
|
||||
"readonly_mode_disabled": "Режим лише для читання вимкнено",
|
||||
"readonly_mode_enabled": "Режим лише для читання ввімкнено",
|
||||
"ready_for_upload": "Готово до завантаження",
|
||||
"reassign": "Перепризначити",
|
||||
"reassigned_assets_to_existing_person": "Перепризначено {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсів}} {name, select, null {існуючій особі} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "Перепризначено {count, plural, one {# ресурс} other {# ресурси}} новій особі",
|
||||
|
|
@ -1588,6 +1618,7 @@
|
|||
"regenerating_thumbnails": "Відновлення мініатюр",
|
||||
"remote": "На сервері",
|
||||
"remote_assets": "Віддалені фото та відео",
|
||||
"remote_media_summary": "Зведення віддалених медіафайлів",
|
||||
"remove": "Вилучити",
|
||||
"remove_assets_album_confirmation": "Ви впевнені, що хочете видалити {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсів}} з альбому?",
|
||||
"remove_assets_shared_link_confirmation": "Ви впевнені, що хочете видалити {count, plural, one {# ресурс} few {# ресурси} many {# ресурсів} other {# ресурсів}} з цього спільного посилання?",
|
||||
|
|
@ -1738,7 +1769,7 @@
|
|||
"send_message": "Надіслати повідомлення",
|
||||
"send_welcome_email": "Надішліть вітальний лист",
|
||||
"server_endpoint": "Кінцева точка сервера",
|
||||
"server_info_box_app_version": "Версія додатка",
|
||||
"server_info_box_app_version": "Версія застосунку",
|
||||
"server_info_box_server_url": "URL сервера",
|
||||
"server_offline": "Сервер офлайн",
|
||||
"server_online": "Сервер онлайн",
|
||||
|
|
@ -1760,7 +1791,7 @@
|
|||
"setting_image_viewer_preview_title": "Завантажувати зображення попереднього перегляду",
|
||||
"setting_image_viewer_title": "Зображення",
|
||||
"setting_languages_apply": "Застосувати",
|
||||
"setting_languages_subtitle": "Змінити мову додатку",
|
||||
"setting_languages_subtitle": "Змінити мову застосунку",
|
||||
"setting_notifications_notify_failures_grace_period": "Повідомити про помилки фонового резервного копіювання: {duration}",
|
||||
"setting_notifications_notify_hours": "{count} годин",
|
||||
"setting_notifications_notify_immediately": "негайно",
|
||||
|
|
@ -1863,6 +1894,7 @@
|
|||
"show_slideshow_transition": "Показати перехід слайд-шоу",
|
||||
"show_supporter_badge": "Значок підтримки",
|
||||
"show_supporter_badge_description": "Показати значок підтримки",
|
||||
"show_text_search_menu": "Показати меню текстового пошуку",
|
||||
"shuffle": "Перемішати",
|
||||
"sidebar": "Бічна панель",
|
||||
"sidebar_display_description": "Відобразити посилання на перегляд у бічній панелі",
|
||||
|
|
@ -1893,6 +1925,7 @@
|
|||
"stacktrace": "Стек викликів",
|
||||
"start": "Старт",
|
||||
"start_date": "Дата початку",
|
||||
"start_date_before_end_date": "Дата початку має бути раніше дати завершення",
|
||||
"state": "Регіон",
|
||||
"status": "Стан",
|
||||
"stop_casting": "Зупинити трансляцію",
|
||||
|
|
@ -1944,7 +1977,7 @@
|
|||
"theme_setting_primary_color_title": "Основний колір",
|
||||
"theme_setting_system_primary_color_title": "Використовувати колір системи",
|
||||
"theme_setting_system_theme_switch": "Автоматично (як у системі)",
|
||||
"theme_setting_theme_subtitle": "Налаштування теми додатка",
|
||||
"theme_setting_theme_subtitle": "Налаштування теми застосунку",
|
||||
"theme_setting_three_stage_loading_subtitle": "Триетапне завантаження може підвищити продуктивність завантаження, але спричинить значно більше навантаження на мережу",
|
||||
"theme_setting_three_stage_loading_title": "Увімкнути триетапне завантаження",
|
||||
"they_will_be_merged_together": "Вони будуть об'єднані разом",
|
||||
|
|
@ -2095,5 +2128,6 @@
|
|||
"yes": "Так",
|
||||
"you_dont_have_any_shared_links": "У вас немає спільних посилань",
|
||||
"your_wifi_name": "Назва вашої Wi-Fi мережі",
|
||||
"zoom_image": "Збільшити зображення"
|
||||
"zoom_image": "Збільшити зображення",
|
||||
"zoom_to_bounds": "Збільшити масштаб до меж"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -360,8 +360,6 @@
|
|||
"admin_password": "Mật khẩu Quản trị viên",
|
||||
"administration": "Quản trị",
|
||||
"advanced": "Nâng cao",
|
||||
"advanced_settings_beta_timeline_subtitle": "Trải nghiệm giao diện app mới",
|
||||
"advanced_settings_beta_timeline_title": "Timeline Beta",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "Dùng tùy chọn này để lọc phương tiện khi đồng bộ theo tiêu chí khác. Chỉ thử khi ứng dụng không nhận diện được tất cả các album.",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[THỬ NGHIỆM] Dùng bộ lọc đồng bộ album thay thế",
|
||||
"advanced_settings_log_level_title": "Phân loại nhật ký: {level}",
|
||||
|
|
|
|||
|
|
@ -387,8 +387,6 @@
|
|||
"admin_password": "管理員密碼",
|
||||
"administration": "管理",
|
||||
"advanced": "進階",
|
||||
"advanced_settings_beta_timeline_subtitle": "試用全新的應用程式體驗",
|
||||
"advanced_settings_beta_timeline_title": "測試版時間軸",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "使用此選項可在同步時依其他條件篩選媒體。僅在應用程式無法偵測到所有相簿時再嘗試使用。",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[實驗性] 使用替代的裝置相簿同步篩選器",
|
||||
"advanced_settings_log_level_title": "日誌等級:{level}",
|
||||
|
|
|
|||
|
|
@ -123,6 +123,13 @@
|
|||
"logging_enable_description": "启用日志记录",
|
||||
"logging_level_description": "启用时,要使用的日志级别。",
|
||||
"logging_settings": "日志",
|
||||
"machine_learning_availability_checks": "可用性检查",
|
||||
"machine_learning_availability_checks_description": "自动检测并优先选择可用的机器学习服务器",
|
||||
"machine_learning_availability_checks_enabled": "启用可用性检查",
|
||||
"machine_learning_availability_checks_interval": "检查间隔",
|
||||
"machine_learning_availability_checks_interval_description": "两次可用性检查之间的间隔(毫秒)",
|
||||
"machine_learning_availability_checks_timeout": "请求超时",
|
||||
"machine_learning_availability_checks_timeout_description": "用于可用性检查的超时时间(毫秒)",
|
||||
"machine_learning_clip_model": "CLIP 模型",
|
||||
"machine_learning_clip_model_description": "请于 <link>此处</link>查看支持的 CLIP 模型名称。注意,更换模型后需要对所有图片重新运行“智能搜索”任务。",
|
||||
"machine_learning_duplicate_detection": "重复项检测",
|
||||
|
|
@ -395,8 +402,6 @@
|
|||
"admin_password": "管理员密码",
|
||||
"administration": "系统管理",
|
||||
"advanced": "高级",
|
||||
"advanced_settings_beta_timeline_subtitle": "体验全新的应用程序",
|
||||
"advanced_settings_beta_timeline_title": "测试版时间线",
|
||||
"advanced_settings_enable_alternate_media_filter_subtitle": "使用此选项可在同步过程中根据备用条件筛选项目。仅当您在应用程序检测所有相册均遇到问题时才尝试此功能。",
|
||||
"advanced_settings_enable_alternate_media_filter_title": "[实验] 使用备用的设备相册同步筛选条件",
|
||||
"advanced_settings_log_level_title": "日志等级: {level}",
|
||||
|
|
@ -433,6 +438,7 @@
|
|||
"album_remove_user_confirmation": "确定要移除“{user}”吗?",
|
||||
"album_search_not_found": "未找到符合搜索条件的相册",
|
||||
"album_share_no_users": "看起来您已与所有用户共享了此相册,或者您根本没有任何用户可共享。",
|
||||
"album_summary": "相册摘要",
|
||||
"album_updated": "相册有更新",
|
||||
"album_updated_setting_description": "当共享相册有新项目时接收邮件通知",
|
||||
"album_user_left": "离开“{album}”",
|
||||
|
|
@ -504,6 +510,8 @@
|
|||
"asset_restored_successfully": "已成功恢复所有项目",
|
||||
"asset_skipped": "已跳过",
|
||||
"asset_skipped_in_trash": "已回收",
|
||||
"asset_trashed": "资产已被删除",
|
||||
"asset_troubleshoot": "资产故障排除",
|
||||
"asset_uploaded": "已上传",
|
||||
"asset_uploading": "上传中…",
|
||||
"asset_viewer_settings_subtitle": "管理图库浏览器设置",
|
||||
|
|
@ -537,8 +545,10 @@
|
|||
"autoplay_slideshow": "自动播放幻灯片",
|
||||
"back": "返回",
|
||||
"back_close_deselect": "返回、关闭或反选",
|
||||
"background_backup_running_error": "后台备份正在运行,无法启动手动备份",
|
||||
"background_location_permission": "后台定位权限",
|
||||
"background_location_permission_content": "为确保后台运行时自动切换网络,需授予 Immich *始终允许精确定位* 权限,以识别 Wi-Fi 网络名称",
|
||||
"background_options": "背景选项",
|
||||
"backup": "备份",
|
||||
"backup_album_selection_page_albums_device": "设备上的相册({count})",
|
||||
"backup_album_selection_page_albums_tap": "单击选中,双击取消",
|
||||
|
|
@ -546,6 +556,7 @@
|
|||
"backup_album_selection_page_select_albums": "选择相册",
|
||||
"backup_album_selection_page_selection_info": "选择信息",
|
||||
"backup_album_selection_page_total_assets": "总计",
|
||||
"backup_albums_sync": "备份相册同步",
|
||||
"backup_all": "全部",
|
||||
"backup_background_service_backup_failed_message": "备份失败,正在重试…",
|
||||
"backup_background_service_connection_failed_message": "连接服务器失败,正在重试…",
|
||||
|
|
@ -662,6 +673,8 @@
|
|||
"change_pin_code": "修改PIN码",
|
||||
"change_your_password": "修改您的密码",
|
||||
"changed_visibility_successfully": "更改可见性成功",
|
||||
"charging": "充电",
|
||||
"charging_requirement_mobile_backup": "后台备份需要设备处于充电状态",
|
||||
"check_corrupt_asset_backup": "检查备份是否损坏",
|
||||
"check_corrupt_asset_backup_button": "执行检查",
|
||||
"check_corrupt_asset_backup_description": "仅在连接到 Wi-Fi 并完成所有项目备份后执行此检查。该过程可能需要几分钟。",
|
||||
|
|
@ -748,6 +761,7 @@
|
|||
"create_user": "创建用户",
|
||||
"created": "已创建",
|
||||
"created_at": "已创建",
|
||||
"creating_linked_albums": "正在创建相册链接…",
|
||||
"crop": "裁剪",
|
||||
"curated_object_page_title": "事物",
|
||||
"current_device": "当前设备",
|
||||
|
|
@ -897,7 +911,9 @@
|
|||
"error": "错误",
|
||||
"error_change_sort_album": "更改相册排序失败",
|
||||
"error_delete_face": "删除人脸失败",
|
||||
"error_getting_places": "获取位置时出错",
|
||||
"error_loading_image": "加载图片时出错",
|
||||
"error_loading_partners": "加载同伴时出错:{error}",
|
||||
"error_saving_image": "错误:{error}",
|
||||
"error_tag_face_bounding_box": "标记人脸出错 - 无法获取人脸框坐标",
|
||||
"error_title": "错误 - 好像出了问题",
|
||||
|
|
@ -1062,6 +1078,7 @@
|
|||
"favorites_page_no_favorites": "未找到收藏项目",
|
||||
"feature_photo_updated": "人物头像已更新",
|
||||
"features": "功能",
|
||||
"features_in_development": "开发中的功能",
|
||||
"features_setting_description": "管理 App 功能",
|
||||
"file_name": "文件名",
|
||||
"file_name_or_extension": "文件名",
|
||||
|
|
@ -1226,6 +1243,7 @@
|
|||
"local": "本地",
|
||||
"local_asset_cast_failed": "无法投放未上传至服务器的项目",
|
||||
"local_assets": "本地项目",
|
||||
"local_media_summary": "本地媒体摘要",
|
||||
"local_network": "本地网络",
|
||||
"local_network_sheet_info": "当使用指定的 Wi-Fi 网络时,应用程序将通过此 URL 访问服务器",
|
||||
"location_permission": "定位权限",
|
||||
|
|
@ -1237,6 +1255,7 @@
|
|||
"location_picker_longitude_hint": "请在此处输入经度",
|
||||
"lock": "锁定",
|
||||
"locked_folder": "锁定文件夹",
|
||||
"log_detail_title": "日志详细信息",
|
||||
"log_out": "注销",
|
||||
"log_out_all_devices": "注销所有设备",
|
||||
"logged_in_as": "以 {user} 身份登录",
|
||||
|
|
@ -1267,6 +1286,7 @@
|
|||
"login_password_changed_success": "密码更新成功",
|
||||
"logout_all_device_confirmation": "确定要从所有设备注销?",
|
||||
"logout_this_device_confirmation": "确定要从本设备注销?",
|
||||
"logs": "日志",
|
||||
"longitude": "经度",
|
||||
"look": "样式",
|
||||
"loop_videos": "循环视频",
|
||||
|
|
@ -1301,7 +1321,7 @@
|
|||
"map_settings_date_range_option_years": "{years} 年前",
|
||||
"map_settings_dialog_title": "地图设置",
|
||||
"map_settings_include_show_archived": "包括已归档项目",
|
||||
"map_settings_include_show_partners": "包含伙伴",
|
||||
"map_settings_include_show_partners": "包含同伴",
|
||||
"map_settings_only_show_favorites": "仅显示收藏的项目",
|
||||
"map_settings_theme_settings": "地图主题",
|
||||
"map_zoom_to_see_photos": "缩小以查看项目",
|
||||
|
|
@ -1309,6 +1329,7 @@
|
|||
"mark_as_read": "标记为已读",
|
||||
"marked_all_as_read": "已全部标记为已读",
|
||||
"matches": "匹配",
|
||||
"matching_assets": "匹配资产",
|
||||
"media_type": "媒体类型",
|
||||
"memories": "回忆",
|
||||
"memories_all_caught_up": "已全部看完",
|
||||
|
|
@ -1349,6 +1370,7 @@
|
|||
"name_or_nickname": "名称或昵称",
|
||||
"network_requirement_photos_upload": "使用蜂窝数据备份照片",
|
||||
"network_requirement_videos_upload": "使用蜂窝数据备份视频",
|
||||
"network_requirements": "网络要求",
|
||||
"network_requirements_updated": "网络要求发生变化,正在重置备份队列",
|
||||
"networking_settings": "网络",
|
||||
"networking_subtitle": "管理服务器接口设置",
|
||||
|
|
@ -1359,6 +1381,7 @@
|
|||
"new_person": "新人物",
|
||||
"new_pin_code": "新的PIN码",
|
||||
"new_pin_code_subtitle": "这是您第一次访问此锁定文件夹。创建一个PIN码以安全访问此页面",
|
||||
"new_timeline": "新建时间轴",
|
||||
"new_user_created": "已创建新用户",
|
||||
"new_version_available": "有新版本发布啦",
|
||||
"newest_first": "最新优先",
|
||||
|
|
@ -1372,20 +1395,25 @@
|
|||
"no_assets_message": "点击上传您的第一张照片",
|
||||
"no_assets_to_show": "没有要显示的资产",
|
||||
"no_cast_devices_found": "未找到投放设备",
|
||||
"no_checksum_local": "没有可用的校验和-无法获取本地资产",
|
||||
"no_checksum_remote": "没有可用的校验和-无法获取远程资产",
|
||||
"no_duplicates_found": "未发现重复项。",
|
||||
"no_exif_info_available": "没有可用的 EXIF 信息",
|
||||
"no_explore_results_message": "上传更多照片来探索。",
|
||||
"no_favorites_message": "添加到收藏夹,快速查找最佳图片和视频",
|
||||
"no_libraries_message": "创建外部图库来查看您的照片和视频",
|
||||
"no_local_assets_found": "未找到具有此校验和的本地资产",
|
||||
"no_locked_photos_message": "锁定文件夹中的照片和视频将被隐藏,不会在您浏览、搜索图库时出现。",
|
||||
"no_name": "未命名",
|
||||
"no_notifications": "没有通知",
|
||||
"no_people_found": "未找到匹配的人物",
|
||||
"no_places": "无位置",
|
||||
"no_remote_assets_found": "未找到具有此校验和的远程资产",
|
||||
"no_results": "无结果",
|
||||
"no_results_description": "尝试使用同义词或更通用的关键词",
|
||||
"no_shared_albums_message": "创建相册以共享照片和视频",
|
||||
"no_uploads_in_progress": "没有正在进行的上传",
|
||||
"not_available": "不适用",
|
||||
"not_in_any_album": "不在任何相册中",
|
||||
"not_selected": "未选择",
|
||||
"note_apply_storage_label_to_previously_uploaded assets": "提示:要将存储标签应用于之前上传的项目,需要运行",
|
||||
|
|
@ -1508,6 +1536,7 @@
|
|||
"port": "端口",
|
||||
"preferences_settings_subtitle": "管理应用的偏好设置",
|
||||
"preferences_settings_title": "偏好设置",
|
||||
"preparing": "准备中",
|
||||
"preset": "预设",
|
||||
"preview": "预览",
|
||||
"previous": "上一个",
|
||||
|
|
@ -1573,6 +1602,7 @@
|
|||
"read_changelog": "阅读更新日志",
|
||||
"readonly_mode_disabled": "只读模式已禁用",
|
||||
"readonly_mode_enabled": "只读模式已启用",
|
||||
"ready_for_upload": "准备上传",
|
||||
"reassign": "重新指派",
|
||||
"reassigned_assets_to_existing_person": "重新指派{count, plural, one {#个项目} other {#个项目}}到{name, select, null {已存在的人物} other {{name}}}",
|
||||
"reassigned_assets_to_new_person": "重新指派{count, plural, one {#个项目} other {#个项目}}到新的人物",
|
||||
|
|
@ -1597,6 +1627,7 @@
|
|||
"regenerating_thumbnails": "正在重新生成缩略图",
|
||||
"remote": "远程",
|
||||
"remote_assets": "远程项目",
|
||||
"remote_media_summary": "远程媒体摘要",
|
||||
"remove": "移除",
|
||||
"remove_assets_album_confirmation": "确定要从图库中移除{count, plural, one {#个项目} other {#个项目}}?",
|
||||
"remove_assets_shared_link_confirmation": "确定要从共享链接中移除{count, plural, one {#个项目} other {#个项目}}?",
|
||||
|
|
@ -1875,6 +1906,7 @@
|
|||
"show_slideshow_transition": "显示幻灯片过渡效果",
|
||||
"show_supporter_badge": "支持者徽章",
|
||||
"show_supporter_badge_description": "展示支持者徽章",
|
||||
"show_text_search_menu": "显示文本搜索菜单",
|
||||
"shuffle": "随机",
|
||||
"sidebar": "侧边栏",
|
||||
"sidebar_display_description": "在侧边栏中显示链接",
|
||||
|
|
@ -1905,6 +1937,7 @@
|
|||
"stacktrace": "堆栈跟踪",
|
||||
"start": "开始",
|
||||
"start_date": "开始日期",
|
||||
"start_date_before_end_date": "开始日期必须在结束日期之前",
|
||||
"state": "省份",
|
||||
"status": "状态",
|
||||
"stop_casting": "停止投放",
|
||||
|
|
@ -2107,5 +2140,6 @@
|
|||
"yes": "是",
|
||||
"you_dont_have_any_shared_links": "您没有任何共享链接",
|
||||
"your_wifi_name": "您的 Wi-Fi 名称",
|
||||
"zoom_image": "缩放图像"
|
||||
"zoom_image": "缩放图像",
|
||||
"zoom_to_bounds": "缩放到边界"
|
||||
}
|
||||
|
|
|
|||
15
mise.toml
15
mise.toml
|
|
@ -327,6 +327,7 @@ depends = [
|
|||
"mobile:pigeon:native-sync",
|
||||
"mobile:pigeon:thumbnail",
|
||||
"mobile:pigeon:background-worker",
|
||||
"mobile:pigeon:background-worker-lock",
|
||||
"mobile:pigeon:connectivity",
|
||||
]
|
||||
|
||||
|
|
@ -430,6 +431,20 @@ run = [
|
|||
"dart format lib/platform/background_worker_api.g.dart",
|
||||
]
|
||||
|
||||
[tasks."mobile:pigeon:background-worker-lock"]
|
||||
description = "Generate background worker lock API pigeon code"
|
||||
dir = "mobile"
|
||||
hide = true
|
||||
sources = ["pigeon/background_worker_lock_api.dart"]
|
||||
outputs = [
|
||||
"lib/platform/background_worker_lock_api.g.dart",
|
||||
"android/app/src/main/kotlin/app/alextran/immich/background/BackgroundWorkerLock.g.kt",
|
||||
]
|
||||
run = [
|
||||
"dart run pigeon --input pigeon/background_worker_lock_api.dart",
|
||||
"dart format lib/platform/background_worker_lock_api.g.dart",
|
||||
]
|
||||
|
||||
[tasks."mobile:pigeon:connectivity"]
|
||||
description = "Generate connectivity API pigeon code"
|
||||
dir = "mobile"
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import android.os.ext.SdkExtensions
|
|||
import app.alextran.immich.background.BackgroundEngineLock
|
||||
import app.alextran.immich.background.BackgroundWorkerApiImpl
|
||||
import app.alextran.immich.background.BackgroundWorkerFgHostApi
|
||||
import app.alextran.immich.background.BackgroundWorkerLockApi
|
||||
import app.alextran.immich.connectivity.ConnectivityApi
|
||||
import app.alextran.immich.connectivity.ConnectivityApiImpl
|
||||
import app.alextran.immich.images.ThumbnailApi
|
||||
|
|
@ -24,11 +25,9 @@ class MainActivity : FlutterFragmentActivity() {
|
|||
|
||||
companion object {
|
||||
fun registerPlugins(ctx: Context, flutterEngine: FlutterEngine) {
|
||||
flutterEngine.plugins.add(BackgroundServicePlugin())
|
||||
flutterEngine.plugins.add(HttpSSLOptionsPlugin())
|
||||
flutterEngine.plugins.add(BackgroundEngineLock())
|
||||
|
||||
val messenger = flutterEngine.dartExecutor.binaryMessenger
|
||||
val backgroundEngineLockImpl = BackgroundEngineLock(ctx)
|
||||
BackgroundWorkerLockApi.setUp(messenger, backgroundEngineLockImpl)
|
||||
val nativeSyncApiImpl =
|
||||
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.R || SdkExtensions.getExtensionVersion(Build.VERSION_CODES.R) < 1) {
|
||||
NativeSyncApiImpl26(ctx)
|
||||
|
|
@ -39,6 +38,10 @@ class MainActivity : FlutterFragmentActivity() {
|
|||
ThumbnailApi.setUp(messenger, ThumbnailsImpl(ctx))
|
||||
BackgroundWorkerFgHostApi.setUp(messenger, BackgroundWorkerApiImpl(ctx))
|
||||
ConnectivityApi.setUp(messenger, ConnectivityApiImpl(ctx))
|
||||
|
||||
flutterEngine.plugins.add(BackgroundServicePlugin())
|
||||
flutterEngine.plugins.add(HttpSSLOptionsPlugin())
|
||||
flutterEngine.plugins.add(backgroundEngineLockImpl)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,28 +1,45 @@
|
|||
package app.alextran.immich.background
|
||||
|
||||
import android.content.Context
|
||||
import android.util.Log
|
||||
import androidx.work.WorkManager
|
||||
import io.flutter.embedding.engine.FlutterEngineCache
|
||||
import io.flutter.embedding.engine.plugins.FlutterPlugin
|
||||
import java.util.concurrent.atomic.AtomicInteger
|
||||
|
||||
private const val TAG = "BackgroundEngineLock"
|
||||
|
||||
class BackgroundEngineLock : FlutterPlugin {
|
||||
class BackgroundEngineLock(context: Context) : BackgroundWorkerLockApi, FlutterPlugin {
|
||||
private val ctx: Context = context.applicationContext
|
||||
|
||||
companion object {
|
||||
const val ENGINE_CACHE_KEY = "immich::background_worker::engine"
|
||||
var engineCount = AtomicInteger(0)
|
||||
|
||||
private var engineCount = AtomicInteger(0)
|
||||
|
||||
private fun checkAndEnforceBackgroundLock(ctx: Context) {
|
||||
// work manager task is running while the main app is opened, cancel the worker
|
||||
if (BackgroundWorkerPreferences(ctx).isLocked() &&
|
||||
engineCount.get() > 1 &&
|
||||
BackgroundWorkerApiImpl.isBackgroundWorkerRunning()
|
||||
) {
|
||||
Log.i(TAG, "Background worker is locked, cancelling the background worker")
|
||||
BackgroundWorkerApiImpl.cancelBackgroundWorker(ctx)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun lock() {
|
||||
BackgroundWorkerPreferences(ctx).setLocked(true)
|
||||
checkAndEnforceBackgroundLock(ctx)
|
||||
Log.i(TAG, "Background worker is locked")
|
||||
}
|
||||
|
||||
override fun unlock() {
|
||||
BackgroundWorkerPreferences(ctx).setLocked(false)
|
||||
Log.i(TAG, "Background worker is unlocked")
|
||||
}
|
||||
|
||||
override fun onAttachedToEngine(binding: FlutterPlugin.FlutterPluginBinding) {
|
||||
// work manager task is running while the main app is opened, cancel the worker
|
||||
if (engineCount.incrementAndGet() > 1 && FlutterEngineCache.getInstance()
|
||||
.get(ENGINE_CACHE_KEY) != null
|
||||
) {
|
||||
WorkManager.getInstance(binding.applicationContext)
|
||||
.cancelUniqueWork(BackgroundWorkerApiImpl.BACKGROUND_WORKER_NAME)
|
||||
FlutterEngineCache.getInstance().remove(ENGINE_CACHE_KEY)
|
||||
}
|
||||
checkAndEnforceBackgroundLock(binding.applicationContext)
|
||||
engineCount.incrementAndGet()
|
||||
Log.i(TAG, "Flutter engine attached. Attached Engines count: $engineCount")
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -76,9 +76,7 @@ class BackgroundWorker(context: Context, params: WorkerParameters) :
|
|||
|
||||
loader.ensureInitializationCompleteAsync(ctx, null, Handler(Looper.getMainLooper())) {
|
||||
engine = FlutterEngine(ctx)
|
||||
FlutterEngineCache.getInstance().remove(BackgroundEngineLock.ENGINE_CACHE_KEY);
|
||||
FlutterEngineCache.getInstance()
|
||||
.put(BackgroundEngineLock.ENGINE_CACHE_KEY, engine!!)
|
||||
FlutterEngineCache.getInstance().put(BackgroundWorkerApiImpl.ENGINE_CACHE_KEY, engine!!)
|
||||
|
||||
// Register custom plugins
|
||||
MainActivity.registerPlugins(ctx, engine!!)
|
||||
|
|
@ -192,9 +190,9 @@ class BackgroundWorker(context: Context, params: WorkerParameters) :
|
|||
isComplete = true
|
||||
engine?.destroy()
|
||||
engine = null
|
||||
FlutterEngineCache.getInstance().remove(BackgroundEngineLock.ENGINE_CACHE_KEY);
|
||||
flutterApi = null
|
||||
notificationManager.cancel(NOTIFICATION_ID)
|
||||
FlutterEngineCache.getInstance().remove(BackgroundWorkerApiImpl.ENGINE_CACHE_KEY)
|
||||
waitForForegroundPromotion()
|
||||
completionHandler.set(success)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
package app.alextran.immich.background
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import android.provider.MediaStore
|
||||
import android.util.Log
|
||||
import androidx.work.BackoffPolicy
|
||||
|
|
@ -9,6 +8,7 @@ import androidx.work.Constraints
|
|||
import androidx.work.ExistingWorkPolicy
|
||||
import androidx.work.OneTimeWorkRequest
|
||||
import androidx.work.WorkManager
|
||||
import io.flutter.embedding.engine.FlutterEngineCache
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
private const val TAG = "BackgroundWorkerApiImpl"
|
||||
|
|
@ -34,8 +34,10 @@ class BackgroundWorkerApiImpl(context: Context) : BackgroundWorkerFgHostApi {
|
|||
}
|
||||
|
||||
companion object {
|
||||
const val BACKGROUND_WORKER_NAME = "immich/BackgroundWorkerV1"
|
||||
private const val BACKGROUND_WORKER_NAME = "immich/BackgroundWorkerV1"
|
||||
private const val OBSERVER_WORKER_NAME = "immich/MediaObserverV1"
|
||||
const val ENGINE_CACHE_KEY = "immich::background_worker::engine"
|
||||
|
||||
|
||||
fun enqueueMediaObserver(ctx: Context) {
|
||||
val settings = BackgroundWorkerPreferences(ctx).getSettings()
|
||||
|
|
@ -45,7 +47,7 @@ class BackgroundWorkerApiImpl(context: Context) : BackgroundWorkerFgHostApi {
|
|||
addContentUriTrigger(MediaStore.Video.Media.INTERNAL_CONTENT_URI, true)
|
||||
addContentUriTrigger(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, true)
|
||||
setTriggerContentUpdateDelay(settings.minimumDelaySeconds, TimeUnit.SECONDS)
|
||||
setTriggerContentMaxDelay(settings.minimumDelaySeconds * 10, TimeUnit.MINUTES)
|
||||
setTriggerContentMaxDelay(settings.minimumDelaySeconds * 10, TimeUnit.SECONDS)
|
||||
setRequiresCharging(settings.requiresCharging)
|
||||
}.build()
|
||||
|
||||
|
|
@ -73,35 +75,18 @@ class BackgroundWorkerApiImpl(context: Context) : BackgroundWorkerFgHostApi {
|
|||
|
||||
Log.i(TAG, "Enqueued background worker with name: $BACKGROUND_WORKER_NAME")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private class BackgroundWorkerPreferences(private val ctx: Context) {
|
||||
companion object {
|
||||
private const val SHARED_PREF_NAME = "Immich::BackgroundWorker"
|
||||
private const val SHARED_PREF_MIN_DELAY_KEY = "BackgroundWorker::minDelaySeconds"
|
||||
private const val SHARED_PREF_REQUIRE_CHARGING_KEY = "BackgroundWorker::requireCharging"
|
||||
|
||||
private const val DEFAULT_MIN_DELAY_SECONDS = 30L
|
||||
private const val DEFAULT_REQUIRE_CHARGING = false
|
||||
}
|
||||
|
||||
private val sp: SharedPreferences by lazy {
|
||||
ctx.getSharedPreferences(SHARED_PREF_NAME, Context.MODE_PRIVATE)
|
||||
}
|
||||
|
||||
fun updateSettings(settings: BackgroundWorkerSettings) {
|
||||
sp.edit().apply {
|
||||
putLong(SHARED_PREF_MIN_DELAY_KEY, settings.minimumDelaySeconds)
|
||||
putBoolean(SHARED_PREF_REQUIRE_CHARGING_KEY, settings.requiresCharging)
|
||||
apply()
|
||||
}
|
||||
}
|
||||
|
||||
fun getSettings(): BackgroundWorkerSettings {
|
||||
return BackgroundWorkerSettings(
|
||||
minimumDelaySeconds = sp.getLong(SHARED_PREF_MIN_DELAY_KEY, DEFAULT_MIN_DELAY_SECONDS),
|
||||
requiresCharging = sp.getBoolean(SHARED_PREF_REQUIRE_CHARGING_KEY, DEFAULT_REQUIRE_CHARGING),
|
||||
)
|
||||
|
||||
fun isBackgroundWorkerRunning(): Boolean {
|
||||
// Easier to check if the engine is cached as we always cache the engine when starting the worker
|
||||
// and remove it when the worker is finished
|
||||
return FlutterEngineCache.getInstance().get(ENGINE_CACHE_KEY) != null
|
||||
}
|
||||
|
||||
fun cancelBackgroundWorker(ctx: Context) {
|
||||
WorkManager.getInstance(ctx).cancelUniqueWork(BACKGROUND_WORKER_NAME)
|
||||
FlutterEngineCache.getInstance().remove(ENGINE_CACHE_KEY)
|
||||
|
||||
Log.i(TAG, "Cancelled background upload task")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,95 @@
|
|||
// Autogenerated from Pigeon (v26.0.0), do not edit directly.
|
||||
// See also: https://pub.dev/packages/pigeon
|
||||
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
|
||||
|
||||
package app.alextran.immich.background
|
||||
|
||||
import android.util.Log
|
||||
import io.flutter.plugin.common.BasicMessageChannel
|
||||
import io.flutter.plugin.common.BinaryMessenger
|
||||
import io.flutter.plugin.common.EventChannel
|
||||
import io.flutter.plugin.common.MessageCodec
|
||||
import io.flutter.plugin.common.StandardMethodCodec
|
||||
import io.flutter.plugin.common.StandardMessageCodec
|
||||
import java.io.ByteArrayOutputStream
|
||||
import java.nio.ByteBuffer
|
||||
private object BackgroundWorkerLockPigeonUtils {
|
||||
|
||||
fun wrapResult(result: Any?): List<Any?> {
|
||||
return listOf(result)
|
||||
}
|
||||
|
||||
fun wrapError(exception: Throwable): List<Any?> {
|
||||
return if (exception is FlutterError) {
|
||||
listOf(
|
||||
exception.code,
|
||||
exception.message,
|
||||
exception.details
|
||||
)
|
||||
} else {
|
||||
listOf(
|
||||
exception.javaClass.simpleName,
|
||||
exception.toString(),
|
||||
"Cause: " + exception.cause + ", Stacktrace: " + Log.getStackTraceString(exception)
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
private open class BackgroundWorkerLockPigeonCodec : StandardMessageCodec() {
|
||||
override fun readValueOfType(type: Byte, buffer: ByteBuffer): Any? {
|
||||
return super.readValueOfType(type, buffer)
|
||||
}
|
||||
override fun writeValue(stream: ByteArrayOutputStream, value: Any?) {
|
||||
super.writeValue(stream, value)
|
||||
}
|
||||
}
|
||||
|
||||
/** Generated interface from Pigeon that represents a handler of messages from Flutter. */
|
||||
interface BackgroundWorkerLockApi {
|
||||
fun lock()
|
||||
fun unlock()
|
||||
|
||||
companion object {
|
||||
/** The codec used by BackgroundWorkerLockApi. */
|
||||
val codec: MessageCodec<Any?> by lazy {
|
||||
BackgroundWorkerLockPigeonCodec()
|
||||
}
|
||||
/** Sets up an instance of `BackgroundWorkerLockApi` to handle messages through the `binaryMessenger`. */
|
||||
@JvmOverloads
|
||||
fun setUp(binaryMessenger: BinaryMessenger, api: BackgroundWorkerLockApi?, messageChannelSuffix: String = "") {
|
||||
val separatedMessageChannelSuffix = if (messageChannelSuffix.isNotEmpty()) ".$messageChannelSuffix" else ""
|
||||
run {
|
||||
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.immich_mobile.BackgroundWorkerLockApi.lock$separatedMessageChannelSuffix", codec)
|
||||
if (api != null) {
|
||||
channel.setMessageHandler { _, reply ->
|
||||
val wrapped: List<Any?> = try {
|
||||
api.lock()
|
||||
listOf(null)
|
||||
} catch (exception: Throwable) {
|
||||
BackgroundWorkerLockPigeonUtils.wrapError(exception)
|
||||
}
|
||||
reply.reply(wrapped)
|
||||
}
|
||||
} else {
|
||||
channel.setMessageHandler(null)
|
||||
}
|
||||
}
|
||||
run {
|
||||
val channel = BasicMessageChannel<Any?>(binaryMessenger, "dev.flutter.pigeon.immich_mobile.BackgroundWorkerLockApi.unlock$separatedMessageChannelSuffix", codec)
|
||||
if (api != null) {
|
||||
channel.setMessageHandler { _, reply ->
|
||||
val wrapped: List<Any?> = try {
|
||||
api.unlock()
|
||||
listOf(null)
|
||||
} catch (exception: Throwable) {
|
||||
BackgroundWorkerLockPigeonUtils.wrapError(exception)
|
||||
}
|
||||
reply.reply(wrapped)
|
||||
}
|
||||
} else {
|
||||
channel.setMessageHandler(null)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
package app.alextran.immich.background
|
||||
|
||||
import android.content.Context
|
||||
import android.content.SharedPreferences
|
||||
import androidx.core.content.edit
|
||||
|
||||
class BackgroundWorkerPreferences(private val ctx: Context) {
|
||||
companion object {
|
||||
const val SHARED_PREF_NAME = "Immich::BackgroundWorker"
|
||||
private const val SHARED_PREF_MIN_DELAY_KEY = "BackgroundWorker::minDelaySeconds"
|
||||
private const val SHARED_PREF_REQUIRE_CHARGING_KEY = "BackgroundWorker::requireCharging"
|
||||
private const val SHARED_PREF_LOCK_KEY = "BackgroundWorker::isLocked"
|
||||
|
||||
private const val DEFAULT_MIN_DELAY_SECONDS = 30L
|
||||
private const val DEFAULT_REQUIRE_CHARGING = false
|
||||
}
|
||||
|
||||
private val sp: SharedPreferences by lazy {
|
||||
ctx.getSharedPreferences(SHARED_PREF_NAME, Context.MODE_PRIVATE)
|
||||
}
|
||||
|
||||
fun updateSettings(settings: BackgroundWorkerSettings) {
|
||||
sp.edit {
|
||||
putLong(SHARED_PREF_MIN_DELAY_KEY, settings.minimumDelaySeconds)
|
||||
putBoolean(SHARED_PREF_REQUIRE_CHARGING_KEY, settings.requiresCharging)
|
||||
}
|
||||
}
|
||||
|
||||
fun getSettings(): BackgroundWorkerSettings {
|
||||
val delaySeconds = sp.getLong(SHARED_PREF_MIN_DELAY_KEY, DEFAULT_MIN_DELAY_SECONDS)
|
||||
|
||||
return BackgroundWorkerSettings(
|
||||
minimumDelaySeconds = if (delaySeconds >= 1000) delaySeconds / 1000 else delaySeconds,
|
||||
requiresCharging = sp.getBoolean(
|
||||
SHARED_PREF_REQUIRE_CHARGING_KEY,
|
||||
DEFAULT_REQUIRE_CHARGING
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
fun setLocked(paused: Boolean) {
|
||||
sp.edit {
|
||||
putBoolean(SHARED_PREF_LOCK_KEY, paused)
|
||||
}
|
||||
}
|
||||
|
||||
fun isLocked(): Boolean {
|
||||
return sp.getBoolean(SHARED_PREF_LOCK_KEY, true)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -17,6 +17,7 @@ import java.util.concurrent.Executors
|
|||
import com.bumptech.glide.Glide
|
||||
import com.bumptech.glide.Priority
|
||||
import com.bumptech.glide.load.DecodeFormat
|
||||
import com.bumptech.glide.request.target.Target.SIZE_ORIGINAL
|
||||
import java.util.Base64
|
||||
import java.util.concurrent.CancellationException
|
||||
import java.util.concurrent.ConcurrentHashMap
|
||||
|
|
@ -120,15 +121,14 @@ class ThumbnailsImpl(context: Context) : ThumbnailApi {
|
|||
signal: CancellationSignal
|
||||
) {
|
||||
signal.throwIfCanceled()
|
||||
val targetWidth = width.toInt()
|
||||
val targetHeight = height.toInt()
|
||||
val size = Size(width.toInt(), height.toInt())
|
||||
val id = assetId.toLong()
|
||||
|
||||
signal.throwIfCanceled()
|
||||
val bitmap = if (isVideo) {
|
||||
decodeVideoThumbnail(id, targetWidth, targetHeight, signal)
|
||||
decodeVideoThumbnail(id, size, signal)
|
||||
} else {
|
||||
decodeImage(id, targetWidth, targetHeight, signal)
|
||||
decodeImage(id, size, signal)
|
||||
}
|
||||
|
||||
processBitmap(bitmap, callback, signal)
|
||||
|
|
@ -151,9 +151,7 @@ class ThumbnailsImpl(context: Context) : ThumbnailApi {
|
|||
bitmap.recycle()
|
||||
signal.throwIfCanceled()
|
||||
val res = mapOf(
|
||||
"pointer" to pointer,
|
||||
"width" to actualWidth.toLong(),
|
||||
"height" to actualHeight.toLong()
|
||||
"pointer" to pointer, "width" to actualWidth.toLong(), "height" to actualHeight.toLong()
|
||||
)
|
||||
callback(Result.success(res))
|
||||
} catch (e: Exception) {
|
||||
|
|
@ -162,55 +160,54 @@ class ThumbnailsImpl(context: Context) : ThumbnailApi {
|
|||
}
|
||||
}
|
||||
|
||||
private fun decodeImage(
|
||||
id: Long, targetWidth: Int, targetHeight: Int, signal: CancellationSignal
|
||||
): Bitmap {
|
||||
private fun decodeImage(id: Long, size: Size, signal: CancellationSignal): Bitmap {
|
||||
signal.throwIfCanceled()
|
||||
val uri = ContentUris.withAppendedId(Images.Media.EXTERNAL_CONTENT_URI, id)
|
||||
if (targetHeight > 768 || targetWidth > 768) {
|
||||
return decodeSource(uri, targetWidth, targetHeight, signal)
|
||||
if (size.width <= 0 || size.height <= 0 || size.width > 768 || size.height > 768) {
|
||||
return decodeSource(uri, size, signal)
|
||||
}
|
||||
|
||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||
resolver.loadThumbnail(uri, Size(targetWidth, targetHeight), signal)
|
||||
resolver.loadThumbnail(uri, size, signal)
|
||||
} else {
|
||||
signal.setOnCancelListener { Images.Thumbnails.cancelThumbnailRequest(resolver, id) }
|
||||
Images.Thumbnails.getThumbnail(resolver, id, Images.Thumbnails.MINI_KIND, OPTIONS)
|
||||
}
|
||||
}
|
||||
|
||||
private fun decodeVideoThumbnail(
|
||||
id: Long, targetWidth: Int, targetHeight: Int, signal: CancellationSignal
|
||||
): Bitmap {
|
||||
private fun decodeVideoThumbnail(id: Long, target: Size, signal: CancellationSignal): Bitmap {
|
||||
signal.throwIfCanceled()
|
||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||
val uri = ContentUris.withAppendedId(Video.Media.EXTERNAL_CONTENT_URI, id)
|
||||
resolver.loadThumbnail(uri, Size(targetWidth, targetHeight), signal)
|
||||
// ensure a valid resolution as the thumbnail is used for videos even when no scaling is needed
|
||||
val size = if (target.width > 0 && target.height > 0) target else Size(768, 768)
|
||||
resolver.loadThumbnail(uri, size, signal)
|
||||
} else {
|
||||
signal.setOnCancelListener { Video.Thumbnails.cancelThumbnailRequest(resolver, id) }
|
||||
Video.Thumbnails.getThumbnail(resolver, id, Video.Thumbnails.MINI_KIND, OPTIONS)
|
||||
}
|
||||
}
|
||||
|
||||
private fun decodeSource(
|
||||
uri: Uri, targetWidth: Int, targetHeight: Int, signal: CancellationSignal
|
||||
): Bitmap {
|
||||
private fun decodeSource(uri: Uri, target: Size, signal: CancellationSignal): Bitmap {
|
||||
signal.throwIfCanceled()
|
||||
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
|
||||
val source = ImageDecoder.createSource(resolver, uri)
|
||||
signal.throwIfCanceled()
|
||||
ImageDecoder.decodeBitmap(source) { decoder, info, _ ->
|
||||
if (targetWidth > 0 && targetHeight > 0) {
|
||||
val sample = max(1, min(info.size.width / targetWidth, info.size.height / targetHeight))
|
||||
if (target.width > 0 && target.height > 0) {
|
||||
val sample = max(1, min(info.size.width / target.width, info.size.height / target.height))
|
||||
decoder.setTargetSampleSize(sample)
|
||||
}
|
||||
decoder.allocator = ImageDecoder.ALLOCATOR_SOFTWARE
|
||||
decoder.setTargetColorSpace(ColorSpace.get(ColorSpace.Named.SRGB))
|
||||
}
|
||||
} else {
|
||||
val ref = Glide.with(ctx).asBitmap().priority(Priority.IMMEDIATE).load(uri)
|
||||
.disallowHardwareConfig().format(DecodeFormat.PREFER_ARGB_8888)
|
||||
.submit(targetWidth, targetHeight)
|
||||
val ref =
|
||||
Glide.with(ctx).asBitmap().priority(Priority.IMMEDIATE).load(uri).disallowHardwareConfig()
|
||||
.format(DecodeFormat.PREFER_ARGB_8888).submit(
|
||||
if (target.width > 0) target.width else SIZE_ORIGINAL,
|
||||
if (target.height > 0) target.height else SIZE_ORIGINAL,
|
||||
)
|
||||
signal.setOnCancelListener { Glide.with(ctx).clear(ref) }
|
||||
ref.get()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
allprojects {
|
||||
ext.kotlin_version = '2.0.20'
|
||||
ext.kotlin_version = '2.2.20'
|
||||
|
||||
repositories {
|
||||
google()
|
||||
|
|
@ -16,8 +16,8 @@ subprojects {
|
|||
if (project.plugins.hasPlugin("com.android.application") ||
|
||||
project.plugins.hasPlugin("com.android.library")) {
|
||||
project.android {
|
||||
compileSdkVersion 35
|
||||
buildToolsVersion "35.0.0"
|
||||
compileSdkVersion 36
|
||||
buildToolsVersion "36.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,8 +35,8 @@ platform :android do
|
|||
task: 'bundle',
|
||||
build_type: 'Release',
|
||||
properties: {
|
||||
"android.injected.version.code" => 3015,
|
||||
"android.injected.version.name" => "1.142.1",
|
||||
"android.injected.version.code" => 3017,
|
||||
"android.injected.version.name" => "1.143.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')
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
|
||||
networkTimeout=10000
|
||||
validateDistributionUrl=true
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
|
|
|
|||
|
|
@ -18,10 +18,10 @@ pluginManagement {
|
|||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version '8.7.2' apply false
|
||||
id "org.jetbrains.kotlin.android" version "2.0.20" apply false
|
||||
id "com.android.application" version '8.11.2' apply false
|
||||
id "org.jetbrains.kotlin.android" version "2.2.20" apply false
|
||||
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.22' apply false
|
||||
id 'com.google.devtools.ksp' version '2.0.20-1.0.24' apply false
|
||||
id 'com.google.devtools.ksp' version '2.2.20-2.0.3' apply false
|
||||
}
|
||||
|
||||
include ":app"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ platform :ios do
|
|||
path: "./Runner.xcodeproj",
|
||||
)
|
||||
increment_version_number(
|
||||
version_number: "1.142.1"
|
||||
version_number: "1.143.1"
|
||||
)
|
||||
increment_build_number(
|
||||
build_number: latest_testflight_build_number + 1,
|
||||
|
|
|
|||
|
|
@ -10,11 +10,13 @@ import 'package:immich_mobile/constants/constants.dart';
|
|||
import 'package:immich_mobile/domain/services/log.service.dart';
|
||||
import 'package:immich_mobile/entities/store.entity.dart';
|
||||
import 'package:immich_mobile/extensions/network_capability_extensions.dart';
|
||||
import 'package:immich_mobile/extensions/platform_extensions.dart';
|
||||
import 'package:immich_mobile/extensions/translate_extensions.dart';
|
||||
import 'package:immich_mobile/generated/intl_keys.g.dart';
|
||||
import 'package:immich_mobile/infrastructure/repositories/db.repository.dart';
|
||||
import 'package:immich_mobile/infrastructure/repositories/logger_db.repository.dart';
|
||||
import 'package:immich_mobile/platform/background_worker_api.g.dart';
|
||||
import 'package:immich_mobile/platform/background_worker_lock_api.g.dart';
|
||||
import 'package:immich_mobile/providers/app_settings.provider.dart';
|
||||
import 'package:immich_mobile/providers/background_sync.provider.dart';
|
||||
import 'package:immich_mobile/providers/backup/drift_backup.provider.dart';
|
||||
|
|
@ -58,7 +60,7 @@ class BackgroundWorkerFgService {
|
|||
}
|
||||
|
||||
class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
||||
late final ProviderContainer _ref;
|
||||
ProviderContainer? _ref;
|
||||
final Isar _isar;
|
||||
final Drift _drift;
|
||||
final DriftLogger _driftLogger;
|
||||
|
|
@ -83,16 +85,17 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
BackgroundWorkerFlutterApi.setUp(this);
|
||||
}
|
||||
|
||||
bool get _isBackupEnabled => _ref.read(appSettingsServiceProvider).getSetting(AppSettingsEnum.enableBackup);
|
||||
bool get _isBackupEnabled => _ref?.read(appSettingsServiceProvider).getSetting(AppSettingsEnum.enableBackup) ?? false;
|
||||
|
||||
Future<void> init() async {
|
||||
try {
|
||||
HttpSSLOptions.apply(applyNative: false);
|
||||
|
||||
await Future.wait([
|
||||
await Future.wait(
|
||||
[
|
||||
loadTranslations(),
|
||||
workerManager.init(dynamicSpawning: true),
|
||||
_ref.read(authServiceProvider).setOpenApiServiceEndpoint(),
|
||||
_ref?.read(authServiceProvider).setOpenApiServiceEndpoint(),
|
||||
// Initialize the file downloader
|
||||
FileDownloader().configure(
|
||||
globalConfig: [
|
||||
|
|
@ -104,8 +107,9 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
),
|
||||
FileDownloader().trackTasksInGroup(kDownloadGroupLivePhoto, markDownloadedComplete: false),
|
||||
FileDownloader().trackTasks(),
|
||||
_ref.read(fileMediaRepositoryProvider).enableBackgroundAccess(),
|
||||
]);
|
||||
_ref?.read(fileMediaRepositoryProvider).enableBackgroundAccess(),
|
||||
].nonNulls,
|
||||
);
|
||||
|
||||
configureFileDownloaderNotifications();
|
||||
|
||||
|
|
@ -178,15 +182,17 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
}
|
||||
|
||||
Future<void> _cleanup() async {
|
||||
if (_isCleanedUp) {
|
||||
// If ref is null, it means the service was never initialized properly
|
||||
if (_isCleanedUp || _ref == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
final backgroundSyncManager = _ref.read(backgroundSyncProvider);
|
||||
final nativeSyncApi = _ref.read(nativeSyncApiProvider);
|
||||
_isCleanedUp = true;
|
||||
_ref.dispose();
|
||||
final backgroundSyncManager = _ref?.read(backgroundSyncProvider);
|
||||
final nativeSyncApi = _ref?.read(nativeSyncApiProvider);
|
||||
_ref?.dispose();
|
||||
_ref = null;
|
||||
|
||||
_cancellationToken.cancel();
|
||||
_logger.info("Cleaning up background worker");
|
||||
|
|
@ -199,14 +205,14 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
Store.dispose(),
|
||||
_drift.close(),
|
||||
_driftLogger.close(),
|
||||
backgroundSyncManager.cancel(),
|
||||
nativeSyncApi.cancelHashing(),
|
||||
backgroundSyncManager?.cancel(),
|
||||
nativeSyncApi?.cancelHashing(),
|
||||
];
|
||||
|
||||
if (_isar.isOpen) {
|
||||
cleanupFutures.add(_isar.close());
|
||||
}
|
||||
await Future.wait(cleanupFutures);
|
||||
await Future.wait(cleanupFutures.nonNulls);
|
||||
_logger.info("Background worker resources cleaned up");
|
||||
} catch (error, stack) {
|
||||
dPrint(() => 'Failed to cleanup background worker: $error with stack: $stack');
|
||||
|
|
@ -216,14 +222,18 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
Future<void> _handleBackup() async {
|
||||
await runZonedGuarded(
|
||||
() async {
|
||||
if (!_isBackupEnabled || _isCleanedUp) {
|
||||
if (_isCleanedUp) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!_isBackupEnabled) {
|
||||
_logger.info("[_handleBackup 1] Backup is disabled. Skipping backup routine");
|
||||
return;
|
||||
}
|
||||
|
||||
_logger.info("[_handleBackup 2] Enqueuing assets for backup from the background service");
|
||||
|
||||
final currentUser = _ref.read(currentUserProvider);
|
||||
final currentUser = _ref?.read(currentUserProvider);
|
||||
if (currentUser == null) {
|
||||
_logger.warning("[_handleBackup 3] No current user found. Skipping backup from background");
|
||||
return;
|
||||
|
|
@ -231,19 +241,18 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
|
||||
_logger.info("[_handleBackup 4] Resume backup from background");
|
||||
if (Platform.isIOS) {
|
||||
return _ref.read(driftBackupProvider.notifier).handleBackupResume(currentUser.id);
|
||||
return _ref?.read(driftBackupProvider.notifier).handleBackupResume(currentUser.id);
|
||||
}
|
||||
|
||||
final canPing = await _ref.read(serverInfoServiceProvider).ping();
|
||||
final canPing = await _ref?.read(serverInfoServiceProvider).ping() ?? false;
|
||||
if (!canPing) {
|
||||
_logger.warning("[_handleBackup 5] Server is not reachable. Skipping backup from background");
|
||||
return;
|
||||
}
|
||||
|
||||
final networkCapabilities = await _ref.read(connectivityApiProvider).getCapabilities();
|
||||
|
||||
final networkCapabilities = await _ref?.read(connectivityApiProvider).getCapabilities() ?? [];
|
||||
return _ref
|
||||
.read(uploadServiceProvider)
|
||||
?.read(uploadServiceProvider)
|
||||
.startBackupWithHttpClient(currentUser.id, networkCapabilities.hasWifi, _cancellationToken);
|
||||
},
|
||||
(error, stack) {
|
||||
|
|
@ -253,18 +262,18 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
}
|
||||
|
||||
Future<void> _syncAssets({Duration? hashTimeout}) async {
|
||||
await _ref.read(backgroundSyncProvider).syncLocal();
|
||||
await _ref?.read(backgroundSyncProvider).syncLocal();
|
||||
if (_isCleanedUp) {
|
||||
return;
|
||||
}
|
||||
|
||||
await _ref.read(backgroundSyncProvider).syncRemote();
|
||||
await _ref?.read(backgroundSyncProvider).syncRemote();
|
||||
if (_isCleanedUp) {
|
||||
return;
|
||||
}
|
||||
|
||||
var hashFuture = _ref.read(backgroundSyncProvider).hashAssets();
|
||||
if (hashTimeout != null) {
|
||||
var hashFuture = _ref?.read(backgroundSyncProvider).hashAssets();
|
||||
if (hashTimeout != null && hashFuture != null) {
|
||||
hashFuture = hashFuture.timeout(
|
||||
hashTimeout,
|
||||
onTimeout: () {
|
||||
|
|
@ -277,6 +286,23 @@ class BackgroundWorkerBgService extends BackgroundWorkerFlutterApi {
|
|||
}
|
||||
}
|
||||
|
||||
class BackgroundWorkerLockService {
|
||||
final BackgroundWorkerLockApi _hostApi;
|
||||
const BackgroundWorkerLockService(this._hostApi);
|
||||
|
||||
Future<void> lock() async {
|
||||
if (CurrentPlatform.isAndroid) {
|
||||
return _hostApi.lock();
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> unlock() async {
|
||||
if (CurrentPlatform.isAndroid) {
|
||||
return _hostApi.unlock();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// Native entry invoked from the background worker. If renaming or moving this to a different
|
||||
/// library, make sure to update the entry points and URI in native workers as well
|
||||
@pragma('vm:entry-point')
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@ import 'package:immich_mobile/infrastructure/repositories/local_album.repository
|
|||
import 'package:immich_mobile/infrastructure/repositories/remote_album.repository.dart';
|
||||
import 'package:immich_mobile/providers/infrastructure/album.provider.dart';
|
||||
import 'package:immich_mobile/repositories/drift_album_api_repository.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
import 'package:immich_mobile/utils/debug_print.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
|
||||
final syncLinkedAlbumServiceProvider = Provider(
|
||||
(ref) => SyncLinkedAlbumService(
|
||||
|
|
@ -31,17 +31,19 @@ class SyncLinkedAlbumService {
|
|||
selectedAlbums.map((localAlbum) async {
|
||||
final linkedRemoteAlbumId = localAlbum.linkedRemoteAlbumId;
|
||||
if (linkedRemoteAlbumId == null) {
|
||||
_log.warning("No linked remote album ID found for local album: ${localAlbum.name}");
|
||||
return;
|
||||
}
|
||||
|
||||
final remoteAlbum = await _remoteAlbumRepository.get(linkedRemoteAlbumId);
|
||||
if (remoteAlbum == null) {
|
||||
_log.warning("Linked remote album not found for ID: $linkedRemoteAlbumId");
|
||||
return;
|
||||
}
|
||||
|
||||
// get assets that are uploaded but not in the remote album
|
||||
final assetIds = await _remoteAlbumRepository.getLinkedAssetIds(userId, localAlbum.id, linkedRemoteAlbumId);
|
||||
|
||||
_log.fine("Syncing ${assetIds.length} assets to remote album: ${remoteAlbum.name}");
|
||||
if (assetIds.isNotEmpty) {
|
||||
final album = await _albumApiRepository.addAssets(remoteAlbum.id, assetIds);
|
||||
await _remoteAlbumRepository.addAssets(remoteAlbum.id, album.added);
|
||||
|
|
|
|||
|
|
@ -2,10 +2,12 @@ import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|||
import 'package:immich_mobile/domain/models/store.model.dart';
|
||||
import 'package:immich_mobile/domain/services/sync_linked_album.service.dart';
|
||||
import 'package:immich_mobile/entities/store.entity.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
|
||||
Future<void> syncLinkedAlbumsIsolated(ProviderContainer ref) {
|
||||
final user = Store.tryGet(StoreKey.currentUser);
|
||||
if (user == null) {
|
||||
Logger("SyncLinkedAlbum").warning("No user logged in, skipping linked album sync");
|
||||
return Future.value();
|
||||
}
|
||||
return ref.read(syncLinkedAlbumServiceProvider).syncLinkedAlbums(user.id);
|
||||
|
|
|
|||
|
|
@ -29,82 +29,56 @@ class DriftBackupRepository extends DriftDatabaseRepository {
|
|||
..where(_db.localAlbumEntity.backupSelection.equalsValue(BackupSelection.excluded));
|
||||
}
|
||||
|
||||
Future<int> getTotalCount() async {
|
||||
final query = _db.localAlbumAssetEntity.selectOnly(distinct: true)
|
||||
..addColumns([_db.localAlbumAssetEntity.assetId])
|
||||
..join([
|
||||
innerJoin(
|
||||
_db.localAlbumEntity,
|
||||
_db.localAlbumAssetEntity.albumId.equalsExp(_db.localAlbumEntity.id),
|
||||
useColumns: false,
|
||||
),
|
||||
])
|
||||
..where(
|
||||
_db.localAlbumEntity.backupSelection.equalsValue(BackupSelection.selected) &
|
||||
_db.localAlbumAssetEntity.assetId.isNotInQuery(_getExcludedSubquery()),
|
||||
/// Returns all backup-related counts in a single query.
|
||||
///
|
||||
/// - total: number of distinct assets in selected albums, excluding those that are also in excluded albums
|
||||
/// - backup: number of those assets that already exist on the server for [userId]
|
||||
/// - remainder: number of those assets that do not yet exist on the server for [userId]
|
||||
/// (includes processing)
|
||||
/// - processing: number of those assets that are still preparing/have a null checksum
|
||||
Future<({int total, int remainder, int processing})> getAllCounts(String userId) async {
|
||||
const sql = '''
|
||||
SELECT
|
||||
COUNT(*) AS total_count,
|
||||
COUNT(*) FILTER (WHERE lae.checksum IS NULL) AS processing_count,
|
||||
COUNT(*) FILTER (WHERE rae.id IS NULL) AS remainder_count
|
||||
FROM local_asset_entity lae
|
||||
LEFT JOIN main.remote_asset_entity rae
|
||||
ON lae.checksum = rae.checksum AND rae.owner_id = ?1
|
||||
WHERE EXISTS (
|
||||
SELECT 1
|
||||
FROM local_album_asset_entity laa
|
||||
INNER JOIN main.local_album_entity la on laa.album_id = la.id
|
||||
WHERE laa.asset_id = lae.id
|
||||
AND la.backup_selection = ?2
|
||||
)
|
||||
AND NOT EXISTS (
|
||||
SELECT 1
|
||||
FROM local_album_asset_entity laa
|
||||
INNER JOIN main.local_album_entity la on laa.album_id = la.id
|
||||
WHERE laa.asset_id = lae.id
|
||||
AND la.backup_selection = ?3
|
||||
);
|
||||
''';
|
||||
|
||||
return query.get().then((rows) => rows.length);
|
||||
}
|
||||
final row = await _db
|
||||
.customSelect(
|
||||
sql,
|
||||
variables: [
|
||||
Variable.withString(userId),
|
||||
Variable.withInt(BackupSelection.selected.index),
|
||||
Variable.withInt(BackupSelection.excluded.index),
|
||||
],
|
||||
readsFrom: {_db.localAlbumAssetEntity, _db.localAlbumEntity, _db.localAssetEntity, _db.remoteAssetEntity},
|
||||
)
|
||||
.getSingle();
|
||||
|
||||
Future<int> getRemainderCount(String userId) async {
|
||||
final query = _db.localAlbumAssetEntity.selectOnly(distinct: true)
|
||||
..addColumns([_db.localAlbumAssetEntity.assetId])
|
||||
..join([
|
||||
innerJoin(
|
||||
_db.localAlbumEntity,
|
||||
_db.localAlbumAssetEntity.albumId.equalsExp(_db.localAlbumEntity.id),
|
||||
useColumns: false,
|
||||
),
|
||||
innerJoin(
|
||||
_db.localAssetEntity,
|
||||
_db.localAlbumAssetEntity.assetId.equalsExp(_db.localAssetEntity.id),
|
||||
useColumns: false,
|
||||
),
|
||||
leftOuterJoin(
|
||||
_db.remoteAssetEntity,
|
||||
_db.localAssetEntity.checksum.equalsExp(_db.remoteAssetEntity.checksum) &
|
||||
_db.remoteAssetEntity.ownerId.equals(userId),
|
||||
useColumns: false,
|
||||
),
|
||||
])
|
||||
..where(
|
||||
_db.localAlbumEntity.backupSelection.equalsValue(BackupSelection.selected) &
|
||||
_db.remoteAssetEntity.id.isNull() &
|
||||
_db.localAlbumAssetEntity.assetId.isNotInQuery(_getExcludedSubquery()),
|
||||
final data = row.data;
|
||||
return (
|
||||
total: (data['total_count'] as int?) ?? 0,
|
||||
remainder: (data['remainder_count'] as int?) ?? 0,
|
||||
processing: (data['processing_count'] as int?) ?? 0,
|
||||
);
|
||||
|
||||
return query.get().then((rows) => rows.length);
|
||||
}
|
||||
|
||||
Future<int> getBackupCount(String userId) async {
|
||||
final query = _db.localAlbumAssetEntity.selectOnly(distinct: true)
|
||||
..addColumns([_db.localAlbumAssetEntity.assetId])
|
||||
..join([
|
||||
innerJoin(
|
||||
_db.localAlbumEntity,
|
||||
_db.localAlbumAssetEntity.albumId.equalsExp(_db.localAlbumEntity.id),
|
||||
useColumns: false,
|
||||
),
|
||||
innerJoin(
|
||||
_db.localAssetEntity,
|
||||
_db.localAlbumAssetEntity.assetId.equalsExp(_db.localAssetEntity.id),
|
||||
useColumns: false,
|
||||
),
|
||||
innerJoin(
|
||||
_db.remoteAssetEntity,
|
||||
_db.localAssetEntity.checksum.equalsExp(_db.remoteAssetEntity.checksum),
|
||||
useColumns: false,
|
||||
),
|
||||
])
|
||||
..where(
|
||||
_db.localAlbumEntity.backupSelection.equalsValue(BackupSelection.selected) &
|
||||
_db.remoteAssetEntity.id.isNotNull() &
|
||||
_db.remoteAssetEntity.ownerId.equals(userId) &
|
||||
_db.localAlbumAssetEntity.assetId.isNotInQuery(_getExcludedSubquery()),
|
||||
);
|
||||
|
||||
return query.get().then((rows) => rows.length);
|
||||
}
|
||||
|
||||
Future<List<LocalAsset>> getCandidates(String userId) async {
|
||||
|
|
|
|||
|
|
@ -12,9 +12,11 @@ import 'package:flutter_displaymode/flutter_displaymode.dart';
|
|||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:immich_mobile/constants/constants.dart';
|
||||
import 'package:immich_mobile/constants/locales.dart';
|
||||
import 'package:immich_mobile/domain/services/background_worker.service.dart';
|
||||
import 'package:immich_mobile/entities/store.entity.dart';
|
||||
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
||||
import 'package:immich_mobile/generated/codegen_loader.g.dart';
|
||||
import 'package:immich_mobile/platform/background_worker_lock_api.g.dart';
|
||||
import 'package:immich_mobile/providers/app_life_cycle.provider.dart';
|
||||
import 'package:immich_mobile/providers/asset_viewer/share_intent_upload.provider.dart';
|
||||
import 'package:immich_mobile/providers/db.provider.dart';
|
||||
|
|
@ -32,6 +34,7 @@ import 'package:immich_mobile/theme/dynamic_theme.dart';
|
|||
import 'package:immich_mobile/theme/theme_data.dart';
|
||||
import 'package:immich_mobile/utils/bootstrap.dart';
|
||||
import 'package:immich_mobile/utils/cache/widgets_binding.dart';
|
||||
import 'package:immich_mobile/utils/debug_print.dart';
|
||||
import 'package:immich_mobile/utils/http_ssl_options.dart';
|
||||
import 'package:immich_mobile/utils/licenses.dart';
|
||||
import 'package:immich_mobile/utils/migration.dart';
|
||||
|
|
@ -39,10 +42,10 @@ import 'package:intl/date_symbol_data_local.dart';
|
|||
import 'package:logging/logging.dart';
|
||||
import 'package:timezone/data/latest.dart';
|
||||
import 'package:worker_manager/worker_manager.dart';
|
||||
import 'package:immich_mobile/utils/debug_print.dart';
|
||||
|
||||
void main() async {
|
||||
ImmichWidgetsBinding();
|
||||
unawaited(BackgroundWorkerLockService(BackgroundWorkerLockApi()).lock());
|
||||
final (isar, drift, logDb) = await Bootstrap.initDB();
|
||||
await Bootstrap.initDomain(isar, drift, logDb);
|
||||
await initApp();
|
||||
|
|
|
|||
|
|
@ -16,6 +16,9 @@ import 'package:immich_mobile/providers/sync_status.provider.dart';
|
|||
import 'package:immich_mobile/providers/user.provider.dart';
|
||||
import 'package:immich_mobile/routing/router.dart';
|
||||
import 'package:immich_mobile/widgets/backup/backup_info_card.dart';
|
||||
import 'dart:async';
|
||||
|
||||
import 'package:wakelock_plus/wakelock_plus.dart';
|
||||
|
||||
@RoutePage()
|
||||
class DriftBackupPage extends ConsumerStatefulWidget {
|
||||
|
|
@ -29,6 +32,9 @@ class _DriftBackupPageState extends ConsumerState<DriftBackupPage> {
|
|||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
|
||||
WakelockPlus.enable();
|
||||
|
||||
final currentUser = ref.read(currentUserProvider);
|
||||
if (currentUser == null) {
|
||||
return;
|
||||
|
|
@ -44,6 +50,12 @@ class _DriftBackupPageState extends ConsumerState<DriftBackupPage> {
|
|||
});
|
||||
}
|
||||
|
||||
@override
|
||||
dispose() {
|
||||
super.dispose();
|
||||
WakelockPlus.disable();
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final selectedAlbum = ref
|
||||
|
|
@ -260,12 +272,205 @@ class _RemainderCard extends ConsumerWidget {
|
|||
final remainderCount = ref.watch(driftBackupProvider.select((p) => p.remainderCount));
|
||||
final syncStatus = ref.watch(syncStatusProvider);
|
||||
|
||||
return BackupInfoCard(
|
||||
title: "backup_controller_page_remainder".tr(),
|
||||
subtitle: "backup_controller_page_remainder_sub".tr(),
|
||||
info: remainderCount.toString(),
|
||||
isLoading: syncStatus.isRemoteSyncing,
|
||||
return Card(
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: const BorderRadius.all(Radius.circular(20)),
|
||||
side: BorderSide(color: context.colorScheme.outlineVariant, width: 1),
|
||||
),
|
||||
elevation: 0,
|
||||
borderOnForeground: false,
|
||||
child: Column(
|
||||
children: [
|
||||
ListTile(
|
||||
minVerticalPadding: 18,
|
||||
isThreeLine: true,
|
||||
title: Text("backup_controller_page_remainder".t(context: context), style: context.textTheme.titleMedium),
|
||||
subtitle: Padding(
|
||||
padding: const EdgeInsets.only(top: 4.0, right: 18.0),
|
||||
child: Text(
|
||||
"backup_controller_page_remainder_sub".t(context: context),
|
||||
style: context.textTheme.bodyMedium?.copyWith(color: context.colorScheme.onSurfaceSecondary),
|
||||
),
|
||||
),
|
||||
trailing: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Stack(
|
||||
children: [
|
||||
Text(
|
||||
remainderCount.toString(),
|
||||
style: context.textTheme.titleLarge?.copyWith(
|
||||
color: context.colorScheme.onSurface.withAlpha(syncStatus.isRemoteSyncing ? 50 : 255),
|
||||
),
|
||||
),
|
||||
if (syncStatus.isRemoteSyncing)
|
||||
Positioned.fill(
|
||||
child: Align(
|
||||
alignment: Alignment.center,
|
||||
child: SizedBox(
|
||||
width: 16,
|
||||
height: 16,
|
||||
child: CircularProgressIndicator(
|
||||
strokeWidth: 2,
|
||||
color: context.colorScheme.onSurface.withAlpha(150),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
Text(
|
||||
"backup_info_card_assets",
|
||||
style: context.textTheme.labelLarge?.copyWith(
|
||||
color: context.colorScheme.onSurface.withAlpha(syncStatus.isRemoteSyncing ? 50 : 255),
|
||||
),
|
||||
).tr(),
|
||||
],
|
||||
),
|
||||
),
|
||||
const Divider(height: 0),
|
||||
const _PreparingStatus(),
|
||||
const Divider(height: 0),
|
||||
|
||||
ListTile(
|
||||
enableFeedback: true,
|
||||
visualDensity: VisualDensity.compact,
|
||||
contentPadding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 0.0),
|
||||
shape: const RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.only(bottomLeft: Radius.circular(20), bottomRight: Radius.circular(20)),
|
||||
),
|
||||
onTap: () => context.pushRoute(const DriftBackupAssetDetailRoute()),
|
||||
title: Text(
|
||||
"view_details".t(context: context),
|
||||
style: context.textTheme.labelLarge?.copyWith(color: context.colorScheme.onSurface.withAlpha(200)),
|
||||
),
|
||||
trailing: Icon(Icons.arrow_forward_ios, size: 16, color: context.colorScheme.onSurfaceVariant),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
class _PreparingStatus extends ConsumerStatefulWidget {
|
||||
const _PreparingStatus();
|
||||
|
||||
@override
|
||||
_PreparingStatusState createState() => _PreparingStatusState();
|
||||
}
|
||||
|
||||
class _PreparingStatusState extends ConsumerState {
|
||||
Timer? _pollingTimer;
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_pollingTimer?.cancel();
|
||||
super.dispose();
|
||||
}
|
||||
|
||||
void _startPollingIfNeeded() {
|
||||
if (_pollingTimer != null) return;
|
||||
|
||||
_pollingTimer = Timer.periodic(const Duration(seconds: 3), (timer) async {
|
||||
final currentUser = ref.read(currentUserProvider);
|
||||
if (currentUser != null && mounted) {
|
||||
await ref.read(driftBackupProvider.notifier).getBackupStatus(currentUser.id);
|
||||
|
||||
// Stop polling if processing count reaches 0
|
||||
final updatedProcessingCount = ref.read(driftBackupProvider.select((p) => p.processingCount));
|
||||
if (updatedProcessingCount == 0) {
|
||||
timer.cancel();
|
||||
_pollingTimer = null;
|
||||
}
|
||||
} else {
|
||||
timer.cancel();
|
||||
_pollingTimer = null;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final syncStatus = ref.watch(syncStatusProvider);
|
||||
final remainderCount = ref.watch(driftBackupProvider.select((p) => p.remainderCount));
|
||||
final processingCount = ref.watch(driftBackupProvider.select((p) => p.processingCount));
|
||||
final readyForUploadCount = remainderCount - processingCount;
|
||||
|
||||
ref.listen<int>(driftBackupProvider.select((p) => p.processingCount), (previous, next) {
|
||||
if (next > 0 && _pollingTimer == null) {
|
||||
_startPollingIfNeeded();
|
||||
} else if (next == 0 && _pollingTimer != null) {
|
||||
_pollingTimer?.cancel();
|
||||
_pollingTimer = null;
|
||||
}
|
||||
});
|
||||
|
||||
if (!syncStatus.isHashing) {
|
||||
return const SizedBox.shrink();
|
||||
}
|
||||
|
||||
return Row(
|
||||
children: [
|
||||
Expanded(
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.only(left: 1.0),
|
||||
child: Container(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 8),
|
||||
decoration: BoxDecoration(
|
||||
color: context.colorScheme.surfaceContainerHigh.withValues(alpha: 0.5),
|
||||
shape: BoxShape.rectangle,
|
||||
),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text(
|
||||
"preparing".t(context: context),
|
||||
style: context.textTheme.labelLarge?.copyWith(
|
||||
color: context.colorScheme.onSurface.withAlpha(200),
|
||||
),
|
||||
),
|
||||
const SizedBox(width: 18, height: 18, child: CircularProgressIndicator(strokeWidth: 1.5)),
|
||||
],
|
||||
),
|
||||
const SizedBox(height: 2),
|
||||
Text(
|
||||
processingCount.toString(),
|
||||
style: context.textTheme.titleMedium?.copyWith(
|
||||
color: context.colorScheme.primary,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Container(
|
||||
padding: const EdgeInsets.symmetric(horizontal: 16.0, vertical: 8),
|
||||
decoration: BoxDecoration(color: context.colorScheme.primary.withValues(alpha: 0.1)),
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.end,
|
||||
children: [
|
||||
Text(
|
||||
"ready_for_upload".t(context: context),
|
||||
style: context.textTheme.labelLarge?.copyWith(color: context.colorScheme.onSurface.withAlpha(200)),
|
||||
),
|
||||
const SizedBox(height: 2),
|
||||
Text(
|
||||
readyForUploadCount.toString(),
|
||||
style: context.textTheme.titleMedium?.copyWith(
|
||||
color: context.primaryColor,
|
||||
fontWeight: FontWeight.w600,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ import 'package:immich_mobile/providers/infrastructure/db.provider.dart';
|
|||
import 'package:immich_mobile/providers/infrastructure/platform.provider.dart';
|
||||
import 'package:immich_mobile/providers/infrastructure/readonly_mode.provider.dart';
|
||||
import 'package:immich_mobile/providers/websocket.provider.dart';
|
||||
import 'package:immich_mobile/services/app_settings.service.dart';
|
||||
import 'package:immich_mobile/services/background.service.dart';
|
||||
import 'package:immich_mobile/utils/migration.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
|
|
@ -93,6 +94,10 @@ class _ChangeExperiencePageState extends ConsumerState<ChangeExperiencePage> {
|
|||
|
||||
await ref.read(driftProvider).reset();
|
||||
await Store.put(StoreKey.shouldResetSync, true);
|
||||
final delay = Store.get(StoreKey.backupTriggerDelay, AppSettingsEnum.backupTriggerDelay.defaultValue);
|
||||
if (delay >= 1000) {
|
||||
await Store.put(StoreKey.backupTriggerDelay, (delay / 1000).toInt());
|
||||
}
|
||||
final permission = await ref.read(galleryPermissionNotifier.notifier).requestGalleryPermission();
|
||||
|
||||
if (permission.isGranted) {
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
import 'dart:async';
|
||||
|
||||
import 'package:auto_route/auto_route.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
|
|
|
|||
97
mobile/lib/platform/background_worker_lock_api.g.dart
generated
Normal file
97
mobile/lib/platform/background_worker_lock_api.g.dart
generated
Normal file
|
|
@ -0,0 +1,97 @@
|
|||
// Autogenerated from Pigeon (v26.0.0), do not edit directly.
|
||||
// See also: https://pub.dev/packages/pigeon
|
||||
// ignore_for_file: public_member_api_docs, non_constant_identifier_names, avoid_as, unused_import, unnecessary_parenthesis, prefer_null_aware_operators, omit_local_variable_types, unused_shown_name, unnecessary_import, no_leading_underscores_for_local_identifiers
|
||||
|
||||
import 'dart:async';
|
||||
import 'dart:typed_data' show Float64List, Int32List, Int64List, Uint8List;
|
||||
|
||||
import 'package:flutter/foundation.dart' show ReadBuffer, WriteBuffer;
|
||||
import 'package:flutter/services.dart';
|
||||
|
||||
PlatformException _createConnectionError(String channelName) {
|
||||
return PlatformException(
|
||||
code: 'channel-error',
|
||||
message: 'Unable to establish connection on channel: "$channelName".',
|
||||
);
|
||||
}
|
||||
|
||||
class _PigeonCodec extends StandardMessageCodec {
|
||||
const _PigeonCodec();
|
||||
@override
|
||||
void writeValue(WriteBuffer buffer, Object? value) {
|
||||
if (value is int) {
|
||||
buffer.putUint8(4);
|
||||
buffer.putInt64(value);
|
||||
} else {
|
||||
super.writeValue(buffer, value);
|
||||
}
|
||||
}
|
||||
|
||||
@override
|
||||
Object? readValueOfType(int type, ReadBuffer buffer) {
|
||||
switch (type) {
|
||||
default:
|
||||
return super.readValueOfType(type, buffer);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class BackgroundWorkerLockApi {
|
||||
/// Constructor for [BackgroundWorkerLockApi]. The [binaryMessenger] named argument is
|
||||
/// available for dependency injection. If it is left null, the default
|
||||
/// BinaryMessenger will be used which routes to the host platform.
|
||||
BackgroundWorkerLockApi({BinaryMessenger? binaryMessenger, String messageChannelSuffix = ''})
|
||||
: pigeonVar_binaryMessenger = binaryMessenger,
|
||||
pigeonVar_messageChannelSuffix = messageChannelSuffix.isNotEmpty ? '.$messageChannelSuffix' : '';
|
||||
final BinaryMessenger? pigeonVar_binaryMessenger;
|
||||
|
||||
static const MessageCodec<Object?> pigeonChannelCodec = _PigeonCodec();
|
||||
|
||||
final String pigeonVar_messageChannelSuffix;
|
||||
|
||||
Future<void> lock() async {
|
||||
final String pigeonVar_channelName =
|
||||
'dev.flutter.pigeon.immich_mobile.BackgroundWorkerLockApi.lock$pigeonVar_messageChannelSuffix';
|
||||
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
||||
pigeonVar_channelName,
|
||||
pigeonChannelCodec,
|
||||
binaryMessenger: pigeonVar_binaryMessenger,
|
||||
);
|
||||
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
|
||||
final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
|
||||
if (pigeonVar_replyList == null) {
|
||||
throw _createConnectionError(pigeonVar_channelName);
|
||||
} else if (pigeonVar_replyList.length > 1) {
|
||||
throw PlatformException(
|
||||
code: pigeonVar_replyList[0]! as String,
|
||||
message: pigeonVar_replyList[1] as String?,
|
||||
details: pigeonVar_replyList[2],
|
||||
);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
Future<void> unlock() async {
|
||||
final String pigeonVar_channelName =
|
||||
'dev.flutter.pigeon.immich_mobile.BackgroundWorkerLockApi.unlock$pigeonVar_messageChannelSuffix';
|
||||
final BasicMessageChannel<Object?> pigeonVar_channel = BasicMessageChannel<Object?>(
|
||||
pigeonVar_channelName,
|
||||
pigeonChannelCodec,
|
||||
binaryMessenger: pigeonVar_binaryMessenger,
|
||||
);
|
||||
final Future<Object?> pigeonVar_sendFuture = pigeonVar_channel.send(null);
|
||||
final List<Object?>? pigeonVar_replyList = await pigeonVar_sendFuture as List<Object?>?;
|
||||
if (pigeonVar_replyList == null) {
|
||||
throw _createConnectionError(pigeonVar_channelName);
|
||||
} else if (pigeonVar_replyList.length > 1) {
|
||||
throw PlatformException(
|
||||
code: pigeonVar_replyList[0]! as String,
|
||||
message: pigeonVar_replyList[1] as String?,
|
||||
details: pigeonVar_replyList[2],
|
||||
);
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -42,7 +42,7 @@ class ShareActionButton extends ConsumerWidget {
|
|||
showDialog(
|
||||
context: context,
|
||||
builder: (BuildContext buildContext) {
|
||||
ref.read(actionProvider.notifier).shareAssets(source).then((ActionResult result) {
|
||||
ref.read(actionProvider.notifier).shareAssets(source, context).then((ActionResult result) {
|
||||
ref.read(multiSelectProvider.notifier).reset();
|
||||
|
||||
if (!context.mounted) {
|
||||
|
|
|
|||
|
|
@ -107,7 +107,7 @@ class _SliverTimeline extends ConsumerStatefulWidget {
|
|||
}
|
||||
|
||||
class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
|
||||
final _scrollController = ScrollController();
|
||||
late final ScrollController _scrollController;
|
||||
StreamSubscription? _eventSubscription;
|
||||
|
||||
// Drag selection state
|
||||
|
|
@ -119,10 +119,12 @@ class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
|
|||
int _perRow = 4;
|
||||
double _scaleFactor = 3.0;
|
||||
double _baseScaleFactor = 3.0;
|
||||
int? _scaleRestoreAssetIndex;
|
||||
|
||||
@override
|
||||
void initState() {
|
||||
super.initState();
|
||||
_scrollController = ScrollController(onAttach: _restoreScalePosition);
|
||||
_eventSubscription = EventStream.shared.listen(_onEvent);
|
||||
|
||||
final currentTilesPerRow = ref.read(settingsProvider).get(Setting.tilesPerRow);
|
||||
|
|
@ -154,6 +156,28 @@ class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
|
|||
EventStream.shared.emit(MultiSelectToggleEvent(isEnabled));
|
||||
}
|
||||
|
||||
void _restoreScalePosition(_) {
|
||||
if (_scaleRestoreAssetIndex == null) return;
|
||||
|
||||
final asyncSegments = ref.read(timelineSegmentProvider);
|
||||
asyncSegments.whenData((segments) {
|
||||
final targetSegment = segments.lastWhereOrNull((segment) => segment.firstAssetIndex <= _scaleRestoreAssetIndex!);
|
||||
if (targetSegment != null) {
|
||||
final assetIndexInSegment = _scaleRestoreAssetIndex! - targetSegment.firstAssetIndex;
|
||||
final newColumnCount = ref.read(timelineArgsProvider).columnCount;
|
||||
final rowIndexInSegment = (assetIndexInSegment / newColumnCount).floor();
|
||||
final targetRowIndex = targetSegment.firstIndex + 1 + rowIndexInSegment;
|
||||
final targetOffset = targetSegment.indexToLayoutOffset(targetRowIndex);
|
||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||
if (mounted) {
|
||||
_scrollController.jumpTo(targetOffset.clamp(0.0, _scrollController.position.maxScrollExtent));
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
_scaleRestoreAssetIndex = null;
|
||||
}
|
||||
|
||||
@override
|
||||
void dispose() {
|
||||
_scrollController.dispose();
|
||||
|
|
@ -345,9 +369,28 @@ class _SliverTimelineState extends ConsumerState<_SliverTimeline> {
|
|||
final newPerRow = 7 - newScaleFactor.toInt();
|
||||
|
||||
if (newPerRow != _perRow) {
|
||||
final currentOffset = _scrollController.offset.clamp(
|
||||
0.0,
|
||||
_scrollController.position.maxScrollExtent,
|
||||
);
|
||||
final segment = segments.findByOffset(currentOffset) ?? segments.lastOrNull;
|
||||
int? targetAssetIndex;
|
||||
if (segment != null) {
|
||||
final rowIndex = segment.getMinChildIndexForScrollOffset(currentOffset);
|
||||
if (rowIndex > segment.firstIndex) {
|
||||
final rowIndexInSegment = rowIndex - (segment.firstIndex + 1);
|
||||
final assetsPerRow = ref.read(timelineArgsProvider).columnCount;
|
||||
final assetIndexInSegment = rowIndexInSegment * assetsPerRow;
|
||||
targetAssetIndex = segment.firstAssetIndex + assetIndexInSegment;
|
||||
} else {
|
||||
targetAssetIndex = segment.firstAssetIndex;
|
||||
}
|
||||
}
|
||||
|
||||
setState(() {
|
||||
_scaleFactor = newScaleFactor;
|
||||
_perRow = newPerRow;
|
||||
_scaleRestoreAssetIndex = targetAssetIndex;
|
||||
});
|
||||
|
||||
ref.read(settingsProvider.notifier).set(Setting.tilesPerRow, _perRow);
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ import 'package:immich_mobile/providers/backup/drift_backup.provider.dart';
|
|||
import 'package:immich_mobile/providers/backup/ios_background_settings.provider.dart';
|
||||
import 'package:immich_mobile/providers/backup/manual_upload.provider.dart';
|
||||
import 'package:immich_mobile/providers/gallery_permission.provider.dart';
|
||||
import 'package:immich_mobile/providers/infrastructure/platform.provider.dart';
|
||||
import 'package:immich_mobile/providers/memory.provider.dart';
|
||||
import 'package:immich_mobile/providers/notification_permission.provider.dart';
|
||||
import 'package:immich_mobile/providers/server_info.provider.dart';
|
||||
|
|
@ -138,6 +139,7 @@ class AppLifeCycleNotifier extends StateNotifier<AppLifeCycleEnum> {
|
|||
|
||||
Future<void> _handleBetaTimelineResume() async {
|
||||
_ref.read(backupProvider.notifier).cancelBackup();
|
||||
unawaited(_ref.read(backgroundWorkerLockServiceProvider).lock());
|
||||
|
||||
// Give isolates time to complete any ongoing database transactions
|
||||
await Future.delayed(const Duration(milliseconds: 500));
|
||||
|
|
@ -209,6 +211,9 @@ class AppLifeCycleNotifier extends StateNotifier<AppLifeCycleEnum> {
|
|||
_pauseOperation = Completer<void>();
|
||||
|
||||
try {
|
||||
if (Store.isBetaTimelineEnabled) {
|
||||
unawaited(_ref.read(backgroundWorkerLockServiceProvider).unlock());
|
||||
}
|
||||
await _performPause();
|
||||
} catch (e, stackTrace) {
|
||||
_log.severe("Error during app pause", e, stackTrace);
|
||||
|
|
@ -240,6 +245,10 @@ class AppLifeCycleNotifier extends StateNotifier<AppLifeCycleEnum> {
|
|||
Future<void> handleAppDetached() async {
|
||||
state = AppLifeCycleEnum.detached;
|
||||
|
||||
if (Store.isBetaTimelineEnabled) {
|
||||
unawaited(_ref.read(backgroundWorkerLockServiceProvider).unlock());
|
||||
}
|
||||
|
||||
// Flush logs before closing database
|
||||
try {
|
||||
LogService.I.flush();
|
||||
|
|
|
|||
|
|
@ -123,6 +123,7 @@ class DriftBackupState {
|
|||
final int totalCount;
|
||||
final int backupCount;
|
||||
final int remainderCount;
|
||||
final int processingCount;
|
||||
|
||||
final int enqueueCount;
|
||||
final int enqueueTotalCount;
|
||||
|
|
@ -135,6 +136,7 @@ class DriftBackupState {
|
|||
required this.totalCount,
|
||||
required this.backupCount,
|
||||
required this.remainderCount,
|
||||
required this.processingCount,
|
||||
required this.enqueueCount,
|
||||
required this.enqueueTotalCount,
|
||||
required this.isCanceling,
|
||||
|
|
@ -145,6 +147,7 @@ class DriftBackupState {
|
|||
int? totalCount,
|
||||
int? backupCount,
|
||||
int? remainderCount,
|
||||
int? processingCount,
|
||||
int? enqueueCount,
|
||||
int? enqueueTotalCount,
|
||||
bool? isCanceling,
|
||||
|
|
@ -154,6 +157,7 @@ class DriftBackupState {
|
|||
totalCount: totalCount ?? this.totalCount,
|
||||
backupCount: backupCount ?? this.backupCount,
|
||||
remainderCount: remainderCount ?? this.remainderCount,
|
||||
processingCount: processingCount ?? this.processingCount,
|
||||
enqueueCount: enqueueCount ?? this.enqueueCount,
|
||||
enqueueTotalCount: enqueueTotalCount ?? this.enqueueTotalCount,
|
||||
isCanceling: isCanceling ?? this.isCanceling,
|
||||
|
|
@ -163,7 +167,7 @@ class DriftBackupState {
|
|||
|
||||
@override
|
||||
String toString() {
|
||||
return 'DriftBackupState(totalCount: $totalCount, backupCount: $backupCount, remainderCount: $remainderCount, enqueueCount: $enqueueCount, enqueueTotalCount: $enqueueTotalCount, isCanceling: $isCanceling, uploadItems: $uploadItems)';
|
||||
return 'DriftBackupState(totalCount: $totalCount, backupCount: $backupCount, remainderCount: $remainderCount, processingCount: $processingCount, enqueueCount: $enqueueCount, enqueueTotalCount: $enqueueTotalCount, isCanceling: $isCanceling, uploadItems: $uploadItems)';
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
@ -174,6 +178,7 @@ class DriftBackupState {
|
|||
return other.totalCount == totalCount &&
|
||||
other.backupCount == backupCount &&
|
||||
other.remainderCount == remainderCount &&
|
||||
other.processingCount == processingCount &&
|
||||
other.enqueueCount == enqueueCount &&
|
||||
other.enqueueTotalCount == enqueueTotalCount &&
|
||||
other.isCanceling == isCanceling &&
|
||||
|
|
@ -185,6 +190,7 @@ class DriftBackupState {
|
|||
return totalCount.hashCode ^
|
||||
backupCount.hashCode ^
|
||||
remainderCount.hashCode ^
|
||||
processingCount.hashCode ^
|
||||
enqueueCount.hashCode ^
|
||||
enqueueTotalCount.hashCode ^
|
||||
isCanceling.hashCode ^
|
||||
|
|
@ -203,6 +209,7 @@ class DriftBackupNotifier extends StateNotifier<DriftBackupState> {
|
|||
totalCount: 0,
|
||||
backupCount: 0,
|
||||
remainderCount: 0,
|
||||
processingCount: 0,
|
||||
enqueueCount: 0,
|
||||
enqueueTotalCount: 0,
|
||||
isCanceling: false,
|
||||
|
|
@ -313,13 +320,14 @@ class DriftBackupNotifier extends StateNotifier<DriftBackupState> {
|
|||
}
|
||||
|
||||
Future<void> getBackupStatus(String userId) async {
|
||||
final [totalCount, backupCount, remainderCount] = await Future.wait([
|
||||
_uploadService.getBackupTotalCount(),
|
||||
_uploadService.getBackupFinishedCount(userId),
|
||||
_uploadService.getBackupRemainderCount(userId),
|
||||
]);
|
||||
final counts = await _uploadService.getBackupCounts(userId);
|
||||
|
||||
state = state.copyWith(totalCount: totalCount, backupCount: backupCount, remainderCount: remainderCount);
|
||||
state = state.copyWith(
|
||||
totalCount: counts.total,
|
||||
backupCount: counts.total - counts.remainder,
|
||||
remainderCount: counts.remainder,
|
||||
processingCount: counts.processing,
|
||||
);
|
||||
}
|
||||
|
||||
Future<void> startBackup(String userId) {
|
||||
|
|
|
|||
|
|
@ -342,11 +342,11 @@ class ActionNotifier extends Notifier<void> {
|
|||
}
|
||||
}
|
||||
|
||||
Future<ActionResult> shareAssets(ActionSource source) async {
|
||||
Future<ActionResult> shareAssets(ActionSource source, BuildContext context) async {
|
||||
final ids = _getAssets(source).toList(growable: false);
|
||||
|
||||
try {
|
||||
await _service.shareAssets(ids);
|
||||
await _service.shareAssets(ids, context);
|
||||
return ActionResult(count: ids.length, success: true);
|
||||
} catch (error, stack) {
|
||||
_logger.severe('Failed to share assets', error, stack);
|
||||
|
|
|
|||
|
|
@ -1,12 +1,17 @@
|
|||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:immich_mobile/domain/services/background_worker.service.dart';
|
||||
import 'package:immich_mobile/platform/background_worker_api.g.dart';
|
||||
import 'package:immich_mobile/platform/background_worker_lock_api.g.dart';
|
||||
import 'package:immich_mobile/platform/connectivity_api.g.dart';
|
||||
import 'package:immich_mobile/platform/native_sync_api.g.dart';
|
||||
import 'package:immich_mobile/platform/thumbnail_api.g.dart';
|
||||
|
||||
final backgroundWorkerFgServiceProvider = Provider((_) => BackgroundWorkerFgService(BackgroundWorkerFgHostApi()));
|
||||
|
||||
final backgroundWorkerLockServiceProvider = Provider<BackgroundWorkerLockService>(
|
||||
(_) => BackgroundWorkerLockService(BackgroundWorkerLockApi()),
|
||||
);
|
||||
|
||||
final nativeSyncApiProvider = Provider<NativeSyncApi>((_) => NativeSyncApi());
|
||||
|
||||
final connectivityApiProvider = Provider<ConnectivityApi>((_) => ConnectivityApi());
|
||||
|
|
|
|||
|
|
@ -1,17 +1,19 @@
|
|||
import 'dart:io';
|
||||
|
||||
import 'package:flutter/widgets.dart';
|
||||
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
||||
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
||||
import 'package:immich_mobile/domain/models/exif.model.dart';
|
||||
import 'package:immich_mobile/domain/models/store.model.dart';
|
||||
import 'package:immich_mobile/entities/asset.entity.dart' as asset_entity;
|
||||
import 'package:immich_mobile/entities/store.entity.dart';
|
||||
import 'package:immich_mobile/extensions/build_context_extensions.dart';
|
||||
import 'package:immich_mobile/extensions/response_extensions.dart';
|
||||
import 'package:immich_mobile/repositories/asset_api.repository.dart';
|
||||
import 'package:immich_mobile/utils/hash.dart';
|
||||
import 'package:logging/logging.dart';
|
||||
import 'package:path_provider/path_provider.dart';
|
||||
import 'package:photo_manager/photo_manager.dart';
|
||||
import 'package:immich_mobile/domain/models/asset/base_asset.model.dart';
|
||||
import 'package:immich_mobile/extensions/response_extensions.dart';
|
||||
import 'package:share_plus/share_plus.dart';
|
||||
|
||||
final assetMediaRepositoryProvider = Provider((ref) => AssetMediaRepository(ref.watch(assetApiRepositoryProvider)));
|
||||
|
|
@ -68,7 +70,7 @@ class AssetMediaRepository {
|
|||
}
|
||||
|
||||
// TODO: make this more efficient
|
||||
Future<int> shareAssets(List<BaseAsset> assets) async {
|
||||
Future<int> shareAssets(List<BaseAsset> assets, BuildContext context) async {
|
||||
final downloadedXFiles = <XFile>[];
|
||||
|
||||
for (var asset in assets) {
|
||||
|
|
@ -105,8 +107,12 @@ class AssetMediaRepository {
|
|||
}
|
||||
|
||||
// we dont want to await the share result since the
|
||||
// "preparing" dialog will not disappear unti
|
||||
Share.shareXFiles(downloadedXFiles).then((result) async {
|
||||
// "preparing" dialog will not disappear until
|
||||
final size = context.sizeData;
|
||||
Share.shareXFiles(
|
||||
downloadedXFiles,
|
||||
sharePositionOrigin: Rect.fromPoints(Offset.zero, Offset(size.width / 3, size.height)),
|
||||
).then((result) async {
|
||||
for (var file in downloadedXFiles) {
|
||||
try {
|
||||
await File(file.path).delete();
|
||||
|
|
|
|||
|
|
@ -224,8 +224,8 @@ class ActionService {
|
|||
await _assetApiRepository.unStack(stackIds);
|
||||
}
|
||||
|
||||
Future<int> shareAssets(List<BaseAsset> assets) {
|
||||
return _assetMediaRepository.shareAssets(assets);
|
||||
Future<int> shareAssets(List<BaseAsset> assets, BuildContext context) {
|
||||
return _assetMediaRepository.shareAssets(assets, context);
|
||||
}
|
||||
|
||||
Future<List<bool>> downloadAll(List<RemoteAsset> assets) {
|
||||
|
|
|
|||
|
|
@ -89,16 +89,8 @@ class UploadService {
|
|||
return _uploadRepository.getActiveTasks(group);
|
||||
}
|
||||
|
||||
Future<int> getBackupTotalCount() {
|
||||
return _backupRepository.getTotalCount();
|
||||
}
|
||||
|
||||
Future<int> getBackupRemainderCount(String userId) {
|
||||
return _backupRepository.getRemainderCount(userId);
|
||||
}
|
||||
|
||||
Future<int> getBackupFinishedCount(String userId) {
|
||||
return _backupRepository.getBackupCount(userId);
|
||||
Future<({int total, int remainder, int processing})> getBackupCounts(String userId) {
|
||||
return _backupRepository.getAllCounts(userId);
|
||||
}
|
||||
|
||||
Future<void> manualBackup(List<LocalAsset> localAssets) async {
|
||||
|
|
|
|||
|
|
@ -22,13 +22,14 @@ import 'package:immich_mobile/infrastructure/entities/store.entity.drift.dart';
|
|||
import 'package:immich_mobile/infrastructure/entities/user.entity.dart';
|
||||
import 'package:immich_mobile/infrastructure/repositories/db.repository.dart';
|
||||
import 'package:immich_mobile/infrastructure/repositories/sync_stream.repository.dart';
|
||||
import 'package:immich_mobile/services/app_settings.service.dart';
|
||||
import 'package:immich_mobile/utils/debug_print.dart';
|
||||
import 'package:immich_mobile/utils/diff.dart';
|
||||
import 'package:isar/isar.dart';
|
||||
// ignore: import_rule_photo_manager
|
||||
import 'package:photo_manager/photo_manager.dart';
|
||||
|
||||
const int targetVersion = 16;
|
||||
const int targetVersion = 17;
|
||||
|
||||
Future<void> migrateDatabaseIfNeeded(Isar db, Drift drift) async {
|
||||
final hasVersion = Store.tryGet(StoreKey.version) != null;
|
||||
|
|
@ -64,6 +65,13 @@ Future<void> migrateDatabaseIfNeeded(Isar db, Drift drift) async {
|
|||
|
||||
await handleBetaMigration(version, await _isNewInstallation(db, drift), SyncStreamRepository(drift));
|
||||
|
||||
if (version < 17 && Store.isBetaTimelineEnabled) {
|
||||
final delay = Store.get(StoreKey.backupTriggerDelay, AppSettingsEnum.backupTriggerDelay.defaultValue);
|
||||
if (delay >= 1000) {
|
||||
await Store.put(StoreKey.backupTriggerDelay, (delay / 1000).toInt());
|
||||
}
|
||||
}
|
||||
|
||||
if (targetVersion >= 12) {
|
||||
await Store.put(StoreKey.version, targetVersion);
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ import 'package:immich_mobile/providers/backup/backup.provider.dart';
|
|||
import 'package:immich_mobile/providers/gallery_permission.provider.dart';
|
||||
import 'package:immich_mobile/providers/oauth.provider.dart';
|
||||
import 'package:immich_mobile/providers/server_info.provider.dart';
|
||||
import 'package:immich_mobile/providers/websocket.provider.dart';
|
||||
import 'package:immich_mobile/routing/router.dart';
|
||||
import 'package:immich_mobile/utils/provider_utils.dart';
|
||||
import 'package:immich_mobile/utils/url_helper.dart';
|
||||
|
|
@ -193,6 +194,7 @@ class LoginForm extends HookConsumerWidget {
|
|||
if (isBeta) {
|
||||
await ref.read(galleryPermissionNotifier.notifier).requestGalleryPermission();
|
||||
handleSyncFlow();
|
||||
ref.read(websocketProvider.notifier).connect();
|
||||
context.replaceRoute(const TabShellRoute());
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,10 +9,12 @@ pigeon:
|
|||
dart run pigeon --input pigeon/native_sync_api.dart
|
||||
dart run pigeon --input pigeon/thumbnail_api.dart
|
||||
dart run pigeon --input pigeon/background_worker_api.dart
|
||||
dart run pigeon --input pigeon/background_worker_lock_api.dart
|
||||
dart run pigeon --input pigeon/connectivity_api.dart
|
||||
dart format lib/platform/native_sync_api.g.dart
|
||||
dart format lib/platform/thumbnail_api.g.dart
|
||||
dart format lib/platform/background_worker_api.g.dart
|
||||
dart format lib/platform/background_worker_lock_api.g.dart
|
||||
dart format lib/platform/connectivity_api.g.dart
|
||||
|
||||
watch:
|
||||
|
|
|
|||
2
mobile/openapi/README.md
generated
2
mobile/openapi/README.md
generated
|
|
@ -3,7 +3,7 @@ Immich API
|
|||
|
||||
This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
||||
|
||||
- API version: 1.142.1
|
||||
- API version: 1.143.1
|
||||
- Generator version: 7.8.0
|
||||
- Build package: org.openapitools.codegen.languages.DartClientCodegen
|
||||
|
||||
|
|
|
|||
17
mobile/pigeon/background_worker_lock_api.dart
Normal file
17
mobile/pigeon/background_worker_lock_api.dart
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import 'package:pigeon/pigeon.dart';
|
||||
|
||||
@ConfigurePigeon(
|
||||
PigeonOptions(
|
||||
dartOut: 'lib/platform/background_worker_lock_api.g.dart',
|
||||
kotlinOut: 'android/app/src/main/kotlin/app/alextran/immich/background/BackgroundWorkerLock.g.kt',
|
||||
kotlinOptions: KotlinOptions(package: 'app.alextran.immich.background', includeErrorClass: false),
|
||||
dartOptions: DartOptions(),
|
||||
dartPackageName: 'immich_mobile',
|
||||
),
|
||||
)
|
||||
@HostApi()
|
||||
abstract class BackgroundWorkerLockApi {
|
||||
void lock();
|
||||
|
||||
void unlock();
|
||||
}
|
||||
|
|
@ -1208,8 +1208,8 @@ packages:
|
|||
dependency: "direct main"
|
||||
description:
|
||||
path: "."
|
||||
ref: "5459d54"
|
||||
resolved-ref: "5459d54cdc1cf4d99e2193b310052f1ebb5dcf43"
|
||||
ref: "893894b"
|
||||
resolved-ref: "893894b98b832be8a995a8d5d4c2289d0ad2d246"
|
||||
url: "https://github.com/immich-app/native_video_player"
|
||||
source: git
|
||||
version: "1.3.1"
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ name: immich_mobile
|
|||
description: Immich - selfhosted backup media file on mobile phone
|
||||
|
||||
publish_to: 'none'
|
||||
version: 1.142.1+3015
|
||||
version: 1.143.1+3017
|
||||
|
||||
environment:
|
||||
sdk: '>=3.8.0 <4.0.0'
|
||||
|
|
@ -77,7 +77,7 @@ dependencies:
|
|||
native_video_player:
|
||||
git:
|
||||
url: https://github.com/immich-app/native_video_player
|
||||
ref: '5459d54'
|
||||
ref: '893894b'
|
||||
openapi:
|
||||
path: openapi
|
||||
isar:
|
||||
|
|
|
|||
|
|
@ -9866,7 +9866,7 @@
|
|||
"info": {
|
||||
"title": "Immich",
|
||||
"description": "Immich API",
|
||||
"version": "1.142.1",
|
||||
"version": "1.143.1",
|
||||
"contact": {}
|
||||
},
|
||||
"tags": [],
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@immich/sdk",
|
||||
"version": "1.142.1",
|
||||
"version": "1.143.1",
|
||||
"description": "Auto-generated TypeScript SDK for the Immich API",
|
||||
"type": "module",
|
||||
"main": "./build/index.js",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* Immich
|
||||
* 1.142.1
|
||||
* 1.143.1
|
||||
* DO NOT MODIFY - This file has been generated using oazapfts.
|
||||
* See https://www.npmjs.com/package/oazapfts
|
||||
*/
|
||||
|
|
|
|||
10
pnpm-lock.yaml
generated
10
pnpm-lock.yaml
generated
|
|
@ -765,8 +765,8 @@ importers:
|
|||
specifier: ~4.8.0
|
||||
version: 4.8.1
|
||||
svelte-gestures:
|
||||
specifier: 5.1.4
|
||||
version: 5.1.4
|
||||
specifier: ^5.2.2
|
||||
version: 5.2.2
|
||||
svelte-i18n:
|
||||
specifier: ^4.0.1
|
||||
version: 4.0.1(svelte@5.38.10)
|
||||
|
|
@ -10581,8 +10581,8 @@ packages:
|
|||
svelte:
|
||||
optional: true
|
||||
|
||||
svelte-gestures@5.1.4:
|
||||
resolution: {integrity: sha512-gfSO/GqWLu9nRMCz12jqdyA0+NTsojYcIBcRqZjwWrpQbqMXr0zWPFpZBtzfYbRHtuFxZImMZp9MrVaFCYbhDg==}
|
||||
svelte-gestures@5.2.2:
|
||||
resolution: {integrity: sha512-Y+chXPaSx8OsPoFppUwPk8PJzgrZ7xoDJKXeiEc7JBqyKKzXer9hlf8F9O34eFuAWB4/WQEvccACvyBplESL7A==}
|
||||
|
||||
svelte-i18n@4.0.1:
|
||||
resolution: {integrity: sha512-jaykGlGT5PUaaq04JWbJREvivlCnALtT+m87Kbm0fxyYHynkQaxQMnIKHLm2WeIuBRoljzwgyvz0Z6/CMwfdmQ==}
|
||||
|
|
@ -23862,7 +23862,7 @@ snapshots:
|
|||
optionalDependencies:
|
||||
svelte: 5.38.10
|
||||
|
||||
svelte-gestures@5.1.4: {}
|
||||
svelte-gestures@5.2.2: {}
|
||||
|
||||
svelte-i18n@4.0.1(svelte@5.38.10):
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM ghcr.io/immich-app/base-server-dev:202509091104@sha256:4f9275330f1e49e7ce9840758ea91839052fe6ed40972d5bb97a9af857fa956a AS builder
|
||||
FROM ghcr.io/immich-app/base-server-dev:202509210934@sha256:b5ce2d7eaf379d4cf15efd4bab180d8afc8a80d20b36c9800f4091aca6ae267e AS builder
|
||||
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \
|
||||
CI=1 \
|
||||
COREPACK_HOME=/tmp
|
||||
|
|
@ -33,7 +33,7 @@ RUN pnpm --filter @immich/sdk --filter @immich/cli --frozen-lockfile install &&
|
|||
pnpm --filter @immich/sdk --filter @immich/cli build && \
|
||||
pnpm --filter @immich/cli --prod --no-optional deploy /output/cli-pruned
|
||||
|
||||
FROM ghcr.io/immich-app/base-server-prod:202509091104@sha256:d1ccbac24c84f2f8277cf85281edfca62d85d7daed6a62b8efd3a81bcd3c5e0e
|
||||
FROM ghcr.io/immich-app/base-server-prod:202509210934@sha256:0c7eacf0ba88ca52e1a267cfc62d20d07792ea2c604818c2cbd37dc7dcefdac9
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
ENV NODE_ENV=production \
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# dev build
|
||||
FROM ghcr.io/immich-app/base-server-dev:202509091104@sha256:4f9275330f1e49e7ce9840758ea91839052fe6ed40972d5bb97a9af857fa956a AS dev
|
||||
FROM ghcr.io/immich-app/base-server-dev:202509210934@sha256:b5ce2d7eaf379d4cf15efd4bab180d8afc8a80d20b36c9800f4091aca6ae267e AS dev
|
||||
|
||||
ENV COREPACK_ENABLE_DOWNLOAD_PROMPT=0 \
|
||||
CI=1 \
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
echo "Initializing Immich $IMMICH_SOURCE_REF"
|
||||
|
||||
lib_path="/usr/lib/$(arch)-linux-gnu/libmimalloc.so.2"
|
||||
lib_path="/usr/lib/$(arch)-linux-gnu/libmimalloc.so.3"
|
||||
if [ -f "$lib_path" ]; then
|
||||
export LD_PRELOAD="$lib_path"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "immich",
|
||||
"version": "1.142.1",
|
||||
"version": "1.143.1",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"private": true,
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "immich-web",
|
||||
"version": "1.142.1",
|
||||
"version": "1.143.1",
|
||||
"license": "GNU Affero General Public License version 3",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
@ -55,7 +55,7 @@
|
|||
"qrcode": "^1.5.4",
|
||||
"simple-icons": "^15.15.0",
|
||||
"socket.io-client": "~4.8.0",
|
||||
"svelte-gestures": "5.1.4",
|
||||
"svelte-gestures": "^5.2.2",
|
||||
"svelte-i18n": "^4.0.1",
|
||||
"svelte-maplibre": "^1.2.0",
|
||||
"svelte-persisted-store": "^0.12.0",
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@
|
|||
import ButtonContextMenu from '$lib/components/shared-components/context-menu/button-context-menu.svelte';
|
||||
import MenuOption from '$lib/components/shared-components/context-menu/menu-option.svelte';
|
||||
import { AppRoute } from '$lib/constants';
|
||||
import { photoViewerImgElement } from '$lib/stores/assets-store.svelte';
|
||||
import { featureFlags } from '$lib/stores/server-config.store';
|
||||
import { user } from '$lib/stores/user.store';
|
||||
import { photoZoomState } from '$lib/stores/zoom-image.store';
|
||||
|
|
@ -151,7 +152,7 @@
|
|||
onclick={onZoomImage}
|
||||
/>
|
||||
{/if}
|
||||
{#if canCopyImageToClipboard() && asset.type === AssetTypeEnum.Image}
|
||||
{#if canCopyImageToClipboard() && asset.type === AssetTypeEnum.Image && $photoViewerImgElement}
|
||||
<IconButton
|
||||
color="secondary"
|
||||
variant="ghost"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
import { AssetMediaSize, type AssetResponseDto, type SharedLinkResponseDto } from '@immich/sdk';
|
||||
import { LoadingSpinner } from '@immich/ui';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import { swipe, type SwipeCustomEvent } from 'svelte-gestures';
|
||||
import { useSwipe, type SwipeCustomEvent } from 'svelte-gestures';
|
||||
import { t } from 'svelte-i18n';
|
||||
import { fade } from 'svelte/transition';
|
||||
import { NotificationType, notificationController } from '../shared-components/notification/notification';
|
||||
|
|
@ -92,20 +92,13 @@
|
|||
};
|
||||
|
||||
copyImage = async () => {
|
||||
if (!canCopyImageToClipboard()) {
|
||||
if (!canCopyImageToClipboard() || !$photoViewerImgElement) {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
const result = await copyImageToClipboard($photoViewerImgElement ?? assetFileUrl);
|
||||
if (result.success) {
|
||||
await copyImageToClipboard($photoViewerImgElement);
|
||||
notificationController.show({ type: NotificationType.Info, message: $t('copied_image_to_clipboard') });
|
||||
} else {
|
||||
notificationController.show({
|
||||
type: NotificationType.Error,
|
||||
message: $t('errors.clipboard_unsupported_mime_type', { values: { mimeType: result.mimeType } }),
|
||||
});
|
||||
}
|
||||
} catch (error) {
|
||||
handleError(error, $t('copy_error'));
|
||||
}
|
||||
|
|
@ -241,8 +234,7 @@
|
|||
{:else if !imageError}
|
||||
<div
|
||||
use:zoomImageAction
|
||||
use:swipe={() => ({})}
|
||||
onswipe={onSwipe}
|
||||
{...useSwipe(onSwipe)}
|
||||
class="h-full w-full"
|
||||
transition:fade={{ duration: haveFadeTransition ? assetViewerFadeDuration : 0 }}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
import { IconButton, modalManager } from '@immich/ui';
|
||||
import { mdiChevronLeft, mdiChevronRight, mdiClose, mdiCog, mdiFullscreen, mdiPause, mdiPlay } from '@mdi/js';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import { swipe } from 'svelte-gestures';
|
||||
import { useSwipe } from 'svelte-gestures';
|
||||
import { t } from 'svelte-i18n';
|
||||
import { fly } from 'svelte/transition';
|
||||
|
||||
|
|
@ -131,6 +131,13 @@
|
|||
document.removeEventListener('webkitfullscreenchange', exitFullscreenHandler);
|
||||
};
|
||||
});
|
||||
|
||||
const { swipe, onswipe, onswipedown } = useSwipe(
|
||||
() => {},
|
||||
() => ({ touchAction: 'pan-x' }),
|
||||
{ onswipedown: showControlBar },
|
||||
true,
|
||||
);
|
||||
</script>
|
||||
|
||||
<svelte:document
|
||||
|
|
@ -153,7 +160,8 @@
|
|||
]}
|
||||
/>
|
||||
|
||||
<svelte:body use:swipe={() => ({ touchAction: 'pan-x' })} onswipedown={showControlBar} />
|
||||
{/* @ts-expect-error https://github.com/Rezi/svelte-gestures/issues/38#issuecomment-3315953573 */ null}
|
||||
<svelte:body {@attach swipe} {onswipe} {onswipedown} />
|
||||
|
||||
{#if showControls}
|
||||
<div
|
||||
|
|
|
|||
|
|
@ -9,8 +9,7 @@
|
|||
import { AssetMediaSize } from '@immich/sdk';
|
||||
import { LoadingSpinner } from '@immich/ui';
|
||||
import { onDestroy, onMount } from 'svelte';
|
||||
import type { SwipeCustomEvent } from 'svelte-gestures';
|
||||
import { swipe } from 'svelte-gestures';
|
||||
import { useSwipe, type SwipeCustomEvent } from 'svelte-gestures';
|
||||
import { fade } from 'svelte/transition';
|
||||
|
||||
interface Props {
|
||||
|
|
@ -130,8 +129,7 @@
|
|||
playsinline
|
||||
controls
|
||||
class="h-full object-contain"
|
||||
use:swipe={() => ({})}
|
||||
onswipe={onSwipe}
|
||||
{...useSwipe(onSwipe)}
|
||||
oncanplay={(e) => handleCanPlay(e.currentTarget)}
|
||||
onended={onVideoEnded}
|
||||
onvolumechange={(e) => ($videoViewerMuted = e.currentTarget.muted)}
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue