From 282bccaca52e79c8c6e39d8ef5d6828c7aeb4d52 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Apr 2024 14:09:55 -0500 Subject: [PATCH 01/23] chore(web): fine tuning styling for base modal (#8469) * chore(web): refine base modal styling * styling * remove api spec file --- .../components/shared-components/base-modal.svelte | 12 +++++------- .../create-shared-link-modal.svelte | 4 ++-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/web/src/lib/components/shared-components/base-modal.svelte b/web/src/lib/components/shared-components/base-modal.svelte index 4ffc91368..c09653d6e 100644 --- a/web/src/lib/components/shared-components/base-modal.svelte +++ b/web/src/lib/components/shared-components/base-modal.svelte @@ -61,19 +61,17 @@ onOutclick: () => dispatch('close'), onEscape: () => dispatch('close'), }} - class="max-h-[800px] min-h-[200px] w-[450px] overflow-y-auto rounded-lg bg-immich-bg shadow-md dark:bg-immich-dark-gray dark:text-immich-dark-fg immich-scrollbar" + class="max-h-[800px] min-h-[200px] w-[450px] overflow-y-auto rounded-3xl bg-immich-bg shadow-md dark:bg-immich-dark-gray dark:text-immich-dark-fg immich-scrollbar" tabindex="-1" >
-
+
{#if showLogo} - -
+ {:else if icon} - -
+ {/if} -

+

{title}

diff --git a/web/src/lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte b/web/src/lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte index fcc7c792f..9e05af625 100644 --- a/web/src/lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte +++ b/web/src/lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte @@ -237,11 +237,11 @@ {#if !sharedLink} {#if editingLink}
- +
{:else}
- +
{/if} {:else} From 6dfa9e1146e8aa7e9580533fd7a2c5260ee2de9d Mon Sep 17 00:00:00 2001 From: seasox Date: Tue, 2 Apr 2024 21:12:47 +0200 Subject: [PATCH 02/23] fix(web): do not set $isShowDetail to false when navigating to a person (#8472) do not set isShowDetail to false when navigating to a person from detail view --- web/src/lib/components/asset-viewer/asset-viewer.svelte | 1 - 1 file changed, 1 deletion(-) diff --git a/web/src/lib/components/asset-viewer/asset-viewer.svelte b/web/src/lib/components/asset-viewer/asset-viewer.svelte index 523642a9e..e139f9c7e 100644 --- a/web/src/lib/components/asset-viewer/asset-viewer.svelte +++ b/web/src/lib/components/asset-viewer/asset-viewer.svelte @@ -264,7 +264,6 @@ }; const handleCloseViewer = () => { - $isShowDetail = false; closeViewer(); }; From 8337da183c981643dbf58fc7117a64130da833c0 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 2 Apr 2024 14:21:58 -0500 Subject: [PATCH 03/23] chore: update openapi (#8470) --- mobile/openapi/.openapi-generator/FILES | 3 + mobile/openapi/README.md | 1 + mobile/openapi/doc/MemoryCreateDto.md | 2 +- mobile/openapi/doc/MemoryResponseDto.md | 2 +- mobile/openapi/doc/OnThisDayDto.md | 15 +++ mobile/openapi/lib/api.dart | 1 + mobile/openapi/lib/api_client.dart | 2 + .../openapi/lib/model/memory_create_dto.dart | 4 +- .../lib/model/memory_response_dto.dart | 4 +- mobile/openapi/lib/model/on_this_day_dto.dart | 98 +++++++++++++++++++ .../openapi/test/memory_create_dto_test.dart | 2 +- .../test/memory_response_dto_test.dart | 2 +- mobile/openapi/test/on_this_day_dto_test.dart | 27 +++++ open-api/immich-openapi-specs.json | 15 ++- open-api/typescript-sdk/src/fetch-client.ts | 7 +- 15 files changed, 173 insertions(+), 12 deletions(-) create mode 100644 mobile/openapi/doc/OnThisDayDto.md create mode 100644 mobile/openapi/lib/model/on_this_day_dto.dart create mode 100644 mobile/openapi/test/on_this_day_dto_test.dart diff --git a/mobile/openapi/.openapi-generator/FILES b/mobile/openapi/.openapi-generator/FILES index 4e109c14d..263687549 100644 --- a/mobile/openapi/.openapi-generator/FILES +++ b/mobile/openapi/.openapi-generator/FILES @@ -103,6 +103,7 @@ doc/OAuthApi.md doc/OAuthAuthorizeResponseDto.md doc/OAuthCallbackDto.md doc/OAuthConfigDto.md +doc/OnThisDayDto.md doc/PartnerApi.md doc/PartnerResponseDto.md doc/PathEntityType.md @@ -318,6 +319,7 @@ lib/model/model_type.dart lib/model/o_auth_authorize_response_dto.dart lib/model/o_auth_callback_dto.dart lib/model/o_auth_config_dto.dart +lib/model/on_this_day_dto.dart lib/model/partner_response_dto.dart lib/model/path_entity_type.dart lib/model/path_type.dart @@ -504,6 +506,7 @@ test/o_auth_api_test.dart test/o_auth_authorize_response_dto_test.dart test/o_auth_callback_dto_test.dart test/o_auth_config_dto_test.dart +test/on_this_day_dto_test.dart test/partner_api_test.dart test/partner_response_dto_test.dart test/path_entity_type_test.dart diff --git a/mobile/openapi/README.md b/mobile/openapi/README.md index fede2901c..a64183077 100644 --- a/mobile/openapi/README.md +++ b/mobile/openapi/README.md @@ -311,6 +311,7 @@ Class | Method | HTTP request | Description - [OAuthAuthorizeResponseDto](doc//OAuthAuthorizeResponseDto.md) - [OAuthCallbackDto](doc//OAuthCallbackDto.md) - [OAuthConfigDto](doc//OAuthConfigDto.md) + - [OnThisDayDto](doc//OnThisDayDto.md) - [PartnerResponseDto](doc//PartnerResponseDto.md) - [PathEntityType](doc//PathEntityType.md) - [PathType](doc//PathType.md) diff --git a/mobile/openapi/doc/MemoryCreateDto.md b/mobile/openapi/doc/MemoryCreateDto.md index 5bcbd54f4..e0b0ef5a5 100644 --- a/mobile/openapi/doc/MemoryCreateDto.md +++ b/mobile/openapi/doc/MemoryCreateDto.md @@ -9,7 +9,7 @@ import 'package:openapi/api.dart'; Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **assetIds** | **List** | | [optional] [default to const []] -**data** | [**Object**](.md) | | +**data** | [**OnThisDayDto**](OnThisDayDto.md) | | **isSaved** | **bool** | | [optional] **memoryAt** | [**DateTime**](DateTime.md) | | **seenAt** | [**DateTime**](DateTime.md) | | [optional] diff --git a/mobile/openapi/doc/MemoryResponseDto.md b/mobile/openapi/doc/MemoryResponseDto.md index ef379be04..59a836311 100644 --- a/mobile/openapi/doc/MemoryResponseDto.md +++ b/mobile/openapi/doc/MemoryResponseDto.md @@ -10,7 +10,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **assets** | [**List**](AssetResponseDto.md) | | [default to const []] **createdAt** | [**DateTime**](DateTime.md) | | -**data** | [**Object**](.md) | | +**data** | [**OnThisDayDto**](OnThisDayDto.md) | | **deletedAt** | [**DateTime**](DateTime.md) | | [optional] **id** | **String** | | **isSaved** | **bool** | | diff --git a/mobile/openapi/doc/OnThisDayDto.md b/mobile/openapi/doc/OnThisDayDto.md new file mode 100644 index 000000000..178b4482b --- /dev/null +++ b/mobile/openapi/doc/OnThisDayDto.md @@ -0,0 +1,15 @@ +# openapi.model.OnThisDayDto + +## Load the model package +```dart +import 'package:openapi/api.dart'; +``` + +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**year** | **num** | | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/mobile/openapi/lib/api.dart b/mobile/openapi/lib/api.dart index 7d8ab5288..ae458f5de 100644 --- a/mobile/openapi/lib/api.dart +++ b/mobile/openapi/lib/api.dart @@ -140,6 +140,7 @@ part 'model/model_type.dart'; part 'model/o_auth_authorize_response_dto.dart'; part 'model/o_auth_callback_dto.dart'; part 'model/o_auth_config_dto.dart'; +part 'model/on_this_day_dto.dart'; part 'model/partner_response_dto.dart'; part 'model/path_entity_type.dart'; part 'model/path_type.dart'; diff --git a/mobile/openapi/lib/api_client.dart b/mobile/openapi/lib/api_client.dart index 8784ad641..757f47568 100644 --- a/mobile/openapi/lib/api_client.dart +++ b/mobile/openapi/lib/api_client.dart @@ -358,6 +358,8 @@ class ApiClient { return OAuthCallbackDto.fromJson(value); case 'OAuthConfigDto': return OAuthConfigDto.fromJson(value); + case 'OnThisDayDto': + return OnThisDayDto.fromJson(value); case 'PartnerResponseDto': return PartnerResponseDto.fromJson(value); case 'PathEntityType': diff --git a/mobile/openapi/lib/model/memory_create_dto.dart b/mobile/openapi/lib/model/memory_create_dto.dart index 5d08a631c..c48a07c5f 100644 --- a/mobile/openapi/lib/model/memory_create_dto.dart +++ b/mobile/openapi/lib/model/memory_create_dto.dart @@ -23,7 +23,7 @@ class MemoryCreateDto { List assetIds; - Object data; + OnThisDayDto data; /// /// Please note: This property should have been non-nullable! Since the specification file @@ -97,7 +97,7 @@ class MemoryCreateDto { assetIds: json[r'assetIds'] is Iterable ? (json[r'assetIds'] as Iterable).cast().toList(growable: false) : const [], - data: mapValueOfType(json, r'data')!, + data: OnThisDayDto.fromJson(json[r'data'])!, isSaved: mapValueOfType(json, r'isSaved'), memoryAt: mapDateTime(json, r'memoryAt', r'')!, seenAt: mapDateTime(json, r'seenAt', r''), diff --git a/mobile/openapi/lib/model/memory_response_dto.dart b/mobile/openapi/lib/model/memory_response_dto.dart index 918099458..8671e3c64 100644 --- a/mobile/openapi/lib/model/memory_response_dto.dart +++ b/mobile/openapi/lib/model/memory_response_dto.dart @@ -30,7 +30,7 @@ class MemoryResponseDto { DateTime createdAt; - Object data; + OnThisDayDto data; /// /// Please note: This property should have been non-nullable! Since the specification file @@ -126,7 +126,7 @@ class MemoryResponseDto { return MemoryResponseDto( assets: AssetResponseDto.listFromJson(json[r'assets']), createdAt: mapDateTime(json, r'createdAt', r'')!, - data: mapValueOfType(json, r'data')!, + data: OnThisDayDto.fromJson(json[r'data'])!, deletedAt: mapDateTime(json, r'deletedAt', r''), id: mapValueOfType(json, r'id')!, isSaved: mapValueOfType(json, r'isSaved')!, diff --git a/mobile/openapi/lib/model/on_this_day_dto.dart b/mobile/openapi/lib/model/on_this_day_dto.dart new file mode 100644 index 000000000..ef1471dfb --- /dev/null +++ b/mobile/openapi/lib/model/on_this_day_dto.dart @@ -0,0 +1,98 @@ +// +// AUTO-GENERATED FILE, DO NOT MODIFY! +// +// @dart=2.12 + +// ignore_for_file: unused_element, unused_import +// ignore_for_file: always_put_required_named_parameters_first +// ignore_for_file: constant_identifier_names +// ignore_for_file: lines_longer_than_80_chars + +part of openapi.api; + +class OnThisDayDto { + /// Returns a new [OnThisDayDto] instance. + OnThisDayDto({ + required this.year, + }); + + num year; + + @override + bool operator ==(Object other) => identical(this, other) || other is OnThisDayDto && + other.year == year; + + @override + int get hashCode => + // ignore: unnecessary_parenthesis + (year.hashCode); + + @override + String toString() => 'OnThisDayDto[year=$year]'; + + Map toJson() { + final json = {}; + json[r'year'] = this.year; + return json; + } + + /// Returns a new [OnThisDayDto] instance and imports its values from + /// [value] if it's a [Map], null otherwise. + // ignore: prefer_constructors_over_static_methods + static OnThisDayDto? fromJson(dynamic value) { + if (value is Map) { + final json = value.cast(); + + return OnThisDayDto( + year: num.parse('${json[r'year']}'), + ); + } + return null; + } + + static List listFromJson(dynamic json, {bool growable = false,}) { + final result = []; + if (json is List && json.isNotEmpty) { + for (final row in json) { + final value = OnThisDayDto.fromJson(row); + if (value != null) { + result.add(value); + } + } + } + return result.toList(growable: growable); + } + + static Map mapFromJson(dynamic json) { + final map = {}; + if (json is Map && json.isNotEmpty) { + json = json.cast(); // ignore: parameter_assignments + for (final entry in json.entries) { + final value = OnThisDayDto.fromJson(entry.value); + if (value != null) { + map[entry.key] = value; + } + } + } + return map; + } + + // maps a json object with a list of OnThisDayDto-objects as value to a dart map + static Map> mapListFromJson(dynamic json, {bool growable = false,}) { + final map = >{}; + if (json is Map && json.isNotEmpty) { + // ignore: parameter_assignments + json = json.cast(); + for (final entry in json.entries) { + map[entry.key] = OnThisDayDto.listFromJson(entry.value, growable: growable,); + } + } + return map; + } + + /// The list of required keys that must be present in a JSON. + static const requiredKeys = { + 'year', + }; +} + diff --git a/mobile/openapi/test/memory_create_dto_test.dart b/mobile/openapi/test/memory_create_dto_test.dart index f2909bd46..bfb6f09e1 100644 --- a/mobile/openapi/test/memory_create_dto_test.dart +++ b/mobile/openapi/test/memory_create_dto_test.dart @@ -21,7 +21,7 @@ void main() { // TODO }); - // Object data + // OnThisDayDto data test('to test the property `data`', () async { // TODO }); diff --git a/mobile/openapi/test/memory_response_dto_test.dart b/mobile/openapi/test/memory_response_dto_test.dart index da25bbb6e..90b2e7834 100644 --- a/mobile/openapi/test/memory_response_dto_test.dart +++ b/mobile/openapi/test/memory_response_dto_test.dart @@ -26,7 +26,7 @@ void main() { // TODO }); - // Object data + // OnThisDayDto data test('to test the property `data`', () async { // TODO }); diff --git a/mobile/openapi/test/on_this_day_dto_test.dart b/mobile/openapi/test/on_this_day_dto_test.dart new file mode 100644 index 000000000..71379f8bb --- /dev/null +++ b/mobile/openapi/test/on_this_day_dto_test.dart @@ -0,0 +1,27 @@ +// +// AUTO-GENERATED FILE, DO NOT MODIFY! +// +// @dart=2.12 + +// ignore_for_file: unused_element, unused_import +// ignore_for_file: always_put_required_named_parameters_first +// ignore_for_file: constant_identifier_names +// ignore_for_file: lines_longer_than_80_chars + +import 'package:openapi/api.dart'; +import 'package:test/test.dart'; + +// tests for OnThisDayDto +void main() { + // final instance = OnThisDayDto(); + + group('test OnThisDayDto', () { + // num year + test('to test the property `year`', () async { + // TODO + }); + + + }); + +} diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index da7bad8f0..70e797f52 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -8769,7 +8769,7 @@ "type": "array" }, "data": { - "type": "object" + "$ref": "#/components/schemas/OnThisDayDto" }, "isSaved": { "type": "boolean" @@ -8829,7 +8829,7 @@ "type": "string" }, "data": { - "type": "object" + "$ref": "#/components/schemas/OnThisDayDto" }, "deletedAt": { "format": "date-time", @@ -9110,6 +9110,17 @@ ], "type": "object" }, + "OnThisDayDto": { + "properties": { + "year": { + "type": "number" + } + }, + "required": [ + "year" + ], + "type": "object" + }, "PartnerResponseDto": { "properties": { "avatarColor": { diff --git a/open-api/typescript-sdk/src/fetch-client.ts b/open-api/typescript-sdk/src/fetch-client.ts index 1584a79cf..bed1380d9 100644 --- a/open-api/typescript-sdk/src/fetch-client.ts +++ b/open-api/typescript-sdk/src/fetch-client.ts @@ -494,10 +494,13 @@ export type ValidateLibraryImportPathResponseDto = { export type ValidateLibraryResponseDto = { importPaths?: ValidateLibraryImportPathResponseDto[]; }; +export type OnThisDayDto = { + year: number; +}; export type MemoryResponseDto = { assets: AssetResponseDto[]; createdAt: string; - data: object; + data: OnThisDayDto; deletedAt?: string; id: string; isSaved: boolean; @@ -509,7 +512,7 @@ export type MemoryResponseDto = { }; export type MemoryCreateDto = { assetIds?: string[]; - data: object; + data: OnThisDayDto; isSaved?: boolean; memoryAt: string; seenAt?: string; From 4ed68cf67385efac66d5c5035cd79f849a36959c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Apr 2024 19:22:50 +0000 Subject: [PATCH 04/23] fix(deps): update dependency orjson to v3.10.0 (#8473) --- machine-learning/poetry.lock | 103 ++++++++++++++++++----------------- 1 file changed, 52 insertions(+), 51 deletions(-) diff --git a/machine-learning/poetry.lock b/machine-learning/poetry.lock index 6b7ebe254..a6efaa1e6 100644 --- a/machine-learning/poetry.lock +++ b/machine-learning/poetry.lock @@ -2110,61 +2110,62 @@ numpy = [ [[package]] name = "orjson" -version = "3.9.15" +version = "3.10.0" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" optional = false python-versions = ">=3.8" files = [ - {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, - {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, - {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fbbeb3c9b2edb5fd044b2a070f127a0ac456ffd079cb82746fc84af01ef021a4"}, - {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b66bcc5670e8a6b78f0313bcb74774c8291f6f8aeef10fe70e910b8040f3ab75"}, - {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2973474811db7b35c30248d1129c64fd2bdf40d57d84beed2a9a379a6f57d0ab"}, - {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fe41b6f72f52d3da4db524c8653e46243c8c92df826ab5ffaece2dba9cccd58"}, - {file = "orjson-3.9.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4228aace81781cc9d05a3ec3a6d2673a1ad0d8725b4e915f1089803e9efd2b99"}, - {file = "orjson-3.9.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6f7b65bfaf69493c73423ce9db66cfe9138b2f9ef62897486417a8fcb0a92bfe"}, - {file = "orjson-3.9.15-cp310-none-win32.whl", hash = "sha256:2d99e3c4c13a7b0fb3792cc04c2829c9db07838fb6973e578b85c1745e7d0ce7"}, - {file = "orjson-3.9.15-cp310-none-win_amd64.whl", hash = "sha256:b725da33e6e58e4a5d27958568484aa766e825e93aa20c26c91168be58e08cbb"}, - {file = "orjson-3.9.15-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c8e8fe01e435005d4421f183038fc70ca85d2c1e490f51fb972db92af6e047c2"}, - {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87f1097acb569dde17f246faa268759a71a2cb8c96dd392cd25c668b104cad2f"}, - {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff0f9913d82e1d1fadbd976424c316fbc4d9c525c81d047bbdd16bd27dd98cfc"}, - {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8055ec598605b0077e29652ccfe9372247474375e0e3f5775c91d9434e12d6b1"}, - {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6768a327ea1ba44c9114dba5fdda4a214bdb70129065cd0807eb5f010bfcbb5"}, - {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12365576039b1a5a47df01aadb353b68223da413e2e7f98c02403061aad34bde"}, - {file = "orjson-3.9.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:71c6b009d431b3839d7c14c3af86788b3cfac41e969e3e1c22f8a6ea13139404"}, - {file = "orjson-3.9.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e18668f1bd39e69b7fed19fa7cd1cd110a121ec25439328b5c89934e6d30d357"}, - {file = "orjson-3.9.15-cp311-none-win32.whl", hash = "sha256:62482873e0289cf7313461009bf62ac8b2e54bc6f00c6fabcde785709231a5d7"}, - {file = "orjson-3.9.15-cp311-none-win_amd64.whl", hash = "sha256:b3d336ed75d17c7b1af233a6561cf421dee41d9204aa3cfcc6c9c65cd5bb69a8"}, - {file = "orjson-3.9.15-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:82425dd5c7bd3adfe4e94c78e27e2fa02971750c2b7ffba648b0f5d5cc016a73"}, - {file = "orjson-3.9.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c51378d4a8255b2e7c1e5cc430644f0939539deddfa77f6fac7b56a9784160a"}, - {file = "orjson-3.9.15-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6ae4e06be04dc00618247c4ae3f7c3e561d5bc19ab6941427f6d3722a0875ef7"}, - {file = "orjson-3.9.15-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bcef128f970bb63ecf9a65f7beafd9b55e3aaf0efc271a4154050fc15cdb386e"}, - {file = "orjson-3.9.15-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b72758f3ffc36ca566ba98a8e7f4f373b6c17c646ff8ad9b21ad10c29186f00d"}, - {file = "orjson-3.9.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c57bc7b946cf2efa67ac55766e41764b66d40cbd9489041e637c1304400494"}, - {file = "orjson-3.9.15-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:946c3a1ef25338e78107fba746f299f926db408d34553b4754e90a7de1d44068"}, - {file = "orjson-3.9.15-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:2f256d03957075fcb5923410058982aea85455d035607486ccb847f095442bda"}, - {file = "orjson-3.9.15-cp312-none-win_amd64.whl", hash = "sha256:5bb399e1b49db120653a31463b4a7b27cf2fbfe60469546baf681d1b39f4edf2"}, - {file = "orjson-3.9.15-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:b17f0f14a9c0ba55ff6279a922d1932e24b13fc218a3e968ecdbf791b3682b25"}, - {file = "orjson-3.9.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7f6cbd8e6e446fb7e4ed5bac4661a29e43f38aeecbf60c4b900b825a353276a1"}, - {file = "orjson-3.9.15-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:76bc6356d07c1d9f4b782813094d0caf1703b729d876ab6a676f3aaa9a47e37c"}, - {file = "orjson-3.9.15-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fdfa97090e2d6f73dced247a2f2d8004ac6449df6568f30e7fa1a045767c69a6"}, - {file = "orjson-3.9.15-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7413070a3e927e4207d00bd65f42d1b780fb0d32d7b1d951f6dc6ade318e1b5a"}, - {file = "orjson-3.9.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9cf1596680ac1f01839dba32d496136bdd5d8ffb858c280fa82bbfeb173bdd40"}, - {file = "orjson-3.9.15-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:809d653c155e2cc4fd39ad69c08fdff7f4016c355ae4b88905219d3579e31eb7"}, - {file = "orjson-3.9.15-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:920fa5a0c5175ab14b9c78f6f820b75804fb4984423ee4c4f1e6d748f8b22bc1"}, - {file = "orjson-3.9.15-cp38-none-win32.whl", hash = "sha256:2b5c0f532905e60cf22a511120e3719b85d9c25d0e1c2a8abb20c4dede3b05a5"}, - {file = "orjson-3.9.15-cp38-none-win_amd64.whl", hash = "sha256:67384f588f7f8daf040114337d34a5188346e3fae6c38b6a19a2fe8c663a2f9b"}, - {file = "orjson-3.9.15-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6fc2fe4647927070df3d93f561d7e588a38865ea0040027662e3e541d592811e"}, - {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34cbcd216e7af5270f2ffa63a963346845eb71e174ea530867b7443892d77180"}, - {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f541587f5c558abd93cb0de491ce99a9ef8d1ae29dd6ab4dbb5a13281ae04cbd"}, - {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92255879280ef9c3c0bcb327c5a1b8ed694c290d61a6a532458264f887f052cb"}, - {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a1f57fb601c426635fcae9ddbe90dfc1ed42245eb4c75e4960440cac667262"}, - {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ede0bde16cc6e9b96633df1631fbcd66491d1063667f260a4f2386a098393790"}, - {file = "orjson-3.9.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e88b97ef13910e5f87bcbc4dd7979a7de9ba8702b54d3204ac587e83639c0c2b"}, - {file = "orjson-3.9.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:57d5d8cf9c27f7ef6bc56a5925c7fbc76b61288ab674eb352c26ac780caa5b10"}, - {file = "orjson-3.9.15-cp39-none-win32.whl", hash = "sha256:001f4eb0ecd8e9ebd295722d0cbedf0748680fb9998d3993abaed2f40587257a"}, - {file = "orjson-3.9.15-cp39-none-win_amd64.whl", hash = "sha256:ea0b183a5fe6b2b45f3b854b0d19c4e932d6f5934ae1f723b07cf9560edd4ec7"}, - {file = "orjson-3.9.15.tar.gz", hash = "sha256:95cae920959d772f30ab36d3b25f83bb0f3be671e986c72ce22f8fa700dae061"}, + {file = "orjson-3.10.0-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47af5d4b850a2d1328660661f0881b67fdbe712aea905dadd413bdea6f792c33"}, + {file = "orjson-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c90681333619d78360d13840c7235fdaf01b2b129cb3a4f1647783b1971542b6"}, + {file = "orjson-3.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:400c5b7c4222cb27b5059adf1fb12302eebcabf1978f33d0824aa5277ca899bd"}, + {file = "orjson-3.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5dcb32e949eae80fb335e63b90e5808b4b0f64e31476b3777707416b41682db5"}, + {file = "orjson-3.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aa7d507c7493252c0a0264b5cc7e20fa2f8622b8a83b04d819b5ce32c97cf57b"}, + {file = "orjson-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e286a51def6626f1e0cc134ba2067dcf14f7f4b9550f6dd4535fd9d79000040b"}, + {file = "orjson-3.10.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8acd4b82a5f3a3ec8b1dc83452941d22b4711964c34727eb1e65449eead353ca"}, + {file = "orjson-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:30707e646080dd3c791f22ce7e4a2fc2438765408547c10510f1f690bd336217"}, + {file = "orjson-3.10.0-cp310-none-win32.whl", hash = "sha256:115498c4ad34188dcb73464e8dc80e490a3e5e88a925907b6fedcf20e545001a"}, + {file = "orjson-3.10.0-cp310-none-win_amd64.whl", hash = "sha256:6735dd4a5a7b6df00a87d1d7a02b84b54d215fb7adac50dd24da5997ffb4798d"}, + {file = "orjson-3.10.0-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:9587053e0cefc284e4d1cd113c34468b7d3f17666d22b185ea654f0775316a26"}, + {file = "orjson-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bef1050b1bdc9ea6c0d08468e3e61c9386723633b397e50b82fda37b3563d72"}, + {file = "orjson-3.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d16c6963ddf3b28c0d461641517cd312ad6b3cf303d8b87d5ef3fa59d6844337"}, + {file = "orjson-3.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4251964db47ef090c462a2d909f16c7c7d5fe68e341dabce6702879ec26d1134"}, + {file = "orjson-3.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:73bbbdc43d520204d9ef0817ac03fa49c103c7f9ea94f410d2950755be2c349c"}, + {file = "orjson-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:414e5293b82373606acf0d66313aecb52d9c8c2404b1900683eb32c3d042dbd7"}, + {file = "orjson-3.10.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:feaed5bb09877dc27ed0d37f037ddef6cb76d19aa34b108db270d27d3d2ef747"}, + {file = "orjson-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:5127478260db640323cea131ee88541cb1a9fbce051f0b22fa2f0892f44da302"}, + {file = "orjson-3.10.0-cp311-none-win32.whl", hash = "sha256:b98345529bafe3c06c09996b303fc0a21961820d634409b8639bc16bd4f21b63"}, + {file = "orjson-3.10.0-cp311-none-win_amd64.whl", hash = "sha256:658ca5cee3379dd3d37dbacd43d42c1b4feee99a29d847ef27a1cb18abdfb23f"}, + {file = "orjson-3.10.0-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:4329c1d24fd130ee377e32a72dc54a3c251e6706fccd9a2ecb91b3606fddd998"}, + {file = "orjson-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef0f19fdfb6553342b1882f438afd53c7cb7aea57894c4490c43e4431739c700"}, + {file = "orjson-3.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c4f60db24161534764277f798ef53b9d3063092f6d23f8f962b4a97edfa997a0"}, + {file = "orjson-3.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1de3fd5c7b208d836f8ecb4526995f0d5877153a4f6f12f3e9bf11e49357de98"}, + {file = "orjson-3.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f93e33f67729d460a177ba285002035d3f11425ed3cebac5f6ded4ef36b28344"}, + {file = "orjson-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:237ba922aef472761acd697eef77fef4831ab769a42e83c04ac91e9f9e08fa0e"}, + {file = "orjson-3.10.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:98c1bfc6a9bec52bc8f0ab9b86cc0874b0299fccef3562b793c1576cf3abb570"}, + {file = "orjson-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30d795a24be16c03dca0c35ca8f9c8eaaa51e3342f2c162d327bd0225118794a"}, + {file = "orjson-3.10.0-cp312-none-win32.whl", hash = "sha256:6a3f53dc650bc860eb26ec293dfb489b2f6ae1cbfc409a127b01229980e372f7"}, + {file = "orjson-3.10.0-cp312-none-win_amd64.whl", hash = "sha256:983db1f87c371dc6ffc52931eb75f9fe17dc621273e43ce67bee407d3e5476e9"}, + {file = "orjson-3.10.0-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:9a667769a96a72ca67237224a36faf57db0c82ab07d09c3aafc6f956196cfa1b"}, + {file = "orjson-3.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade1e21dfde1d37feee8cf6464c20a2f41fa46c8bcd5251e761903e46102dc6b"}, + {file = "orjson-3.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:23c12bb4ced1c3308eff7ba5c63ef8f0edb3e4c43c026440247dd6c1c61cea4b"}, + {file = "orjson-3.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b2d014cf8d4dc9f03fc9f870de191a49a03b1bcda51f2a957943fb9fafe55aac"}, + {file = "orjson-3.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eadecaa16d9783affca33597781328e4981b048615c2ddc31c47a51b833d6319"}, + {file = "orjson-3.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd583341218826f48bd7c6ebf3310b4126216920853cbc471e8dbeaf07b0b80e"}, + {file = "orjson-3.10.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:90bfc137c75c31d32308fd61951d424424426ddc39a40e367704661a9ee97095"}, + {file = "orjson-3.10.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:13b5d3c795b09a466ec9fcf0bd3ad7b85467d91a60113885df7b8d639a9d374b"}, + {file = "orjson-3.10.0-cp38-none-win32.whl", hash = "sha256:5d42768db6f2ce0162544845facb7c081e9364a5eb6d2ef06cd17f6050b048d8"}, + {file = "orjson-3.10.0-cp38-none-win_amd64.whl", hash = "sha256:33e6655a2542195d6fd9f850b428926559dee382f7a862dae92ca97fea03a5ad"}, + {file = "orjson-3.10.0-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:4050920e831a49d8782a1720d3ca2f1c49b150953667eed6e5d63a62e80f46a2"}, + {file = "orjson-3.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1897aa25a944cec774ce4a0e1c8e98fb50523e97366c637b7d0cddabc42e6643"}, + {file = "orjson-3.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9bf565a69e0082ea348c5657401acec3cbbb31564d89afebaee884614fba36b4"}, + {file = "orjson-3.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b6ebc17cfbbf741f5c1a888d1854354536f63d84bee537c9a7c0335791bb9009"}, + {file = "orjson-3.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d2817877d0b69f78f146ab305c5975d0618df41acf8811249ee64231f5953fee"}, + {file = "orjson-3.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57d017863ec8aa4589be30a328dacd13c2dc49de1c170bc8d8c8a98ece0f2925"}, + {file = "orjson-3.10.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:22c2f7e377ac757bd3476ecb7480c8ed79d98ef89648f0176deb1da5cd014eb7"}, + {file = "orjson-3.10.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:e62ba42bfe64c60c1bc84799944f80704e996592c6b9e14789c8e2a303279912"}, + {file = "orjson-3.10.0-cp39-none-win32.whl", hash = "sha256:60c0b1bdbccd959ebd1575bd0147bd5e10fc76f26216188be4a36b691c937077"}, + {file = "orjson-3.10.0-cp39-none-win_amd64.whl", hash = "sha256:175a41500ebb2fdf320bf78e8b9a75a1279525b62ba400b2b2444e274c2c8bee"}, + {file = "orjson-3.10.0.tar.gz", hash = "sha256:ba4d8cac5f2e2cff36bea6b6481cdb92b38c202bcec603d6f5ff91960595a1ed"}, ] [[package]] From 15a2e6feeb68c61d3af7f2c03b35f6eb90f8ba06 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 10:17:17 -0400 Subject: [PATCH 05/23] fix(deps): update typescript-projects (#8471) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- cli/package-lock.json | 28 ++++---- server/package-lock.json | 152 +++++++++++++++++++++++++++++---------- web/package-lock.json | 14 ++-- 3 files changed, 135 insertions(+), 59 deletions(-) diff --git a/cli/package-lock.json b/cli/package-lock.json index 6edc44424..02a6d37f5 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -2555,16 +2555,16 @@ } }, "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "dev": true, "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", + "jackspeak": "^2.3.6", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -3411,12 +3411,12 @@ "dev": true }, "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "dev": true, "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { @@ -4456,13 +4456,13 @@ } }, "node_modules/vite": { - "version": "5.2.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.6.tgz", - "integrity": "sha512-FPtnxFlSIKYjZ2eosBQamz4CbyrTizbZ3hnGJlh/wMtCrlp1Hah6AzBLjGI5I2urTfNnpovpHdrL6YRuBOPnCA==", + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.7.tgz", + "integrity": "sha512-k14PWOKLI6pMaSzAuGtT+Cf0YmIx12z9YGon39onaJNy8DLBfBJrzg9FQEmkAM5lpHBZs9wksWAsyF/HkpEwJA==", "dev": true, "dependencies": { "esbuild": "^0.20.1", - "postcss": "^8.4.36", + "postcss": "^8.4.38", "rollup": "^4.13.0" }, "bin": { diff --git a/server/package-lock.json b/server/package-lock.json index 5e11c3411..56be652be 100644 --- a/server/package-lock.json +++ b/server/package-lock.json @@ -2464,6 +2464,52 @@ "balanced-match": "^1.0.0" } }, + "node_modules/@nestjs/cli/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/glob/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nestjs/cli/node_modules/glob/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/@nestjs/cli/node_modules/minimatch": { "version": "8.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", @@ -2722,9 +2768,9 @@ "dev": true }, "node_modules/@nestjs/swagger": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-7.3.0.tgz", - "integrity": "sha512-zLkfKZ+ioYsIZ3dfv7Bj8YHnZMNAGWFUmx2ZDuLp/fBE4P8BSjB7hldzDueFXsmwaPL90v7lgyd82P+s7KME1Q==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-7.3.1.tgz", + "integrity": "sha512-LUC4mr+5oAleEC/a2j8pNRh1S5xhKXJ1Gal5ZdRjt9XebQgbngXCdW7JTA9WOEcwGtFZN9EnKYdquzH971LZfw==", "dependencies": { "@microsoft/tsdoc": "^0.14.2", "@nestjs/mapped-types": "2.0.5", @@ -8443,15 +8489,15 @@ } }, "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "dependencies": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", + "jackspeak": "^2.3.6", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" }, "bin": { "glob": "dist/esm/bin.mjs" @@ -8489,9 +8535,9 @@ } }, "node_modules/glob/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dependencies": { "brace-expansion": "^2.0.1" }, @@ -11080,11 +11126,11 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { @@ -11095,9 +11141,9 @@ } }, "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", "engines": { "node": "14 || >=16.14" } @@ -16097,6 +16143,36 @@ "balanced-match": "^1.0.0" } }, + "glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "requires": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "dependencies": { + "minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + } + }, + "minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true + } + } + }, "minimatch": { "version": "8.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", @@ -16243,9 +16319,9 @@ } }, "@nestjs/swagger": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-7.3.0.tgz", - "integrity": "sha512-zLkfKZ+ioYsIZ3dfv7Bj8YHnZMNAGWFUmx2ZDuLp/fBE4P8BSjB7hldzDueFXsmwaPL90v7lgyd82P+s7KME1Q==", + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/@nestjs/swagger/-/swagger-7.3.1.tgz", + "integrity": "sha512-LUC4mr+5oAleEC/a2j8pNRh1S5xhKXJ1Gal5ZdRjt9XebQgbngXCdW7JTA9WOEcwGtFZN9EnKYdquzH971LZfw==", "requires": { "@microsoft/tsdoc": "^0.14.2", "@nestjs/mapped-types": "2.0.5", @@ -20532,15 +20608,15 @@ "dev": true }, "glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "requires": { "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", + "jackspeak": "^2.3.6", "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" }, "dependencies": { "brace-expansion": { @@ -20552,9 +20628,9 @@ } }, "minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "requires": { "brace-expansion": "^2.0.1" } @@ -22537,18 +22613,18 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, "path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "requires": { - "lru-cache": "^9.1.1 || ^10.0.0", + "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "dependencies": { "lru-cache": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.1.tgz", - "integrity": "sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==" + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" } } }, diff --git a/web/package-lock.json b/web/package-lock.json index a855def3b..a00c329b3 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1825,9 +1825,9 @@ } }, "node_modules/@sveltejs/kit": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.4.tgz", - "integrity": "sha512-eDxK2d4EGzk99QsZNoPXe7jlzA5EGqfcCpUwZ912bhnalsZ2ZsG5wGRthkydupVjYyqdmzEanVKFhLxU2vkPSQ==", + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.5.5.tgz", + "integrity": "sha512-ULe3PB00q4+wYRL+IS5FDPsCEVnhEITofm7b9Yz8malcH3r1SAnW/JJ6T13hIMeu8QNRIuVQWo+P4+2VklbnLQ==", "dev": true, "hasInstallScript": true, "dependencies": { @@ -8677,13 +8677,13 @@ } }, "node_modules/vite": { - "version": "5.2.6", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.6.tgz", - "integrity": "sha512-FPtnxFlSIKYjZ2eosBQamz4CbyrTizbZ3hnGJlh/wMtCrlp1Hah6AzBLjGI5I2urTfNnpovpHdrL6YRuBOPnCA==", + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.2.7.tgz", + "integrity": "sha512-k14PWOKLI6pMaSzAuGtT+Cf0YmIx12z9YGon39onaJNy8DLBfBJrzg9FQEmkAM5lpHBZs9wksWAsyF/HkpEwJA==", "dev": true, "dependencies": { "esbuild": "^0.20.1", - "postcss": "^8.4.36", + "postcss": "^8.4.38", "rollup": "^4.13.0" }, "bin": { From 7f854432ae11eb07c28de301820d4fc6e21d32ed Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 3 Apr 2024 09:37:03 -0500 Subject: [PATCH 06/23] fix(web): show download button correctly based on shared link permission (#8288) * fix(web): show download button correctly based on shared link permission * remove console log * Define initial value * simpler implementation * refactor: show download in asset viewer for shared link * chore: hook timeout --------- Co-authored-by: Jason Rasmussen --- e2e/src/api/specs/search.e2e-spec.ts | 2 +- .../asset-viewer/asset-viewer-nav-bar.svelte | 11 +++++++++++ .../lib/components/asset-viewer/asset-viewer.svelte | 9 ++++----- web/src/lib/utils.ts | 13 ++++++------- web/src/routes/(user)/share/[key]/+page.svelte | 2 ++ web/src/routes/(user)/share/[key]/+page.ts | 3 ++- 6 files changed, 26 insertions(+), 14 deletions(-) diff --git a/e2e/src/api/specs/search.e2e-spec.ts b/e2e/src/api/specs/search.e2e-spec.ts index afe131228..a613cdd28 100644 --- a/e2e/src/api/specs/search.e2e-spec.ts +++ b/e2e/src/api/specs/search.e2e-spec.ts @@ -133,7 +133,7 @@ describe('/search', () => { assetLast = assets.at(-1) as AssetFileUploadResponseDto; await deleteAssets({ assetBulkDeleteDto: { ids: [assetSilver.id] } }, { headers: asBearerAuth(admin.accessToken) }); - }); + }, 30_000); afterAll(async () => { utils.disconnectWebsocket(websocket); diff --git a/web/src/lib/components/asset-viewer/asset-viewer-nav-bar.svelte b/web/src/lib/components/asset-viewer/asset-viewer-nav-bar.svelte index 1772b8641..abcb248f1 100644 --- a/web/src/lib/components/asset-viewer/asset-viewer-nav-bar.svelte +++ b/web/src/lib/components/asset-viewer/asset-viewer-nav-bar.svelte @@ -161,6 +161,16 @@ }} /> {/if} + + {#if !isOwner && showDownloadButton} + dispatch('download')} + title="Download" + /> + {/if} + {#if showDetailButton} {/if} + {#if isOwner} import Icon from '$lib/components/elements/icon.svelte'; + import CreateSharedLinkModal from '$lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte'; + import FocusTrap from '$lib/components/shared-components/focus-trap.svelte'; import { AssetAction, ProjectionType } from '$lib/constants'; import { updateNumberOfComments } from '$lib/stores/activity.store'; import { assetViewingStore } from '$lib/stores/asset-viewing.store'; @@ -9,7 +11,7 @@ import { SlideshowNavigation, SlideshowState, slideshowStore } from '$lib/stores/slideshow.store'; import { stackAssetsStore } from '$lib/stores/stacked-asset.store'; import { user } from '$lib/stores/user.store'; - import { getAssetJobMessage, isSharedLink, handlePromiseError } from '$lib/utils'; + import { getAssetJobMessage, getSharedLink, handlePromiseError, isSharedLink } from '$lib/utils'; import { addAssetsToAlbum, addAssetsToNewAlbum, downloadFile } from '$lib/utils/asset-utils'; import { handleError } from '$lib/utils/handle-error'; import { shortcuts } from '$lib/utils/shortcut'; @@ -30,7 +32,6 @@ type ActivityResponseDto, type AlbumResponseDto, type AssetResponseDto, - type SharedLinkResponseDto, } from '@immich/sdk'; import { mdiChevronLeft, mdiChevronRight, mdiImageBrokenVariant } from '@mdi/js'; import { createEventDispatcher, onDestroy, onMount } from 'svelte'; @@ -49,14 +50,11 @@ import PhotoViewer from './photo-viewer.svelte'; import SlideshowBar from './slideshow-bar.svelte'; import VideoViewer from './video-viewer.svelte'; - import CreateSharedLinkModal from '$lib/components/shared-components/create-share-link-modal/create-shared-link-modal.svelte'; - import FocusTrap from '$lib/components/shared-components/focus-trap.svelte'; export let assetStore: AssetStore | null = null; export let asset: AssetResponseDto; export let preloadAssets: AssetResponseDto[] = []; export let showNavigation = true; - export let sharedLink: SharedLinkResponseDto | undefined = undefined; $: isTrashEnabled = $featureFlags.trash; export let withStacked = false; export let isShared = false; @@ -86,6 +84,7 @@ let addToSharedAlbum = true; let shouldPlayMotionPhoto = false; let isShowProfileImageCrop = false; + let sharedLink = getSharedLink(); let shouldShowDownloadButton = sharedLink ? sharedLink.allowDownload : !asset.isOffline; let shouldShowDetailButton = asset.hasMetadata; let shouldShowShareModal = !asset.isTrashed; diff --git a/web/src/lib/utils.ts b/web/src/lib/utils.ts index 299f04505..e6c21b70a 100644 --- a/web/src/lib/utils.ts +++ b/web/src/lib/utils.ts @@ -10,6 +10,7 @@ import { linkOAuthAccount, startOAuth, unlinkOAuthAccount, + type SharedLinkResponseDto, type UserResponseDto, } from '@immich/sdk'; import { mdiCogRefreshOutline, mdiDatabaseRefreshOutline, mdiImageRefreshOutline } from '@mdi/js'; @@ -129,14 +130,12 @@ export const getJobName = (jobName: JobName) => { }; let _key: string | undefined; +let _sharedLink: SharedLinkResponseDto | undefined; -export const setKey = (key: string) => { - _key = key; -}; - -export const getKey = (): string | undefined => { - return _key; -}; +export const setKey = (key: string) => (_key = key); +export const getKey = (): string | undefined => _key; +export const setSharedLink = (sharedLink: SharedLinkResponseDto) => (_sharedLink = sharedLink); +export const getSharedLink = (): SharedLinkResponseDto | undefined => _sharedLink; export const isSharedLink = () => { return !!_key; diff --git a/web/src/routes/(user)/share/[key]/+page.svelte b/web/src/routes/(user)/share/[key]/+page.svelte index 1b87063da..28ebbc6c8 100644 --- a/web/src/routes/(user)/share/[key]/+page.svelte +++ b/web/src/routes/(user)/share/[key]/+page.svelte @@ -9,6 +9,7 @@ import { handleError } from '$lib/utils/handle-error'; import { getMySharedLink, SharedLinkType } from '@immich/sdk'; import type { PageData } from './$types'; + import { setSharedLink } from '$lib/utils'; export let data: PageData; let { sharedLink, passwordRequired, sharedLinkKey: key, meta } = data; @@ -19,6 +20,7 @@ const handlePasswordSubmit = async () => { try { sharedLink = await getMySharedLink({ password, key }); + setSharedLink(sharedLink); passwordRequired = false; isOwned = $user ? $user.id === sharedLink.userId : false; title = (sharedLink.album ? sharedLink.album.albumName : 'Public Share') + ' - Immich'; diff --git a/web/src/routes/(user)/share/[key]/+page.ts b/web/src/routes/(user)/share/[key]/+page.ts index 380c9d002..89821a447 100644 --- a/web/src/routes/(user)/share/[key]/+page.ts +++ b/web/src/routes/(user)/share/[key]/+page.ts @@ -1,4 +1,4 @@ -import { getAssetThumbnailUrl } from '$lib/utils'; +import { getAssetThumbnailUrl, setSharedLink } from '$lib/utils'; import { authenticate } from '$lib/utils/auth'; import { ThumbnailFormat, getMySharedLink, isHttpError } from '@immich/sdk'; import type { PageLoad } from './$types'; @@ -9,6 +9,7 @@ export const load = (async ({ params }) => { try { const sharedLink = await getMySharedLink({ key }); + setSharedLink(sharedLink); const assetCount = sharedLink.assets.length; const assetId = sharedLink.album?.albumThumbnailAssetId || sharedLink.assets[0]?.id; From 0529076ed70c6120f41d0c1121b5575588770c44 Mon Sep 17 00:00:00 2001 From: bo0tzz Date: Thu, 4 Apr 2024 00:20:48 +0200 Subject: [PATCH 07/23] docs: Update environment variable services (#8490) * docs: Update environment variable services * chore: format fix --- docs/docs/install/environment-variables.md | 27 +++++++++++----------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/docs/docs/install/environment-variables.md b/docs/docs/install/environment-variables.md index 5f727999e..a8cbe6059 100644 --- a/docs/docs/install/environment-variables.md +++ b/docs/docs/install/environment-variables.md @@ -17,10 +17,10 @@ If this should not work, try running `docker compose up -d --force-recreate`. ## Docker Compose -| Variable | Description | Default | Services | -| :---------------- | :-------------------- | :-------: | :-------------------------------------------------- | -| `IMMICH_VERSION` | Image tags | `release` | server, microservices, machine learning, web, proxy | -| `UPLOAD_LOCATION` | Host Path for uploads | | server, microservices | +| Variable | Description | Default | Services | +| :---------------- | :-------------------- | :-------: | :-------------------------------------- | +| `IMMICH_VERSION` | Image tags | `release` | server, microservices, machine learning | +| `UPLOAD_LOCATION` | Host Path for uploads | | server, microservices | :::tip @@ -30,15 +30,15 @@ These environment variables are used by the `docker-compose.yml` file and do **N ## General -| Variable | Description | Default | Services | -| :------------------------------ | :------------------------------------------- | :------------------: | :------------------------------------------- | -| `TZ` | Timezone | | microservices | -| `NODE_ENV` | Environment (production, development) | `production` | server, microservices, machine learning, web | -| `LOG_LEVEL` | Log Level (verbose, debug, log, warn, error) | `log` | server, microservices | -| `IMMICH_MEDIA_LOCATION` | Media Location | `./upload` | server, microservices | -| `IMMICH_CONFIG_FILE` | Path to config file | | server, microservices | -| `IMMICH_WEB_ROOT` | Path of root index.html | `/usr/src/app/www` | server | -| `IMMICH_REVERSE_GEOCODING_ROOT` | Path of reverse geocoding dump directory | `/usr/src/resources` | microservices | +| Variable | Description | Default | Services | +| :------------------------------ | :------------------------------------------- | :------------------: | :-------------------------------------- | +| `TZ` | Timezone | | microservices | +| `NODE_ENV` | Environment (production, development) | `production` | server, microservices, machine learning | +| `LOG_LEVEL` | Log Level (verbose, debug, log, warn, error) | `log` | server, microservices, machine learning | +| `IMMICH_MEDIA_LOCATION` | Media Location | `./upload` | server, microservices | +| `IMMICH_CONFIG_FILE` | Path to config file | | server, microservices | +| `IMMICH_WEB_ROOT` | Path of root index.html | `/usr/src/app/www` | server | +| `IMMICH_REVERSE_GEOCODING_ROOT` | Path of reverse geocoding dump directory | `/usr/src/resources` | microservices | :::tip `TZ` should be set to a `TZ identifier` from [this list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). For example, `TZ="Etc/UTC"`. @@ -50,7 +50,6 @@ These environment variables are used by the `docker-compose.yml` file and do **N | Variable | Description | Default | Services | | :---------------------- | :-------------------- | :-------: | :--------------- | -| `PORT` | Web Port | `3000` | web | | `SERVER_PORT` | Server Port | `3001` | server | | `MICROSERVICES_PORT` | Microservices Port | `3002` | microservices | | `MACHINE_LEARNING_HOST` | Machine Learning Host | `0.0.0.0` | machine learning | From 66650f594487c99715cb75555ce401b721bb8ee6 Mon Sep 17 00:00:00 2001 From: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> Date: Thu, 4 Apr 2024 03:20:54 +0200 Subject: [PATCH 08/23] fix(web): prevent fetching asset info twice (#8486) --- .../asset-viewer/asset-viewer.svelte | 18 +++++++------- .../photos-page/asset-date-group.svelte | 8 ++----- .../components/photos-page/asset-grid.svelte | 16 +++++-------- web/src/lib/stores/asset-viewing.store.ts | 24 +++++++------------ web/src/lib/stores/asset.store.spec.ts | 16 ++++++------- web/src/lib/stores/assets.store.ts | 12 +++++----- web/src/lib/utils/slideshow-history.ts | 10 ++++---- .../(user)/albums/[albumId]/+page.svelte | 4 ++-- 8 files changed, 47 insertions(+), 61 deletions(-) diff --git a/web/src/lib/components/asset-viewer/asset-viewer.svelte b/web/src/lib/components/asset-viewer/asset-viewer.svelte index ccba99a05..b805e4e9b 100644 --- a/web/src/lib/components/asset-viewer/asset-viewer.svelte +++ b/web/src/lib/components/asset-viewer/asset-viewer.svelte @@ -62,7 +62,7 @@ let reactions: ActivityResponseDto[] = []; - const { setAssetId } = assetViewingStore; + const { setAsset } = assetViewingStore; const { restartProgress: restartSlideshowProgress, stopProgress: stopSlideshowProgress, @@ -193,7 +193,7 @@ slideshowStateUnsubscribe = slideshowState.subscribe((value) => { if (value === SlideshowState.PlaySlideshow) { slideshowHistory.reset(); - slideshowHistory.queue(asset.id); + slideshowHistory.queue(asset); handlePromiseError(handlePlaySlideshow()); } else if (value === SlideshowState.StopSlideshow) { handlePromiseError(handleStopSlideshow()); @@ -203,7 +203,7 @@ shuffleSlideshowUnsubscribe = slideshowNavigation.subscribe((value) => { if (value === SlideshowNavigation.Shuffle) { slideshowHistory.reset(); - slideshowHistory.queue(asset.id); + slideshowHistory.queue(asset); } }); @@ -278,9 +278,9 @@ return; } - slideshowHistory.queue(asset.id); + slideshowHistory.queue(asset); - await setAssetId(asset.id); + setAsset(asset); $restartSlideshowProgress = true; }; @@ -299,9 +299,7 @@ if ($slideshowState === SlideshowState.PlaySlideshow && assetStore) { const hasNext = - order === 'previous' - ? await assetStore.getPreviousAssetId(asset.id) - : await assetStore.getNextAssetId(asset.id); + order === 'previous' ? await assetStore.getPreviousAsset(asset.id) : await assetStore.getNextAsset(asset.id); if (hasNext) { $restartSlideshowProgress = true; } else { @@ -441,8 +439,8 @@ let assetViewerHtmlElement: HTMLElement; - const slideshowHistory = new SlideshowHistory((assetId: string) => { - handlePromiseError(setAssetId(assetId)); + const slideshowHistory = new SlideshowHistory((asset) => { + setAsset(asset); $restartSlideshowProgress = true; }); diff --git a/web/src/lib/components/photos-page/asset-date-group.svelte b/web/src/lib/components/photos-page/asset-date-group.svelte index e3af25984..a42f8dc78 100644 --- a/web/src/lib/components/photos-page/asset-date-group.svelte +++ b/web/src/lib/components/photos-page/asset-date-group.svelte @@ -80,17 +80,13 @@ }); } - const assetClickHandler = async ( - asset: AssetResponseDto, - assetsInDateGroup: AssetResponseDto[], - groupTitle: string, - ) => { + const assetClickHandler = (asset: AssetResponseDto, assetsInDateGroup: AssetResponseDto[], groupTitle: string) => { if (isSelectionMode || $isMultiSelectState) { assetSelectHandler(asset, assetsInDateGroup, groupTitle); return; } - await assetViewingStore.setAssetId(asset.id); + assetViewingStore.setAsset(asset); }; const handleSelectGroup = (title: string, assets: AssetResponseDto[]) => dispatch('select', { title, assets }); diff --git a/web/src/lib/components/photos-page/asset-grid.svelte b/web/src/lib/components/photos-page/asset-grid.svelte index 8991c6915..9aca51fa0 100644 --- a/web/src/lib/components/photos-page/asset-grid.svelte +++ b/web/src/lib/components/photos-page/asset-grid.svelte @@ -137,26 +137,22 @@ } const handlePrevious = async () => { - const previousAsset = await assetStore.getPreviousAssetId($viewingAsset.id); + const previousAsset = await assetStore.getPreviousAsset($viewingAsset.id); if (previousAsset) { - const preloadId = await assetStore.getPreviousAssetId(previousAsset); - preloadId - ? await assetViewingStore.setAssetId(previousAsset, [preloadId]) - : await assetViewingStore.setAssetId(previousAsset); + const preloadAsset = await assetStore.getPreviousAsset(previousAsset.id); + assetViewingStore.setAsset(previousAsset, preloadAsset ? [preloadAsset] : []); } return !!previousAsset; }; const handleNext = async () => { - const nextAsset = await assetStore.getNextAssetId($viewingAsset.id); + const nextAsset = await assetStore.getNextAsset($viewingAsset.id); if (nextAsset) { - const preloadId = await assetStore.getNextAssetId(nextAsset); - preloadId - ? await assetViewingStore.setAssetId(nextAsset, [preloadId]) - : await assetViewingStore.setAssetId(nextAsset); + const preloadAsset = await assetStore.getNextAsset(nextAsset.id); + assetViewingStore.setAsset(nextAsset, preloadAsset ? [preloadAsset] : []); } return !!nextAsset; diff --git a/web/src/lib/stores/asset-viewing.store.ts b/web/src/lib/stores/asset-viewing.store.ts index 0416d4903..bb3214995 100644 --- a/web/src/lib/stores/asset-viewing.store.ts +++ b/web/src/lib/stores/asset-viewing.store.ts @@ -7,24 +7,17 @@ function createAssetViewingStore() { const preloadAssets = writable([]); const viewState = writable(false); - const setAssetId = async (id: string, preloadIds?: string[]) => { - const data = await getAssetInfo({ id, key: getKey() }); - - if (preloadIds) { - const preloadList = []; - for (const preloadId of preloadIds) { - if (preloadId) { - const preloadAsset = await getAssetInfo({ id: preloadId, key: getKey() }); - preloadList.push(preloadAsset); - } - } - preloadAssets.set(preloadList); - } - - viewingAssetStoreState.set(data); + const setAsset = (asset: AssetResponseDto, assetsToPreload: AssetResponseDto[] = []) => { + preloadAssets.set(assetsToPreload); + viewingAssetStoreState.set(asset); viewState.set(true); }; + const setAssetId = async (id: string) => { + const asset = await getAssetInfo({ id, key: getKey() }); + setAsset(asset); + }; + const showAssetViewer = (show: boolean) => { viewState.set(show); }; @@ -40,6 +33,7 @@ function createAssetViewingStore() { subscribe: viewState.subscribe, set: viewState.set, }, + setAsset, setAssetId, showAssetViewer, }; diff --git a/web/src/lib/stores/asset.store.spec.ts b/web/src/lib/stores/asset.store.spec.ts index 55f3fe1ff..e2f702fba 100644 --- a/web/src/lib/stores/asset.store.spec.ts +++ b/web/src/lib/stores/asset.store.spec.ts @@ -286,7 +286,7 @@ describe('AssetStore', () => { }); }); - describe('getPreviousAssetId', () => { + describe('getPreviousAsset', () => { let assetStore: AssetStore; const bucketAssets: Record = { '2024-03-01T00:00:00.000Z': assetFactory.buildList(1), @@ -307,15 +307,15 @@ describe('AssetStore', () => { }); it('returns null for invalid assetId', async () => { - expect(() => assetStore.getPreviousAssetId('invalid')).not.toThrow(); - expect(await assetStore.getPreviousAssetId('invalid')).toBeNull(); + expect(() => assetStore.getPreviousAsset('invalid')).not.toThrow(); + expect(await assetStore.getPreviousAsset('invalid')).toBeNull(); }); it('returns previous assetId', async () => { await assetStore.loadBucket('2024-01-01T00:00:00.000Z', BucketPosition.Visible); const bucket = assetStore.getBucketByDate('2024-01-01T00:00:00.000Z'); - expect(await assetStore.getPreviousAssetId(bucket!.assets[1].id)).toEqual(bucket!.assets[0].id); + expect(await assetStore.getPreviousAsset(bucket!.assets[1].id)).toEqual(bucket!.assets[0]); }); it('returns previous assetId spanning multiple buckets', async () => { @@ -324,7 +324,7 @@ describe('AssetStore', () => { const bucket = assetStore.getBucketByDate('2024-02-01T00:00:00.000Z'); const previousBucket = assetStore.getBucketByDate('2024-03-01T00:00:00.000Z'); - expect(await assetStore.getPreviousAssetId(bucket!.assets[0].id)).toEqual(previousBucket!.assets[0].id); + expect(await assetStore.getPreviousAsset(bucket!.assets[0].id)).toEqual(previousBucket!.assets[0]); }); it('loads previous bucket', async () => { @@ -333,7 +333,7 @@ describe('AssetStore', () => { const loadBucketSpy = vi.spyOn(assetStore, 'loadBucket'); const bucket = assetStore.getBucketByDate('2024-02-01T00:00:00.000Z'); const previousBucket = assetStore.getBucketByDate('2024-03-01T00:00:00.000Z'); - expect(await assetStore.getPreviousAssetId(bucket!.assets[0].id)).toEqual(previousBucket!.assets[0].id); + expect(await assetStore.getPreviousAsset(bucket!.assets[0].id)).toEqual(previousBucket!.assets[0]); expect(loadBucketSpy).toBeCalledTimes(1); }); @@ -344,12 +344,12 @@ describe('AssetStore', () => { const [assetOne, assetTwo, assetThree] = assetStore.assets; assetStore.removeAssets([assetTwo.id]); - expect(await assetStore.getPreviousAssetId(assetThree.id)).toEqual(assetOne.id); + expect(await assetStore.getPreviousAsset(assetThree.id)).toEqual(assetOne); }); it('returns null when no more assets', async () => { await assetStore.loadBucket('2024-03-01T00:00:00.000Z', BucketPosition.Visible); - expect(await assetStore.getPreviousAssetId(assetStore.assets[0].id)).toBeNull(); + expect(await assetStore.getPreviousAsset(assetStore.assets[0].id)).toBeNull(); }); }); diff --git a/web/src/lib/stores/assets.store.ts b/web/src/lib/stores/assets.store.ts index 4cc92ab86..019a70401 100644 --- a/web/src/lib/stores/assets.store.ts +++ b/web/src/lib/stores/assets.store.ts @@ -451,7 +451,7 @@ export class AssetStore { this.emit(true); } - async getPreviousAssetId(assetId: string): Promise { + async getPreviousAsset(assetId: string): Promise { const info = this.getBucketInfoForAssetId(assetId); if (!info) { return null; @@ -460,7 +460,7 @@ export class AssetStore { const { bucket, assetIndex, bucketIndex } = info; if (assetIndex !== 0) { - return bucket.assets[assetIndex - 1].id; + return bucket.assets[assetIndex - 1]; } if (bucketIndex === 0) { @@ -469,10 +469,10 @@ export class AssetStore { const previousBucket = this.buckets[bucketIndex - 1]; await this.loadBucket(previousBucket.bucketDate, BucketPosition.Unknown); - return previousBucket.assets.at(-1)?.id || null; + return previousBucket.assets.at(-1) || null; } - async getNextAssetId(assetId: string): Promise { + async getNextAsset(assetId: string): Promise { const info = this.getBucketInfoForAssetId(assetId); if (!info) { return null; @@ -481,7 +481,7 @@ export class AssetStore { const { bucket, assetIndex, bucketIndex } = info; if (assetIndex !== bucket.assets.length - 1) { - return bucket.assets[assetIndex + 1].id; + return bucket.assets[assetIndex + 1]; } if (bucketIndex === this.buckets.length - 1) { @@ -490,7 +490,7 @@ export class AssetStore { const nextBucket = this.buckets[bucketIndex + 1]; await this.loadBucket(nextBucket.bucketDate, BucketPosition.Unknown); - return nextBucket.assets[0]?.id || null; + return nextBucket.assets[0] || null; } triggerUpdate() { diff --git a/web/src/lib/utils/slideshow-history.ts b/web/src/lib/utils/slideshow-history.ts index 8b34359d0..b9d5fdea7 100644 --- a/web/src/lib/utils/slideshow-history.ts +++ b/web/src/lib/utils/slideshow-history.ts @@ -1,16 +1,18 @@ +import type { AssetResponseDto } from '@immich/sdk'; + export class SlideshowHistory { - private history: string[] = []; + private history: AssetResponseDto[] = []; private index = 0; - constructor(private onChange: (assetId: string) => void) {} + constructor(private onChange: (asset: AssetResponseDto) => void) {} reset() { this.history = []; this.index = 0; } - queue(assetId: string) { - this.history.push(assetId); + queue(asset: AssetResponseDto) { + this.history.push(asset); // If we were at the end of the slideshow history, move the index to the new end if (this.index === this.history.length - 2) { diff --git a/web/src/routes/(user)/albums/[albumId]/+page.svelte b/web/src/routes/(user)/albums/[albumId]/+page.svelte index d4b665bc0..5f76012dd 100644 --- a/web/src/routes/(user)/albums/[albumId]/+page.svelte +++ b/web/src/routes/(user)/albums/[albumId]/+page.svelte @@ -82,7 +82,7 @@ export let data: PageData; - let { isViewing: showAssetViewer, setAssetId } = assetViewingStore; + let { isViewing: showAssetViewer, setAsset } = assetViewingStore; let { slideshowState, slideshowNavigation } = slideshowStore; $: album = data.album; @@ -231,7 +231,7 @@ const asset = $slideshowNavigation === SlideshowNavigation.Shuffle ? await assetStore.getRandomAsset() : assetStore.assets[0]; if (asset) { - await setAssetId(asset.id); + setAsset(asset); $slideshowState = SlideshowState.PlaySlideshow; } }; From e47a89b2745d83a5f04dede2b24a407d8f821722 Mon Sep 17 00:00:00 2001 From: Lukas <36325360+LackesLab@users.noreply.github.com> Date: Fri, 5 Apr 2024 01:42:27 +0200 Subject: [PATCH 09/23] Add notes for facial recogniton models source (#8522) Co-authored-by: LakesLab --- machine-learning/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/machine-learning/README.md b/machine-learning/README.md index 4ff09fa0a..b30e18ceb 100644 --- a/machine-learning/README.md +++ b/machine-learning/README.md @@ -22,3 +22,19 @@ You can change the models or adjust options like score thresholds through the Lo To get started, you can simply run `locust --web-host 127.0.0.1` and open `localhost:8089` in a browser to access the UI. See the [Locust documentation](https://docs.locust.io/en/stable/index.html) for more info on running Locust. Note that in Locust's jargon, concurrency is measured in `users`, and each user runs one task at a time. To achieve a particular per-endpoint concurrency, multiply that number by the number of endpoints to be queried. For example, if there are 3 endpoints and you want each of them to receive 8 requests at a time, you should set the number of users to 24. + +# Facial Recognition + +## Acknowledgements +This project utilizes facial recognition models from the [InsightFace](https://github.com/deepinsight/insightface/tree/master/model_zoo) project. We appreciate the work put into developing these models, which have been beneficial to the machine learning part of this project. + +### Used Models +* antelopev2 +* buffalo_l +* buffalo_m +* buffalo_s + +## License and Use Restrictions +We have received permission to use the InsightFace facial recognition models in our project, as granted via email by Jia Guo (guojia@insightface.ai) on 18th March 2023. However, it's important to note that this permission does not extend to the redistribution or commercial use of their models by third parties. Users and developers interested in using these models should review the licensing terms provided in the InsightFace GitHub repository. + +For more information on the capabilities of the InsightFace models and to ensure compliance with their license, please refer to their [official repository](https://github.com/deepinsight/insightface). Adhering to the specified licensing terms is crucial for the respectful and lawful use of their work. \ No newline at end of file From 19fafd8c102adbd5f2a8ffe543cdd524cf9df0cb Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 4 Apr 2024 18:48:17 -0500 Subject: [PATCH 10/23] Localizely: Translations update (#8517) chore(mobile): translation update --- mobile/assets/i18n/ca.json | 9 + mobile/assets/i18n/cs-CZ.json | 15 +- mobile/assets/i18n/da-DK.json | 29 ++- mobile/assets/i18n/de-DE.json | 9 + mobile/assets/i18n/en-US.json | 14 +- mobile/assets/i18n/es-ES.json | 9 + mobile/assets/i18n/es-MX.json | 9 + mobile/assets/i18n/es-PE.json | 9 + mobile/assets/i18n/fi-FI.json | 11 +- mobile/assets/i18n/fr-FR.json | 65 ++++--- mobile/assets/i18n/hi-IN.json | 9 + mobile/assets/i18n/hu-HU.json | 9 + mobile/assets/i18n/it-IT.json | 57 +++--- mobile/assets/i18n/ja-JP.json | 9 + mobile/assets/i18n/ko-KR.json | 13 +- mobile/assets/i18n/lv-LV.json | 9 + mobile/assets/i18n/mn.json | 9 + mobile/assets/i18n/nb-NO.json | 11 +- mobile/assets/i18n/nl-NL.json | 13 +- mobile/assets/i18n/pl-PL.json | 11 +- mobile/assets/i18n/pt-PT.json | 323 ++++++++++++++++---------------- mobile/assets/i18n/ru-RU.json | 19 +- mobile/assets/i18n/sk-SK.json | 9 + mobile/assets/i18n/sr-Cyrl.json | 9 + mobile/assets/i18n/sr-Latn.json | 9 + mobile/assets/i18n/sv-FI.json | 9 + mobile/assets/i18n/sv-SE.json | 9 + mobile/assets/i18n/th-TH.json | 9 + mobile/assets/i18n/uk-UA.json | 9 + mobile/assets/i18n/vi-VN.json | 13 +- mobile/assets/i18n/zh-CN.json | 11 +- mobile/assets/i18n/zh-Hans.json | 11 +- 32 files changed, 524 insertions(+), 245 deletions(-) diff --git a/mobile/assets/i18n/ca.json b/mobile/assets/i18n/ca.json index 2db42ad85..5f516e88c 100644 --- a/mobile/assets/i18n/ca.json +++ b/mobile/assets/i18n/ca.json @@ -37,13 +37,16 @@ "archive_page_title": "Arxiu({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automàtic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Àlbums al dispositiu ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "UBICACIÓ", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/cs-CZ.json b/mobile/assets/i18n/cs-CZ.json index 7f1a38078..eb4ab59c7 100644 --- a/mobile/assets/i18n/cs-CZ.json +++ b/mobile/assets/i18n/cs-CZ.json @@ -37,13 +37,16 @@ "archive_page_title": "Archív ({})", "asset_action_delete_err_read_only": "Nelze odstranit položky pouze pro čtení, přeskakuji", "asset_action_share_err_offline": "Nelze načíst offline položky, přeskakuji", + "asset_list_group_by_sub_title": "Seskupit podle", "asset_list_layout_settings_dynamic_layout_title": "Dynamické rozložení", "asset_list_layout_settings_group_automatically": "Automaticky", "asset_list_layout_settings_group_by": "Seskupit položky podle", "asset_list_layout_settings_group_by_month": "Měsíc", "asset_list_layout_settings_group_by_month_day": "Měsíc + den", + "asset_list_layout_sub_title": "Rozložení", "asset_list_settings_subtitle": "Nastavení rozložení mřížky fotografií", "asset_list_settings_title": "Fotografická mřížka", + "asset_viewer_settings_title": "Prohlížeč", "backup_album_selection_page_albums_device": "Alba v zařízení ({})", "backup_album_selection_page_albums_tap": "Klepnutím na položku ji zahrnete, dvojím klepnutím ji vyloučíte", "backup_album_selection_page_assets_scatter": "Položky mohou být roztroušeny ve více albech. To umožňuje zahrnout nebo vyloučit alba během procesu zálohování.", @@ -183,9 +186,10 @@ "edit_location_dialog_title": "Poloha", "exif_bottom_sheet_description": "Přidat popis...", "exif_bottom_sheet_details": "PODROBNOSTI", - "exif_bottom_sheet_location": "LOKALITA", + "exif_bottom_sheet_location": "POLOHA", "exif_bottom_sheet_location_add": "Přidat polohu", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "LIDÉ", + "exif_bottom_sheet_person_add_person": "Přidat jméno", "experimental_settings_new_asset_list_subtitle": "Zpracovávám", "experimental_settings_new_asset_list_title": "Povolení experimentální mřížky fotografií", "experimental_settings_subtitle": "Používejte na vlastní riziko!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Zobrazit pouze oblíbené", "map_settings_theme_settings": "Motiv mapy", "map_zoom_to_see_photos": "Oddálit pro zobrazení fotografií", + "memories_all_caught_up": "To je všechno", + "memories_check_back_tomorrow": "Zítra se podívejte na další vzpomínky", + "memories_start_over": "Začít znovu", + "memories_swipe_to_close": "Přejetím nahoru zavřete", "monthly_title_text_date_format": "LLLL y", "motion_photos_page_title": "Pohyblivé fotky", "multiselect_grid_edit_date_time_err_read_only": "Nelze upravit datum položek pouze pro čtení, přeskakuji", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Přístup povolen! Vše je připraveno.", "permission_onboarding_permission_limited": "Přístup omezen. Chcete-li používat Immich k zálohování a správě celé vaší kolekce galerií, povolte v nastavení přístup k fotkám a videím.", "permission_onboarding_request": "Immich potřebuje přístup k zobrazení vašich fotek a videí.", + "preferences_settings_title": "Předvolby", "profile_drawer_app_logs": "Logy", "profile_drawer_client_out_of_date_major": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější hlavní verzi.", "profile_drawer_client_out_of_date_minor": "Mobilní aplikace je zastaralá. Aktualizujte ji na nejnovější verzi.", @@ -354,7 +363,7 @@ "server_info_box_server_url": "URL serveru", "server_info_box_server_version": "Verze serveru", "setting_image_viewer_help": "V prohlížeči detailů se nejprve načte malá miniatura, poté se načte náhled střední velikosti (je-li povolen) a nakonec se načte originál (je-li povolen).", - "setting_image_viewer_original_subtitle": "Umožňuje načíst původní obrázek v plném rozlišení (velký!). Zakázat pro snížení využití dat (v síti i v mezipaměti zařízení).", + "setting_image_viewer_original_subtitle": "Umožňuje načíst původní obrázek v plném rozlišení (velký!). Zakažte pro snížení využití dat (v síti i v mezipaměti zařízení).", "setting_image_viewer_original_title": "Načíst původní obrázek", "setting_image_viewer_preview_subtitle": "Umožňuje načíst obrázek se středním rozlišením. Zakažte, pokud chcete přímo načíst originál nebo použít pouze miniaturu.", "setting_image_viewer_preview_title": "Načíst náhled obrázku", diff --git a/mobile/assets/i18n/da-DK.json b/mobile/assets/i18n/da-DK.json index bb59fddf8..d43ebf0aa 100644 --- a/mobile/assets/i18n/da-DK.json +++ b/mobile/assets/i18n/da-DK.json @@ -37,13 +37,16 @@ "archive_page_title": "Arkivér ({})", "asset_action_delete_err_read_only": "Kan ikke slette kun læselige elementer. Springer over", "asset_action_share_err_offline": "Kan ikke hente offline element(er). Springer over", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout", "asset_list_layout_settings_group_automatically": "Automatisk", "asset_list_layout_settings_group_by": "Gruppér elementer pr. ", "asset_list_layout_settings_group_by_month": "Måned", "asset_list_layout_settings_group_by_month_day": "Måned + dag", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Indstillinger for billedgitterlayout", "asset_list_settings_title": "Billedgitter", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albummer på enhed ({})", "backup_album_selection_page_albums_tap": "Tryk en gang for at inkludere, tryk to gange for at ekskludere", "backup_album_selection_page_assets_scatter": "Elementer kan være spredt på tværs af flere albummer. Albummer kan således inkluderes eller udelukkes under sikkerhedskopieringsprocessen.", @@ -142,8 +145,8 @@ "control_bottom_app_bar_archive": "Arkiv", "control_bottom_app_bar_create_new_album": "Opret nyt album", "control_bottom_app_bar_delete": "Slet", - "control_bottom_app_bar_delete_from_immich": "Delete from Immich", - "control_bottom_app_bar_delete_from_local": "Delete from device", + "control_bottom_app_bar_delete_from_immich": "Slet fra Immich", + "control_bottom_app_bar_delete_from_local": "Slet fra enhed", "control_bottom_app_bar_edit_location": "Rediger placering", "control_bottom_app_bar_edit_time": "Rediger tid og dato", "control_bottom_app_bar_favorite": "Favorit", @@ -165,15 +168,15 @@ "daily_title_text_date_year": "E, dd MMM, yyyy", "date_format": "E d. LLL y • hh:mm", "delete_dialog_alert": "Disse elementer vil blive slettet permanent fra Immich og din enhed", - "delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server", - "delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device", - "delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server", + "delete_dialog_alert_local": "Disse elementer slettes permanent fra din enhed, men vil stadig være tilgængelige på serveren", + "delete_dialog_alert_local_non_backed_up": "Nogle af elementerne har ingen backup på serveren og vil blive slettet permanent fra din enhed", + "delete_dialog_alert_remote": "Disse elementer slettes permanent fra serveren", "delete_dialog_cancel": "Annuller", "delete_dialog_ok": "Slet", - "delete_dialog_ok_force": "Delete Anyway", + "delete_dialog_ok_force": "Slet alligevel", "delete_dialog_title": "Slet permanent", - "delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only", - "delete_local_dialog_ok_force": "Delete Anyway", + "delete_local_dialog_ok_backed_up_only": "Slet kun backup", + "delete_local_dialog_ok_force": "Slet alligevel", "delete_shared_link_dialog_content": "Er du sikker på, du vil slette dette delte link?", "delete_shared_link_dialog_title": "Slet delt link", "description_input_hint_text": "Tilføj en beskrivelse...", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "DETALJER", "exif_bottom_sheet_location": "LOKATION", "exif_bottom_sheet_location_add": "Tilføj en placering", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "PERSONER", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Under udarbejdelse", "experimental_settings_new_asset_list_title": "Aktiver eksperimentelt fotogitter", "experimental_settings_subtitle": "Brug på eget ansvar!", @@ -276,8 +280,12 @@ "map_settings_include_show_archived": "Inkluder arkiveret", "map_settings_only_relative_range": "Datointerval", "map_settings_only_show_favorites": "Vis kun favoritter", - "map_settings_theme_settings": "Map Theme", + "map_settings_theme_settings": "Korttema", "map_zoom_to_see_photos": "Zoom ud for at vise billeder", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Bevægelsesbilleder", "multiselect_grid_edit_date_time_err_read_only": "Kan ikke redigere datoen på kun læselige elementer. Springer over", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Tilladelse givet! Du er nu klar.", "permission_onboarding_permission_limited": "Tilladelse begrænset. For at lade Immich lave sikkerhedskopi og styre hele dit galleri, skal der gives tilladelse til billeder og videoer i indstillinger.", "permission_onboarding_request": "Immich kræver tilliadelse til at se dine billeder og videoer.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Log", "profile_drawer_client_out_of_date_major": "Mobilapp er forældet. Opdater venligst til den nyeste større version", "profile_drawer_client_out_of_date_minor": "Mobilapp er forældet. Opdater venligst til den nyeste mindre version", diff --git a/mobile/assets/i18n/de-DE.json b/mobile/assets/i18n/de-DE.json index 298847cd7..6451f9665 100644 --- a/mobile/assets/i18n/de-DE.json +++ b/mobile/assets/i18n/de-DE.json @@ -37,13 +37,16 @@ "archive_page_title": "Archiv ({})", "asset_action_delete_err_read_only": "Schreibgeschützten Inhalte können nicht gelöscht werden, überspringe", "asset_action_share_err_offline": "Offline-Inhalte konnten nicht gelesen werden, überspringe", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamisches Layout", "asset_list_layout_settings_group_automatically": "Automatisch", "asset_list_layout_settings_group_by": "Gruppiere Elemente nach", "asset_list_layout_settings_group_by_month": "Monat", "asset_list_layout_settings_group_by_month_day": "Monat + Tag", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Einstellungen für das Fotogitter-Layout", "asset_list_settings_title": "Fotogitter", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Alben auf dem Gerät ({})", "backup_album_selection_page_albums_tap": "Tippen um einzuschließen, doppelt tippen um zu entfernen", "backup_album_selection_page_assets_scatter": "Elemente können sich über mehrere Alben verteilen. Daher können diese vor der Sicherung eingeschlossen oder ausgeschlossen werden", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "STANDORT", "exif_bottom_sheet_location_add": "Aufnahmeort hinzufügen", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "In Arbeit", "experimental_settings_new_asset_list_title": "Experimentelles Fotogitter aktivieren", "experimental_settings_subtitle": "Benutzung auf eigene Gefahr!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Nur Favoriten anzeigen", "map_settings_theme_settings": "Karten-Theme", "map_zoom_to_see_photos": "Ansicht verkleinern um Fotos zu sehen", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Live-Fotos", "multiselect_grid_edit_date_time_err_read_only": "Datum und Uhrzeit von schreibgeschützten Inhalten kann nicht geändert werden, überspringe", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Berechtigung erteilt! Du bist startklar.", "permission_onboarding_permission_limited": "Berechtigungen unzureichend. Um Immich das Sichern von ganzen Sammlungen zu ermöglichen, muss der Zugriff auf alle Fotos und Videos in den Einstellungen erlaubt werden.", "permission_onboarding_request": "Immich benötigt Berechtigung um auf deine Fotos und Videos zuzugreifen.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Major-Version.", "profile_drawer_client_out_of_date_minor": "Mobile-App ist veraltet. Bitte aktualisiere auf die neueste Minor-Version.", diff --git a/mobile/assets/i18n/en-US.json b/mobile/assets/i18n/en-US.json index e350e5b62..eb654890a 100644 --- a/mobile/assets/i18n/en-US.json +++ b/mobile/assets/i18n/en-US.json @@ -37,17 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", - "asset_list_settings_subtitle": "Photo grid layout settings", - "asset_list_settings_title": "Timeline", - "asset_list_group_by_sub_title": "Group by", "asset_list_layout_sub_title": "Layout", + "asset_list_settings_subtitle": "Photo grid layout settings", + "asset_list_settings_title": "Photo Grid", "asset_viewer_settings_title": "Asset Viewer", - "preferences_settings_title": "Preferences", "backup_album_selection_page_albums_device": "Albums on device ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -168,9 +167,9 @@ "daily_title_text_date": "E, MMM dd", "daily_title_text_date_year": "E, MMM dd, yyyy", "date_format": "E, LLL d, y • h:mm a", - "delete_dialog_alert": "These items will be permanently deleted from the Immich server and from your device", - "delete_dialog_alert_local": "These items will be permanently deleted from your device but still be available on the Immich server", - "delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently deleted from your device", + "delete_dialog_alert": "These items will be permanently deleted from Immich and from your device", + "delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server", + "delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device", "delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server", "delete_dialog_cancel": "Cancel", "delete_dialog_ok": "Delete", @@ -316,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/es-ES.json b/mobile/assets/i18n/es-ES.json index 7c0ae71c7..245b3da99 100644 --- a/mobile/assets/i18n/es-ES.json +++ b/mobile/assets/i18n/es-ES.json @@ -37,13 +37,16 @@ "archive_page_title": "Archivo ({})", "asset_action_delete_err_read_only": "No se pueden borrar los archivos de solo lectura. Saltando.", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Diseño dinámico", "asset_list_layout_settings_group_automatically": "Automatico", "asset_list_layout_settings_group_by": "Agrupar recursos por", "asset_list_layout_settings_group_by_month": "Mes", "asset_list_layout_settings_group_by_month_day": "Mes + día", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Configuraciones del diseño de la cuadrícula de fotos", "asset_list_settings_title": "Cuadrícula de fotos", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})", "backup_album_selection_page_albums_tap": "Toque para incluir, doble toque para excluir", "backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "UBICACIÓN", "exif_bottom_sheet_location_add": "Añadir ubicación", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Trabajo en progreso", "experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental", "experimental_settings_subtitle": "Úsalo bajo tu responsabilidad", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Mostrar solo favoritas", "map_settings_theme_settings": "Apariencia del Mapa", "map_zoom_to_see_photos": "Alejar para ver fotos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Foto en Movimiento", "multiselect_grid_edit_date_time_err_read_only": "No se puede cambiar la fecha de archivos de solo lectura. Saltando.", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "¡Permiso concedido! Todo listo.", "permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.", "permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Registros", "profile_drawer_client_out_of_date_major": "La app de móvil está desactualizada. Por favor actualiza a la última versión principal", "profile_drawer_client_out_of_date_minor": "La app de móvil está desactualizada. Por favor actualiza a la última versión menor", diff --git a/mobile/assets/i18n/es-MX.json b/mobile/assets/i18n/es-MX.json index c96f1adac..4844e6b67 100644 --- a/mobile/assets/i18n/es-MX.json +++ b/mobile/assets/i18n/es-MX.json @@ -37,13 +37,16 @@ "archive_page_title": "Archivo ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Diseño dinámico", "asset_list_layout_settings_group_automatically": "Automatico", "asset_list_layout_settings_group_by": "Agrupar recursos por", "asset_list_layout_settings_group_by_month": "Mes", "asset_list_layout_settings_group_by_month_day": "Mes + día", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Configuraciones del diseño de la cuadrícula de fotos", "asset_list_settings_title": "Cuadrícula de fotos", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})", "backup_album_selection_page_albums_tap": "Pulsar para incluir, pulsar dos veces para excluir", "backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "UBICACIÓN", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Trabajo en progreso", "experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental", "experimental_settings_subtitle": "Úsalo bajo tu responsabilidad", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Mostrar solo favoritas", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Alejar para ver fotos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Foto en Movimiento", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "¡Permiso concedido! Todo listo.", "permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.", "permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Registros", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/es-PE.json b/mobile/assets/i18n/es-PE.json index 753ee01ee..7cb36dab4 100644 --- a/mobile/assets/i18n/es-PE.json +++ b/mobile/assets/i18n/es-PE.json @@ -37,13 +37,16 @@ "archive_page_title": "Archivo ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Diseño dinámico", "asset_list_layout_settings_group_automatically": "Automatico", "asset_list_layout_settings_group_by": "Agrupar recursos por", "asset_list_layout_settings_group_by_month": "Mes", "asset_list_layout_settings_group_by_month_day": "Mes + día", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Configuraciones del diseño de la cuadrícula de fotos", "asset_list_settings_title": "Cuadrícula de fotos", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Álbumes en el dispositivo ({})", "backup_album_selection_page_albums_tap": "Pulsar para incluir, pulsar dos veces para excluir", "backup_album_selection_page_assets_scatter": "Los archivos pueden dispersarse en varios álbumes. De este modo, los álbumes pueden ser incluidos o excluidos durante el proceso de copia de seguridad.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "UBICACIÓN", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Trabajo en progreso", "experimental_settings_new_asset_list_title": "Habilitar cuadrícula fotográfica experimental", "experimental_settings_subtitle": "Úsalo bajo tu responsabilidad", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Mostrar solo favoritas", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Alejar para ver fotos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Foto en Movimiento", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "¡Permiso concedido! Todo listo.", "permission_onboarding_permission_limited": "Permiso limitado. Para permitir que Immich haga copia de seguridad y gestione toda tu colección de galería, concede permisos de fotos y videos en Configuración.", "permission_onboarding_request": "Immich requiere permiso para ver tus fotos y videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Registros", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/fi-FI.json b/mobile/assets/i18n/fi-FI.json index b5fa0e263..739abc7c0 100644 --- a/mobile/assets/i18n/fi-FI.json +++ b/mobile/assets/i18n/fi-FI.json @@ -37,13 +37,16 @@ "archive_page_title": "Arkisto ({})", "asset_action_delete_err_read_only": "Vain luku-tilassa olevia kohteita ei voitu poistaa, ohitetaan", "asset_action_share_err_offline": "Verkottomassa tilassa olevia kohteita ei voitu noutaa, ohitetaan", + "asset_list_group_by_sub_title": "Ryhmittele", "asset_list_layout_settings_dynamic_layout_title": "Dynaaminen asetelma", "asset_list_layout_settings_group_automatically": "Automaattisesti", "asset_list_layout_settings_group_by": "Ryhmittele", "asset_list_layout_settings_group_by_month": "Kuukauden mukaan", "asset_list_layout_settings_group_by_month_day": "Kuukauden ja päivän mukaan", + "asset_list_layout_sub_title": "Asettelu", "asset_list_settings_subtitle": "Kuvaruudukon asettelu", "asset_list_settings_title": "Kuvaruudukko", + "asset_viewer_settings_title": "Katselin", "backup_album_selection_page_albums_device": "Laitteen albumit ({})", "backup_album_selection_page_albums_tap": "Napauta sisällyttääksesi, kaksoisnapauta jättääksesi pois", "backup_album_selection_page_assets_scatter": "Kohteet voivat olla hajaantuneina useisiin albumeihin. Albumeita voidaan sisällyttää varmuuskopiointiin tai jättää siitä pois.", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "TIEDOT", "exif_bottom_sheet_location": "SIJAINTI", "exif_bottom_sheet_location_add": "Lisää sijainti", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "IHMISET", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Työn alla", "experimental_settings_new_asset_list_title": "Ota käyttöön kokeellinen kuvaruudukko", "experimental_settings_subtitle": "Käyttö omalla vastuulla!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Näytä vain suosikit", "map_settings_theme_settings": "Kartan teema", "map_zoom_to_see_photos": "Tarkenna nähdäksesi kuvat", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Liikekuvat", "multiselect_grid_edit_date_time_err_read_only": "Vain luku -tilassa olevien kohteiden päivämäärää ei voitu muokata, ohitetaan", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Käyttöoikeus myönnetty! Kaikki valmista.", "permission_onboarding_permission_limited": "Rajoitettu käyttöoikeus. Salliaksesi Immichin varmuuskopioida ja hallita koko kuvakirjastoasi, myönnä oikeus kuviin ja videoihin asetuksista.", "permission_onboarding_request": "Immich vaatii käyttöoikeuden kuvien ja videoiden käyttämiseen.", + "preferences_settings_title": "Asetukset", "profile_drawer_app_logs": "Lokit", "profile_drawer_client_out_of_date_major": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään merkittävään versioon.", "profile_drawer_client_out_of_date_minor": "Sovelluksen mobiiliversio on vanhentunut. Päivitä viimeisimpään versioon.", diff --git a/mobile/assets/i18n/fr-FR.json b/mobile/assets/i18n/fr-FR.json index 5bc611123..154643f2a 100644 --- a/mobile/assets/i18n/fr-FR.json +++ b/mobile/assets/i18n/fr-FR.json @@ -1,6 +1,6 @@ { - "action_common_cancel": "Cancel", - "action_common_update": "Update", + "action_common_cancel": "Annuler", + "action_common_update": "Mise à jour", "add_to_album_bottom_sheet_added": "Ajouté à {album}", "add_to_album_bottom_sheet_already_exists": "Déjà dans {album}", "advanced_settings_log_level_title": "Log level: {}", @@ -35,15 +35,18 @@ "app_bar_signout_dialog_title": "Se déconnecter", "archive_page_no_archived_assets": "Aucun élément archivé n'a été trouvé", "archive_page_title": "Archive ({})", - "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", - "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_action_delete_err_read_only": "Impossible de supprimer le(s) élément(s) en lecture seule.", + "asset_action_share_err_offline": "Impossible de récupérer le(s) élément(s) hors ligne.", + "asset_list_group_by_sub_title": "Groupe par", "asset_list_layout_settings_dynamic_layout_title": "Affichage dynamique", "asset_list_layout_settings_group_automatically": "Automatique", "asset_list_layout_settings_group_by": "Grouper les éléments par", "asset_list_layout_settings_group_by_month": "Mois", "asset_list_layout_settings_group_by_month_day": "Mois + jour", + "asset_list_layout_sub_title": "Disposition", "asset_list_settings_subtitle": "Paramètres de disposition de la grille de photos", "asset_list_settings_title": "Grille de photos", + "asset_viewer_settings_title": "Visualisateur d'éléments", "backup_album_selection_page_albums_device": "Albums sur l'appareil ({})", "backup_album_selection_page_albums_tap": "Tapez pour inclure, tapez deux fois pour exclure", "backup_album_selection_page_assets_scatter": "Les éléments peuvent être répartis sur plusieurs albums. De ce fait, les albums peuvent être inclus ou exclus pendant le processus de sauvegarde.", @@ -142,15 +145,15 @@ "control_bottom_app_bar_archive": "Archive", "control_bottom_app_bar_create_new_album": "Créer un nouvel album", "control_bottom_app_bar_delete": "Supprimer", - "control_bottom_app_bar_delete_from_immich": "Delete from Immich", - "control_bottom_app_bar_delete_from_local": "Delete from device", + "control_bottom_app_bar_delete_from_immich": "Supprimer de Immich", + "control_bottom_app_bar_delete_from_local": "Supprimer de l'appareil", "control_bottom_app_bar_edit_location": "Modifier la localisation", "control_bottom_app_bar_edit_time": "Modifier la date et l'heure", "control_bottom_app_bar_favorite": "Favoris", "control_bottom_app_bar_share": "Partager", "control_bottom_app_bar_share_to": "Partager à", "control_bottom_app_bar_stack": "Empiler", - "control_bottom_app_bar_trash_from_immich": "Move to Trash", + "control_bottom_app_bar_trash_from_immich": "Déplacer vers la corbeille", "control_bottom_app_bar_unarchive": "Désarchiver", "control_bottom_app_bar_unfavorite": "Enlever des favoris", "control_bottom_app_bar_upload": "Téléverser", @@ -165,27 +168,28 @@ "daily_title_text_date_year": "E, dd MMM, yyyy", "date_format": "E, LLL d, y • h:mm a", "delete_dialog_alert": "Ces éléments seront définitivement supprimés de Immich et de votre appareil.", - "delete_dialog_alert_local": "These items will be permanently removed from your device but still be available on the Immich server", - "delete_dialog_alert_local_non_backed_up": "Some of the items aren't backed up to Immich and will be permanently removed from your device", - "delete_dialog_alert_remote": "These items will be permanently deleted from the Immich server", + "delete_dialog_alert_local": "Ces éléments seront définitivement supprimés de votre appareil mais resteront disponibles sur le serveur d'Immich.", + "delete_dialog_alert_local_non_backed_up": "Certains éléments ne sont pas sauvegardés sur Immich et seront définitivement supprimés de votre appareil.", + "delete_dialog_alert_remote": "Ces éléments seront définitivement supprimés du serveur Immich.", "delete_dialog_cancel": "Annuler", "delete_dialog_ok": "Supprimer", - "delete_dialog_ok_force": "Delete Anyway", + "delete_dialog_ok_force": "Supprimer tout de même", "delete_dialog_title": "Supprimer définitivement", - "delete_local_dialog_ok_backed_up_only": "Delete Backed Up Only", - "delete_local_dialog_ok_force": "Delete Anyway", + "delete_local_dialog_ok_backed_up_only": "Suppression des données sauvegardées uniquement", + "delete_local_dialog_ok_force": "Supprimer tout de même", "delete_shared_link_dialog_content": "Êtes-vous sûr de vouloir supprimer ce lien partagé ?", "delete_shared_link_dialog_title": "Supprimer le lien partagé", "description_input_hint_text": "Ajouter une description…", "description_input_submit_error": "Erreur de mise à jour de la description, vérifier le journal pour plus de détails", - "edit_date_time_dialog_date_time": "Date and Time", - "edit_date_time_dialog_timezone": "Timezone", - "edit_location_dialog_title": "Location", + "edit_date_time_dialog_date_time": "Date et heure", + "edit_date_time_dialog_timezone": "Fuseau horaire", + "edit_location_dialog_title": "Localisation", "exif_bottom_sheet_description": "Ajouter une description…", "exif_bottom_sheet_details": "DÉTAILS", "exif_bottom_sheet_location": "LOCALISATION", "exif_bottom_sheet_location_add": "Add a location", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "PERSONNES", + "exif_bottom_sheet_person_add_person": "Ajouter un nom", "experimental_settings_new_asset_list_subtitle": "En cours de développement", "experimental_settings_new_asset_list_title": "Activer la grille de photos expérimentale", "experimental_settings_subtitle": "Utilisez à vos dépends !", @@ -195,14 +199,14 @@ "home_page_add_to_album_conflicts": "{added} éléments ajoutés à l'album {album}. Les éléments {failed} sont déjà dans l'album.", "home_page_add_to_album_err_local": "Impossible d'ajouter des éléments locaux aux albums pour le moment, étape ignorée", "home_page_add_to_album_success": "{added} éléments ajoutés à l'album {album}.", - "home_page_album_err_partner": "Impossible d'ajouter les médias de partenaire à un album pour le moment, cette opération est donc ignorée.", + "home_page_album_err_partner": "Il n'est pas encore possible d'ajouter des éléments d'un partenaire à un album.", "home_page_archive_err_local": "Impossible d'archiver les ressources locales pour l'instant, étape ignorée", - "home_page_archive_err_partner": "Impossible d'archiver les médias de partenaire à un album pour le moment, cette opération est donc ignorée.", + "home_page_archive_err_partner": "Impossible d'archiver les éléments d'un partenaire.", "home_page_building_timeline": "Construction de la chronologie", - "home_page_delete_err_partner": "Impossible de supprimer les médias de partenaire à un album pour le moment, cette opération est donc ignorée.", - "home_page_delete_remote_err_local": "Local assets in delete remote selection, skipping", + "home_page_delete_err_partner": "Ne peut pas supprimer les éléments d'un partenaire.", + "home_page_delete_remote_err_local": "Des éléments locaux sont dans la sélection de suppression à distance, ils sont donc ignorés.", "home_page_favorite_err_local": "Impossible d'ajouter les médias locaux aux favoris pour le moment, cette opération est donc ignorée.", - "home_page_favorite_err_partner": "Impossible de marquer comme favoris les médias de partenaires pour le moment, cette opération est donc ignorée.", + "home_page_favorite_err_partner": "Il n'est pas encore possible de mettre en favori les éléments d'un partenaire.", "home_page_first_time_notice": "Si c'est la première fois que vous utilisez l'application, veillez à choisir un ou plusieurs albums de sauvegarde afin que la chronologie puisse alimenter les photos et les vidéos de cet ou ces albums.", "home_page_share_err_local": "Impossible de partager par lien les médias locaux, cette opération est donc ignorée.", "home_page_upload_err_limit": "Limite de téléchargement de 30 éléments en même temps, demande ignorée", @@ -276,12 +280,16 @@ "map_settings_include_show_archived": "Inclure les archives", "map_settings_only_relative_range": "Plage de dates", "map_settings_only_show_favorites": "Afficher uniquement les favoris", - "map_settings_theme_settings": "Map Theme", + "map_settings_theme_settings": "Thème de la carte", "map_zoom_to_see_photos": "Dézoomer pour voir les photos", + "memories_all_caught_up": "Vous avez tout vu", + "memories_check_back_tomorrow": "Revenez demain pour d'autres souvenirs", + "memories_start_over": "Recommencer", + "memories_swipe_to_close": "Balayez vers le haut pour fermer", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Photos avec mouvement", - "multiselect_grid_edit_date_time_err_read_only": "Impossible de modifier l'emplacement de médias en lecture seule, la modification est donc ignorée.", - "multiselect_grid_edit_gps_err_read_only": "Impossible de modifier l'emplacement de médias en lecture seule, la modification est donc ignorée.", + "multiselect_grid_edit_date_time_err_read_only": "Impossible de modifier la date d'un élément d'actif en lecture seule.", + "multiselect_grid_edit_gps_err_read_only": "Impossible de modifier l'emplacement d'un élément en lecture seule.", "notification_permission_dialog_cancel": "Annuler", "notification_permission_dialog_content": "Pour activer les notifications, allez dans Paramètres et sélectionnez Autoriser.", "notification_permission_dialog_settings": "Paramètres", @@ -297,7 +305,7 @@ "partner_page_stop_sharing_content": "{} ne pourra plus accéder à vos photos.", "partner_page_stop_sharing_title": "Arrêter de partager vos photos ?", "partner_page_title": "Partenaire", - "permission_onboarding_back": "Back", + "permission_onboarding_back": "Retour", "permission_onboarding_continue_anyway": "Continuer quand même", "permission_onboarding_get_started": "Commencer", "permission_onboarding_go_to_settings": "Accéder aux paramètres", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission accordée ! Vous êtes prêts.", "permission_onboarding_permission_limited": "Permission limitée. Pour permettre à Immich de sauvegarder et de gérer l'ensemble de votre bibliothèque, accordez l'autorisation pour les photos et vidéos dans les Paramètres.", "permission_onboarding_request": "Immich demande l'autorisation de visionner vos photos et vidéo", + "preferences_settings_title": "Préférences", "profile_drawer_app_logs": "Journaux", "profile_drawer_client_out_of_date_major": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version majeure.", "profile_drawer_client_out_of_date_minor": "L'application mobile est obsolète. Veuillez effectuer la mise à jour vers la dernière version mineure.", @@ -414,8 +423,8 @@ "shared_link_edit_show_meta": "Afficher les métadonnées", "shared_link_edit_submit_button": "Mettre à jour le lien", "shared_link_empty": "Vous n'avez pas de liens partagés", - "shared_link_error_server_url_fetch": "Cannot fetch the server url", - "shared_link_expired": "Expired", + "shared_link_error_server_url_fetch": "Impossible de récupérer l'url du serveur", + "shared_link_expired": "Expiré", "shared_link_expires_day": "Expire dans {} jour", "shared_link_expires_days": "Expire dans {} jours", "shared_link_expires_hour": "Expire dans {} heure", diff --git a/mobile/assets/i18n/hi-IN.json b/mobile/assets/i18n/hi-IN.json index 24763bd4f..40e361a3d 100644 --- a/mobile/assets/i18n/hi-IN.json +++ b/mobile/assets/i18n/hi-IN.json @@ -37,13 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albums on device ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOCATION", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/hu-HU.json b/mobile/assets/i18n/hu-HU.json index 2d18c4b6a..544c02948 100644 --- a/mobile/assets/i18n/hu-HU.json +++ b/mobile/assets/i18n/hu-HU.json @@ -37,13 +37,16 @@ "archive_page_title": "Archívum ({})", "asset_action_delete_err_read_only": "Nem sikerült törölni a csak-olvasható elem(ek)et, így ezeket átugorjuk", "asset_action_share_err_offline": "Nem sikerült betölteni az offline elem(ek)et, így ezeket kihagyjuk", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dinamikus elrendezés", "asset_list_layout_settings_group_automatically": "Automatikus", "asset_list_layout_settings_group_by": "Elemek csoportosítása", "asset_list_layout_settings_group_by_month": "hónapok szerint", "asset_list_layout_settings_group_by_month_day": "hónap és nap szerint", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Fotórács elrendezése", "asset_list_settings_title": "Fotórács", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Ezen az eszközön lévő albumok ({})", "backup_album_selection_page_albums_tap": "Koppincs a hozzáadáshoz, duplán koppincs az eltávolításhoz", "backup_album_selection_page_assets_scatter": "Egy elem több albumban is lehet. Ezért a mentéshez albumokat lehet hozzáadni vagy azokat a mentésből kihagyni.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "HELYSZÍN", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Fejlesztés alatt", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Csak saját felelősségre használd", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Mozgó Fotók", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Hozzáférés engedélyezve! Minden készen áll.", "permission_onboarding_permission_limited": "Korlátozott hozzáférés. Ha szeretnéd, hogy az Immich a teljes galéria gyűjteményedet mentse és kezelje, akkor a Beállításokban engedélyezd a fotó és videó jogosultságokat.", "permission_onboarding_request": "Engedélyezni kell, hogy az Immich hozzáférjen a képekhez és videókhoz", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Naplók", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/it-IT.json b/mobile/assets/i18n/it-IT.json index 0d109f6d1..a434db980 100644 --- a/mobile/assets/i18n/it-IT.json +++ b/mobile/assets/i18n/it-IT.json @@ -9,7 +9,7 @@ "advanced_settings_self_signed_ssl_subtitle": "Salta la verifica dei certificati SSL del server. Richiesto con l'uso di certificati self-signed.", "advanced_settings_self_signed_ssl_title": "Consenti certificati SSL self-signed", "advanced_settings_tile_subtitle": "Impostazioni aggiuntive utenti", - "advanced_settings_tile_title": "Avanzato", + "advanced_settings_tile_title": "Avanzate", "advanced_settings_troubleshooting_subtitle": "Attiva funzioni addizionali per la risoluzione dei problemi", "advanced_settings_troubleshooting_title": "Risoluzione problemi", "album_info_card_backup_album_excluded": "ESCLUSI", @@ -36,14 +36,17 @@ "archive_page_no_archived_assets": "Nessuna oggetto archiviato", "archive_page_title": "Archivia ({})", "asset_action_delete_err_read_only": "Non posso eliminare degli elementi in sola lettura, ignorato", - "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_action_share_err_offline": "Non è possibile recuperare le risorse offline, ignoro", + "asset_list_group_by_sub_title": "Raggruppa per", "asset_list_layout_settings_dynamic_layout_title": "Layout dinamico", "asset_list_layout_settings_group_automatically": "Automatico", "asset_list_layout_settings_group_by": "Raggruppa le immagini per", "asset_list_layout_settings_group_by_month": "Mese", "asset_list_layout_settings_group_by_month_day": "Mese + giorno", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Impostazion del layout della griglia delle foto", "asset_list_settings_title": "Griglia foto", + "asset_viewer_settings_title": "Visualizzazione risorse", "backup_album_selection_page_albums_device": "Album sul dispositivo ({})", "backup_album_selection_page_albums_tap": "Tap per includere, doppio tap per escludere.", "backup_album_selection_page_assets_scatter": "Stesse immagini e video possono trovarsi tra più album, così gli album possono essere inclusi o esclusi dal backup.", @@ -147,13 +150,13 @@ "control_bottom_app_bar_edit_location": "Modifica posizione", "control_bottom_app_bar_edit_time": "Modifica data e ora", "control_bottom_app_bar_favorite": "Preferiti", - "control_bottom_app_bar_share": "Condividi", - "control_bottom_app_bar_share_to": "Share To", + "control_bottom_app_bar_share": "Condivisione", + "control_bottom_app_bar_share_to": "Condividi a", "control_bottom_app_bar_stack": "Stack", "control_bottom_app_bar_trash_from_immich": "Sposta nel cestino", "control_bottom_app_bar_unarchive": "Rimuovi dagli archivi", - "control_bottom_app_bar_unfavorite": "Unfavorite", - "control_bottom_app_bar_upload": "Upload", + "control_bottom_app_bar_unfavorite": "Rimuovi preferito", + "control_bottom_app_bar_upload": "Carica", "create_album_page_untitled": "Senza titolo", "create_shared_album_page_create": "Crea", "create_shared_album_page_share": "Condividi", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "DETTAGLI", "exif_bottom_sheet_location": "POSIZIONE", "exif_bottom_sheet_location_add": "Aggiungi una posizione", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "PERSONE", + "exif_bottom_sheet_person_add_person": "Aggiungi nome", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Attiva griglia di foto sperimentale", "experimental_settings_subtitle": "Usalo a tuo rischio!", @@ -208,7 +212,7 @@ "home_page_upload_err_limit": "Puoi caricare al massimo 30 file per volta, ignora quelli in eccesso", "image_viewer_page_state_provider_download_error": "Errore nel Download", "image_viewer_page_state_provider_download_success": "Download con successo", - "image_viewer_page_state_provider_share_error": "Share Error", + "image_viewer_page_state_provider_share_error": "Errore di condivisione", "library_page_albums": "Album", "library_page_archive": "Archivia", "library_page_device_albums": "Album sul dispositivo", @@ -216,7 +220,7 @@ "library_page_new_album": "Nuovo Album", "library_page_sharing": "Condividendo", "library_page_sort_asset_count": "Numero di elementi", - "library_page_sort_created": "Creato il più recente", + "library_page_sort_created": "Data di creazione", "library_page_sort_last_modified": "Ultima modifica", "library_page_sort_most_oldest_photo": "Foto più vecchia", "library_page_sort_most_recent_photo": "Più recente", @@ -265,19 +269,23 @@ "map_no_location_permission_content": "L'accesso alla posizione è necessario per visualizzare gli elementi per la tua posizione attuale. Vuoi consentirlo adesso?", "map_no_location_permission_title": "Location Permission denied", "map_settings_dark_mode": "Modalità scura", - "map_settings_date_range_option_all": "All", + "map_settings_date_range_option_all": "Tutto", "map_settings_date_range_option_day": "Ultime 24 ore", "map_settings_date_range_option_days": "Ultimi {} giorni", "map_settings_date_range_option_year": "Ultimo anno", "map_settings_date_range_option_years": "Ultimi {} anni", - "map_settings_dialog_cancel": "Cancel", + "map_settings_dialog_cancel": "Annulla", "map_settings_dialog_save": "Salva", - "map_settings_dialog_title": "Map Settings", - "map_settings_include_show_archived": "Include Archived", - "map_settings_only_relative_range": "Date range", - "map_settings_only_show_favorites": "Show Favorite Only", + "map_settings_dialog_title": "Impostazioni Mappa", + "map_settings_include_show_archived": "Includi Archiviati", + "map_settings_only_relative_range": "Intervallo date", + "map_settings_only_show_favorites": "Mostra solo preferiti", "map_settings_theme_settings": "Tema della mappa", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Torna domani per altri ricordi", + "memories_start_over": "Ricomincia", + "memories_swipe_to_close": "Scorri sopra per chiudere", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Foto", "multiselect_grid_edit_date_time_err_read_only": "Non posso modificare la data degli elementi in sola lettura, ignorato", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Concessi i permessi! Ora sei tutto apposto", "permission_onboarding_permission_limited": "Permessi limitati. Perché Immich possa controllare e fare i backup di tutte le foto, concedere i permessi all'intera galleria dalle impostazioni ", "permission_onboarding_request": "Immich richiede i permessi per vedere le tue foto e video", + "preferences_settings_title": "Preferenze", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione principale.", "profile_drawer_client_out_of_date_minor": "L'applicazione non è aggiornata. Per favore aggiorna all'ultima versione minore.", @@ -317,7 +326,7 @@ "profile_drawer_server_out_of_date_minor": "Il server non è aggiornato. Per favore aggiorna all'ultima versione minore.", "profile_drawer_settings": "Impostazioni ", "profile_drawer_sign_out": "Logout", - "profile_drawer_trash": "Trash", + "profile_drawer_trash": "Cestino", "recently_added_page_title": "Aggiunti di recente", "scaffold_body_error_occurred": "Si è verificato un errore.", "search_bar_hint": "Cerca le tue foto", @@ -357,7 +366,7 @@ "setting_image_viewer_original_subtitle": "Abilita per caricare l'immagine originale a risoluzione massima (grande!). Disabilita per ridurre l'utilizzo di banda (sia sul network che nella cache del dispositivo).", "setting_image_viewer_original_title": "Carica l'immagine originale", "setting_image_viewer_preview_subtitle": "Abilita per caricare un'immagine a risoluzione media.\nDisabilita per caricare direttamente l'immagine originale o usare la thumbnail.", - "setting_image_viewer_preview_title": "Carica immagine di preview", + "setting_image_viewer_preview_title": "Carica immagine di anteprima", "setting_notifications_notify_failures_grace_period": "Notifica caricamenti falliti in background: {}", "setting_notifications_notify_hours": "{} ore", "setting_notifications_notify_immediately": "immediatamente", @@ -377,10 +386,10 @@ "share_add_title": "Aggiungi un titolo ", "share_create_album": "Crea album", "shared_album_activities_input_disable": "I commenti sono disabilitati", - "shared_album_activities_input_hint": "Say something", + "shared_album_activities_input_hint": "Dici qualcosa", "shared_album_activity_remove_content": "Vuoi eliminare questa attività?", "shared_album_activity_remove_title": "Elimina attività", - "shared_album_activity_setting_subtitle": "Let others respond", + "shared_album_activity_setting_subtitle": "Permetti agli altri di rispondere", "shared_album_activity_setting_title": "Commenti e Mi piace", "shared_album_section_people_action_error": "Errore durante la rimozione/uscita dell'album", "shared_album_section_people_action_leave": "Rimuovi utente dall'album", @@ -414,7 +423,7 @@ "shared_link_edit_show_meta": "Visualizza metadati", "shared_link_edit_submit_button": "Aggiorna link", "shared_link_empty": "Non hai alcun link condiviso", - "shared_link_error_server_url_fetch": "Cannot fetch the server url", + "shared_link_error_server_url_fetch": "Non è possibile trovare l'indirizzo del server", "shared_link_expired": "Scaduto", "shared_link_expires_day": "Scade tra {} giorno", "shared_link_expires_days": "Scade tra {} giorni", @@ -429,18 +438,18 @@ "shared_link_info_chip_metadata": "EXIF", "shared_link_info_chip_upload": "Carica", "shared_link_manage_links": "Gestisci link condivisi", - "share_done": "Done", + "share_done": "Fatto", "share_invite": "Invita nell'album ", "sharing_page_album": "Album condivisi", "sharing_page_description": "Crea un album condiviso per condividere foto e video con persone sul tuo network", "sharing_page_empty_list": "LISTA VUOTA", "sharing_silver_appbar_create_shared_album": "Crea album condiviso", "sharing_silver_appbar_shared_links": "Link condivisi", - "sharing_silver_appbar_share_partner": "Condividi con il partner", + "sharing_silver_appbar_share_partner": "Condividi con partner", "tab_controller_nav_library": "Libreria", "tab_controller_nav_photos": "Foto", "tab_controller_nav_search": "Cerca", - "tab_controller_nav_sharing": "Condividi", + "tab_controller_nav_sharing": "Condivisione", "theme_setting_asset_list_storage_indicator_title": "Mostra indicatore dello storage nei titoli dei contenuti", "theme_setting_asset_list_tiles_per_row_title": "Numero di contenuti per riga ({})", "theme_setting_dark_mode_switch": "Dark mode", @@ -463,7 +472,7 @@ "trash_page_restore_all": "Ripristina tutto", "trash_page_select_assets_btn": "Seleziona elemento", "trash_page_select_btn": "Seleziona", - "trash_page_title": "Trash ({})", + "trash_page_title": "Cestino ({})", "upload_dialog_cancel": "Cancella", "upload_dialog_info": "Vuoi fare il backup sul server di ciò che hai selezionato?", "upload_dialog_ok": "Carica", diff --git a/mobile/assets/i18n/ja-JP.json b/mobile/assets/i18n/ja-JP.json index b4b686c74..f3e4b917e 100644 --- a/mobile/assets/i18n/ja-JP.json +++ b/mobile/assets/i18n/ja-JP.json @@ -37,13 +37,16 @@ "archive_page_title": "アーカイブ({})", "asset_action_delete_err_read_only": "読み取り専用の項目は削除できません。スキップします", "asset_action_share_err_offline": "オフラインの項目をゲットできません。スキップします", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "ダイナミックレイアウト", "asset_list_layout_settings_group_automatically": "自動", "asset_list_layout_settings_group_by": "写真のグループ分け", "asset_list_layout_settings_group_by_month": "月", "asset_list_layout_settings_group_by_month_day": "月 + 日", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "グリッドに関する設定", "asset_list_settings_title": "グリッド", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "端末上のアルバム数: {} ", "backup_album_selection_page_albums_tap": "タップで選択、ダブルタップで除外", "backup_album_selection_page_assets_scatter": "同じ写真が複数のアルバムに登録されていることがあるので、アルバムを選択・除外してバックアップする写真を選べます。", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "撮影場所", "exif_bottom_sheet_location_add": "位置情報を追加", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "製作途中(WIP)", "experimental_settings_new_asset_list_title": "試験的なグリッドを有効化", "experimental_settings_subtitle": "試験的機能につき自己責任で!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "お気に入りのみを表示", "map_settings_theme_settings": "マップの見た目", "map_zoom_to_see_photos": "写真を見るにはズームアウト", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "yyyy年 MM月", "motion_photos_page_title": "モーションフォト", "multiselect_grid_edit_date_time_err_read_only": "読み取り専用の項目の日付を変更できません", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "写真へのアクセスが許可されました", "permission_onboarding_permission_limited": "写真へのアクセスが制限されています。Immichに写真のバックアップと管理を行わせるにはシステム設定から写真と動画のアクセス権限を変更してください。", "permission_onboarding_request": "Immichは写真へのアクセス許可が必要です", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "ログ", "profile_drawer_client_out_of_date_major": "アプリが更新されてません。最新のバージョンに更新してください", "profile_drawer_client_out_of_date_minor": "アプリが更新されてません。最新のマイナーバージョンに更新してください", diff --git a/mobile/assets/i18n/ko-KR.json b/mobile/assets/i18n/ko-KR.json index 257a7ea9a..c76e1af22 100644 --- a/mobile/assets/i18n/ko-KR.json +++ b/mobile/assets/i18n/ko-KR.json @@ -37,13 +37,16 @@ "archive_page_title": "보관 ({})", "asset_action_delete_err_read_only": "읽기 전용 미디어를 삭제할 수 없어 건너뜁니다", "asset_action_share_err_offline": "오프라인 미디어를 가져올 수 없어 건너뜁니다", + "asset_list_group_by_sub_title": "그룹화 기준", "asset_list_layout_settings_dynamic_layout_title": "다이나믹 레이아웃", "asset_list_layout_settings_group_automatically": "자동", "asset_list_layout_settings_group_by": "다음으로 미디어 그룹화", "asset_list_layout_settings_group_by_month": "월", "asset_list_layout_settings_group_by_month_day": "월 + 일", + "asset_list_layout_sub_title": "레이아웃", "asset_list_settings_subtitle": "사진 배열 레이아웃 설정", "asset_list_settings_title": "사진 배열", + "asset_viewer_settings_title": "미디어 뷰어", "backup_album_selection_page_albums_device": "기기의 앨범({})", "backup_album_selection_page_albums_tap": "포함하려면 탭하고 제외하려면 두 번 탭하세요", "backup_album_selection_page_assets_scatter": "미디어파일은 여러 앨범에 분산될 수 있습니다. 따라서 백업 프로세스 중에 앨범에서 포함하거나 제외할 수 있습니다.", @@ -113,7 +116,7 @@ "cache_settings_clear_cache_button_title": "앱의 캐시를 지웁니다. 이 작업은 캐시가 다시 빌드될 때까지 앱의 성능에 상당한 영향을 미칩니다.", "cache_settings_duplicated_assets_clear_button": "클리어", "cache_settings_duplicated_assets_subtitle": "앱에서 블랙리스트에 오른 사진 및 동영상", - "cache_settings_duplicated_assets_title": "중복된 자산 ({})", + "cache_settings_duplicated_assets_title": "중복된 미디어 ({})", "cache_settings_image_cache_size": "이미재 캐시 크기 ({} 미디어)", "cache_settings_statistics_album": "라이브러리 썸네일", "cache_settings_statistics_assets": "{} 미디어 ({})", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "상세정보", "exif_bottom_sheet_location": "위치", "exif_bottom_sheet_location_add": "위치 지정", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "사람들", + "exif_bottom_sheet_person_add_person": "이름 추가", "experimental_settings_new_asset_list_subtitle": "진행중", "experimental_settings_new_asset_list_title": "실험적 사진 그리드 적용", "experimental_settings_subtitle": "문제시 책임지지 않습니다!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "즐겨찾기에만 표시", "map_settings_theme_settings": "지도 테마", "map_zoom_to_see_photos": "축소하여 사진 보기", + "memories_all_caught_up": "모두 따라잡기", + "memories_check_back_tomorrow": "더 많은 추억을 위해 내일 다시 확인하세요.", + "memories_start_over": "다시 시작", + "memories_swipe_to_close": "위로 스와이프하여 닫기", "monthly_title_text_date_format": "y년 M월", "motion_photos_page_title": "모션 사진", "multiselect_grid_edit_date_time_err_read_only": "읽기 전용 미디어의 날짜를 편집할 수 없어 건너뜁니다", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "승인되었습니다! 모든 준비가 완료되었습니다", "permission_onboarding_permission_limited": "권한 제한. Immich가 전체 갤러리 컬렉션을 백업하고 관리하도록 하려면 설정에서 사진 및 동영상 권한을 부여하세요", "permission_onboarding_request": "Immich는 사진과 동영상을 볼 수 있는 권한을 요구합니다", + "preferences_settings_title": "기본 설정", "profile_drawer_app_logs": "로그", "profile_drawer_client_out_of_date_major": "모바일 앱이 오래되었습니다. 최신 메이져 버전으로 업데이트하세요.", "profile_drawer_client_out_of_date_minor": "모바일 앱이 구 버전입니다. 최신 마이너 버전으로 업데이트하세요", diff --git a/mobile/assets/i18n/lv-LV.json b/mobile/assets/i18n/lv-LV.json index 76b8e07d2..ebb6ad837 100644 --- a/mobile/assets/i18n/lv-LV.json +++ b/mobile/assets/i18n/lv-LV.json @@ -37,13 +37,16 @@ "archive_page_title": "Arhīvs ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dinamiskais izkārtojums", "asset_list_layout_settings_group_automatically": "Automātiski", "asset_list_layout_settings_group_by": "Grupēt aktīvus pēc", "asset_list_layout_settings_group_by_month": "Mēnesis", "asset_list_layout_settings_group_by_month_day": "Mēnesis + diena", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Fotorežģa izkārtojuma iestatījumi", "asset_list_settings_title": "Fotorežģis", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albumi ierīcē ({})", "backup_album_selection_page_albums_tap": "Pieskarieties, lai iekļautu, veiciet dubultskārienu, lai izslēgtu", "backup_album_selection_page_assets_scatter": "Aktīvi var būt izmētāti pa vairākiem albumiem. Tādējādi dublēšanas procesā albumus var iekļaut vai neiekļaut.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "ATRAŠANĀS VIETA", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Izstrādes posmā", "experimental_settings_new_asset_list_title": "Iespējot eksperimentālo fotorežģi", "experimental_settings_subtitle": "Izmanto uzņemoties risku!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM g", "motion_photos_page_title": "Kustību Fotoattēli", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Atļauja piešķirta! Jūs esat gatavi darbam.", "permission_onboarding_permission_limited": "Atļauja ierobežota. Lai atļautu Immich dublēšanu un varētu pārvaldīt visu galeriju kolekciju, sadaļā Iestatījumi piešķiriet fotoattēlu un video atļaujas.", "permission_onboarding_request": "Immich nepieciešama atļauja skatīt jūsu fotoattēlus un videoklipus.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Žurnāli", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/mn.json b/mobile/assets/i18n/mn.json index 584be40aa..59550501a 100644 --- a/mobile/assets/i18n/mn.json +++ b/mobile/assets/i18n/mn.json @@ -37,13 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albums on device ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOCATION", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/nb-NO.json b/mobile/assets/i18n/nb-NO.json index f2306e094..fffaf6eb7 100644 --- a/mobile/assets/i18n/nb-NO.json +++ b/mobile/assets/i18n/nb-NO.json @@ -37,13 +37,16 @@ "archive_page_title": "Arkiv ({})", "asset_action_delete_err_read_only": "Kan ikke slette objekt(er) med kun lese-rettighet, hopper over", "asset_action_share_err_offline": "Kan ikke hente offline objekt(er), hopper over", + "asset_list_group_by_sub_title": "Grupper etter", "asset_list_layout_settings_dynamic_layout_title": "Dynamisk bildeorganisering", "asset_list_layout_settings_group_automatically": "Automatisk", "asset_list_layout_settings_group_by": "Grupper bilder etter", "asset_list_layout_settings_group_by_month": "Måned", "asset_list_layout_settings_group_by_month_day": "Måned + dag", + "asset_list_layout_sub_title": "Fordeling", "asset_list_settings_subtitle": "Innstillinger for layout av fotorutenett", "asset_list_settings_title": "Fotorutenett", + "asset_viewer_settings_title": "Objektviser", "backup_album_selection_page_albums_device": "Album på enhet ({})", "backup_album_selection_page_albums_tap": "Trykk for å inkludere, dobbelttrykk for å ekskludere", "backup_album_selection_page_assets_scatter": "Objekter kan bli spredd over flere album. Album kan derfor bli inkludert eller ekskludert under sikkerhetskopieringen.", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "DETALJER", "exif_bottom_sheet_location": "PLASSERING", "exif_bottom_sheet_location_add": "Legg til lokasjon", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "MENNESKER", + "exif_bottom_sheet_person_add_person": "Legg til navn", "experimental_settings_new_asset_list_subtitle": "Under utvikling", "experimental_settings_new_asset_list_title": "Aktiver eksperimentell rutenettsvisning", "experimental_settings_subtitle": "Bruk på egen risiko!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Vis kun favoritter", "map_settings_theme_settings": "Karttema", "map_zoom_to_see_photos": "Zoom ut for å se bilder", + "memories_all_caught_up": "Alt utført", + "memories_check_back_tomorrow": "Sjekk igjen i morgen for flere minner", + "memories_start_over": "Start på nytt", + "memories_swipe_to_close": "Swipe opp for å lukke", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Bevegelige bilder", "multiselect_grid_edit_date_time_err_read_only": "Kan ikke endre dato på objekt(er) med kun lese-rettigheter, hopper over", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Tilgang gitt! Du er i gang.", "permission_onboarding_permission_limited": "Begrenset tilgang. For å la Immich sikkerhetskopiere og håndtere galleriet, tillatt bilde- og video-tilgang i Innstillinger.", "permission_onboarding_request": "Immich trenger tilgang til å se dine bilder og videoer", + "preferences_settings_title": "Innstillinger", "profile_drawer_app_logs": "Logg", "profile_drawer_client_out_of_date_major": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.", "profile_drawer_client_out_of_date_minor": "Mobilapp er utdatert. Vennligst oppdater til nyeste versjon.", diff --git a/mobile/assets/i18n/nl-NL.json b/mobile/assets/i18n/nl-NL.json index df505269a..defcf3968 100644 --- a/mobile/assets/i18n/nl-NL.json +++ b/mobile/assets/i18n/nl-NL.json @@ -28,7 +28,7 @@ "album_viewer_appbar_share_remove": "Verwijder uit album", "album_viewer_appbar_share_to": "Delen met", "album_viewer_page_share_add_users": "Gebruikers toevoegen", - "all_people_page_title": "Personen", + "all_people_page_title": "Mensen", "all_videos_page_title": "Video's", "app_bar_signout_dialog_content": "Weet je zeker dat je wilt uitloggen?", "app_bar_signout_dialog_ok": "Ja", @@ -37,13 +37,16 @@ "archive_page_title": "Archief ({})", "asset_action_delete_err_read_only": "Kan alleen-lezen asset(s) niet verwijderen, overslaan", "asset_action_share_err_offline": "Kan offline asset(s) niet ophalen, overslaan", + "asset_list_group_by_sub_title": "Groupeer op", "asset_list_layout_settings_dynamic_layout_title": "Dynamische layout", "asset_list_layout_settings_group_automatically": "Automatisch", "asset_list_layout_settings_group_by": "Groupeer assets per", "asset_list_layout_settings_group_by_month": "Maand", "asset_list_layout_settings_group_by_month_day": "Maand + dag", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Fotorasterlayoutinstellingen", "asset_list_settings_title": "Fotoraster", + "asset_viewer_settings_title": "Foto weergave", "backup_album_selection_page_albums_device": "Albums op apparaat ({})", "backup_album_selection_page_albums_tap": "Tik om in te voegen, dubbel tik om uit te sluiten", "backup_album_selection_page_assets_scatter": "Assets kunnen over verschillende albums verdeeld zijn, dus albums kunnen ingesloten of uitgesloten zijn van het backup proces.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOCATIE", "exif_bottom_sheet_location_add": "Locatie toevoegen", "exif_bottom_sheet_people": "MENSEN", + "exif_bottom_sheet_person_add_person": "Naam toevoegen", "experimental_settings_new_asset_list_subtitle": "Werk in uitvoering", "experimental_settings_new_asset_list_title": "Experimenteel fotoraster inschakelen", "experimental_settings_subtitle": "Gebruik op eigen risico!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Toon enkel favorieten", "map_settings_theme_settings": "Kaart thema", "map_zoom_to_see_photos": "Zoom uit om foto's te zien", + "memories_all_caught_up": "Je bent helemaal bij", + "memories_check_back_tomorrow": "Kom morgen terug voor meer herinneringen", + "memories_start_over": "Opnieuw beginnen", + "memories_swipe_to_close": "Swipe omhoog om te sluiten", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Bewegende foto's", "multiselect_grid_edit_date_time_err_read_only": "Kan datum van alleen-lezen asset(s) niet wijzigen, overslaan", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Toestemming verleend. Je bent helemaal klaar.", "permission_onboarding_permission_limited": "Beperkte toestemming. Geef toestemming tot foto's en video's in Instellingen om Immich een back-up te laten maken van je galerij en deze te beheren.", "permission_onboarding_request": "Immich heeft toestemming nodig om je foto's en video's te bekijken.", + "preferences_settings_title": "Voorkeuren", "profile_drawer_app_logs": "Logboek", "profile_drawer_client_out_of_date_major": "Mobiele app is verouderd. Werk bij naar de nieuwste hoofdversie.", "profile_drawer_client_out_of_date_minor": "Mobiele app is verouderd. Werk bij naar de nieuwste subversie.", @@ -326,7 +335,7 @@ "search_page_motion_photos": "Bewegende foto's", "search_page_no_objects": "Geen objectgegevens beschikbaar", "search_page_no_places": "Geen locatiegegevens beschikbaar", - "search_page_people": "Personen", + "search_page_people": "Mensen", "search_page_person_add_name_dialog_cancel": "Annuleren", "search_page_person_add_name_dialog_hint": "Naam", "search_page_person_add_name_dialog_save": "Opslaan", diff --git a/mobile/assets/i18n/pl-PL.json b/mobile/assets/i18n/pl-PL.json index 555e4dfba..86406d436 100644 --- a/mobile/assets/i18n/pl-PL.json +++ b/mobile/assets/i18n/pl-PL.json @@ -37,13 +37,16 @@ "archive_page_title": "Archiwum ({})", "asset_action_delete_err_read_only": "Nie można usunąć zasobów tylko do odczytu, pomijam", "asset_action_share_err_offline": "Nie można pobrać zasobów offline, pomijam", + "asset_list_group_by_sub_title": "Grupuj według", "asset_list_layout_settings_dynamic_layout_title": "Układ dynamiczny", "asset_list_layout_settings_group_automatically": "Automatyczny", "asset_list_layout_settings_group_by": "Grupuj zasoby według", "asset_list_layout_settings_group_by_month": "Miesiąc", "asset_list_layout_settings_group_by_month_day": "Miesiąc + dzień", + "asset_list_layout_sub_title": "Układ", "asset_list_settings_subtitle": "Ustawienia układu siatki zdjęć", "asset_list_settings_title": "Siatka Zdjęć", + "asset_viewer_settings_title": "Przeglądarka zasobów", "backup_album_selection_page_albums_device": "Albumy na urządzeniu ({})", "backup_album_selection_page_albums_tap": "Stuknij, aby włączyć, stuknij dwukrotnie, aby wykluczyć", "backup_album_selection_page_assets_scatter": "Pliki mogą być rozproszone w wielu albumach. Dzięki temu albumy mogą być włączane lub wyłączane podczas procesu tworzenia kopii zapasowej.", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "SZCZEGÓŁY", "exif_bottom_sheet_location": "LOKALIZACJA", "exif_bottom_sheet_location_add": "Dodaj lokalizację", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "LUDZIE", + "exif_bottom_sheet_person_add_person": "Dodaj nazwę", "experimental_settings_new_asset_list_subtitle": "Praca w toku", "experimental_settings_new_asset_list_title": "Włącz eksperymentalną układ zdjęć", "experimental_settings_subtitle": "Używaj na własne ryzyko!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Pokaż tylko ulubione", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Pomniejsz, aby zobaczyć zdjęcia", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Zdjęcia ruchome", "multiselect_grid_edit_date_time_err_read_only": "Nie można edytować daty zasobów tylko do odczytu, pomijanie", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Pozwolenie udzielone! Wszystko gotowe.", "permission_onboarding_permission_limited": "Pozwolenie ograniczone. Aby umożliwić Immichowi tworzenie kopii zapasowych całej kolekcji galerii i zarządzanie nią, przyznaj uprawnienia do zdjęć i filmów w Ustawieniach.", "permission_onboarding_request": "Immich potrzebuje pozwolenia na przeglądanie Twoich zdjęć i filmów.", + "preferences_settings_title": "Ustawienia", "profile_drawer_app_logs": "Logi", "profile_drawer_client_out_of_date_major": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji głównej.", "profile_drawer_client_out_of_date_minor": "Aplikacja mobilna jest nieaktualna. Zaktualizuj do najnowszej wersji dodatkowej.", diff --git a/mobile/assets/i18n/pt-PT.json b/mobile/assets/i18n/pt-PT.json index 67fdc1059..9210654fc 100644 --- a/mobile/assets/i18n/pt-PT.json +++ b/mobile/assets/i18n/pt-PT.json @@ -3,22 +3,22 @@ "action_common_update": "Atualizar", "add_to_album_bottom_sheet_added": "Adicionar a {album}", "add_to_album_bottom_sheet_already_exists": "Já pertence a {album}", - "advanced_settings_log_level_title": "Log level: {}", - "advanced_settings_prefer_remote_subtitle": "Some devices are painfully slow to load thumbnails from assets on the device. Activate this setting to load remote images instead.", - "advanced_settings_prefer_remote_title": "Prefer remote images", - "advanced_settings_self_signed_ssl_subtitle": "Skips SSL certificate verification for the server endpoint. Required for self-signed certificates.", - "advanced_settings_self_signed_ssl_title": "Allow self-signed SSL certificates", - "advanced_settings_tile_subtitle": "Advanced user's settings", - "advanced_settings_tile_title": "Advanced", - "advanced_settings_troubleshooting_subtitle": "Enable additional features for troubleshooting", - "advanced_settings_troubleshooting_title": "Troubleshooting", + "advanced_settings_log_level_title": "Nível de log: {}", + "advanced_settings_prefer_remote_subtitle": "Alguns dispositivos são extremamente lentos a carregar miniaturas da memória. Ative esta opção para preferir imagens remotas.", + "advanced_settings_prefer_remote_title": "Preferir imagens remotas", + "advanced_settings_self_signed_ssl_subtitle": "Salta a verificação do certificado SSL para o endereço do servidor. Necessário para certificados auto-assinados.", + "advanced_settings_self_signed_ssl_title": "Permitir certificados SSL auto-assinados", + "advanced_settings_tile_subtitle": "Definições avançadas do utilizador", + "advanced_settings_tile_title": "Avançado", + "advanced_settings_troubleshooting_subtitle": "Ativar funcionalidades adicionais para a resolução de problemas", + "advanced_settings_troubleshooting_title": "Resolução de problemas", "album_info_card_backup_album_excluded": "DELETADO", "album_info_card_backup_album_included": "INCLUÍDO", "album_thumbnail_card_item": "1 item", "album_thumbnail_card_items": "{} itens", "album_thumbnail_card_shared": " · Partilhado", - "album_thumbnail_owned": "Owned", - "album_thumbnail_shared_by": "Shared by {}", + "album_thumbnail_owned": "Seu", + "album_thumbnail_shared_by": "Partilhado por {}", "album_viewer_appbar_share_delete": "Deletar álbum", "album_viewer_appbar_share_err_delete": "Falha ao deletar álbum", "album_viewer_appbar_share_err_leave": "Falha ao sair do álbum", @@ -26,24 +26,27 @@ "album_viewer_appbar_share_err_title": "Falha ao alterar título do álbum", "album_viewer_appbar_share_leave": "Deixar álbum", "album_viewer_appbar_share_remove": "Remover do álbum", - "album_viewer_appbar_share_to": "Share To", + "album_viewer_appbar_share_to": "Partilhar com", "album_viewer_page_share_add_users": "Adicionar usuários", - "all_people_page_title": "People", + "all_people_page_title": "Pessoas", "all_videos_page_title": "Vídeos", "app_bar_signout_dialog_content": "Tem a certeza que deseja sair?", - "app_bar_signout_dialog_ok": "Yes", + "app_bar_signout_dialog_ok": "Sim", "app_bar_signout_dialog_title": "Sair", - "archive_page_no_archived_assets": "No archived assets found", - "archive_page_title": "Archive ({})", + "archive_page_no_archived_assets": "Nenhum recurso arquivado encontrado", + "archive_page_title": "Arquivo ({})", "asset_action_delete_err_read_only": "Não é possível eliminar o(s) recurso(s) só de leitura, ignorando", "asset_action_share_err_offline": "Não é possível obter recurso(s) offline, ignorando", + "asset_list_group_by_sub_title": "Agrupar por", "asset_list_layout_settings_dynamic_layout_title": "Disposição dinâmica", - "asset_list_layout_settings_group_automatically": "Automatic", + "asset_list_layout_settings_group_automatically": "Automático", "asset_list_layout_settings_group_by": "Agrupar recursos por", "asset_list_layout_settings_group_by_month": "Mês", "asset_list_layout_settings_group_by_month_day": "Mês + dia", + "asset_list_layout_sub_title": "Disposição", "asset_list_settings_subtitle": "Configurações de layout da grelha de fotos", "asset_list_settings_title": "Grelha de fotos", + "asset_viewer_settings_title": "Visualizador de recursos", "backup_album_selection_page_albums_device": "Álbuns no dispositivo ({})", "backup_album_selection_page_albums_tap": "Toque para incluir, duplo toque para exluir", "backup_album_selection_page_assets_scatter": "Os itens podem estar espalhados por vários álbuns. Assim, os álbuns podem ser incluídos ou excluídos durante o processo de backup.", @@ -59,9 +62,9 @@ "backup_background_service_in_progress_notification": "Fazendo backup de seus itens…", "backup_background_service_upload_failure_notification": "Falha ao carregar {}", "backup_controller_page_albums": "Backup Álbuns", - "backup_controller_page_background_app_refresh_disabled_content": "Enable background app refresh in Settings > General > Background App Refresh in order to use background backup.", - "backup_controller_page_background_app_refresh_disabled_title": "Background app refresh disabled", - "backup_controller_page_background_app_refresh_enable_button_text": "Go to settings", + "backup_controller_page_background_app_refresh_disabled_content": "Active a atualização de aplicações em segundo plano em Definições > Geral > Atualização de aplicações em segundo plano para utilizar a cópia de segurança em segundo plano.", + "backup_controller_page_background_app_refresh_disabled_title": "Atualização da app em segundo plano desativada", + "backup_controller_page_background_app_refresh_enable_button_text": "Ir para as definições", "backup_controller_page_background_battery_info_link": "Mostre-me como", "backup_controller_page_background_battery_info_message": "Para obter a melhor experiência de backup em segundo plano, desative todas as otimizações de bateria que restrinjam a atividade em segundo plano do Immich.\n\nComo isso é específico do dispositivo, consulte as informações necessárias do fabricante do dispositivo.", "backup_controller_page_background_battery_info_ok": "OK", @@ -103,17 +106,17 @@ "backup_controller_page_uploading_file_info": "Carregando informações do arquivo", "backup_err_only_album": "Não é possível remover apenas o álbum", "backup_info_card_assets": "itens", - "backup_manual_cancelled": "Cancelled", - "backup_manual_failed": "Failed", - "backup_manual_in_progress": "Upload already in progress. Try after sometime", - "backup_manual_success": "Success", - "backup_manual_title": "Upload status", + "backup_manual_cancelled": "Cancelado", + "backup_manual_failed": "Falhou", + "backup_manual_in_progress": "Carregamento em curso. Tente depois de algum tempo", + "backup_manual_success": "Sucesso", + "backup_manual_title": "Estado do carregamento", "cache_settings_album_thumbnails": "Miniaturas da página da biblioteca ({} itens)", "cache_settings_clear_cache_button": "Limpar cache", "cache_settings_clear_cache_button_title": "Limpa o cache do aplicativo. Isso afetará significativamente o desempenho do aplicativo até que o cache seja reconstruído.", - "cache_settings_duplicated_assets_clear_button": "CLEAR", - "cache_settings_duplicated_assets_subtitle": "Photos and videos that are black listed by the app", - "cache_settings_duplicated_assets_title": "Duplicated Assets ({})", + "cache_settings_duplicated_assets_clear_button": "LIMPAR", + "cache_settings_duplicated_assets_subtitle": "Fotografias e vídeos que estão na lista negra da aplicação", + "cache_settings_duplicated_assets_title": "Recursos duplicados ({})", "cache_settings_image_cache_size": "Tamanho do cache de imagem ({} itens)", "cache_settings_statistics_album": "Miniaturas da biblioteca", "cache_settings_statistics_assets": "{} itens ({})", @@ -135,25 +138,25 @@ "common_change_password": "Mudar a senha", "common_create_new_album": "Criar novo álbum", "common_server_error": "Verifique a sua ligação de rede, certifique-se de que o servidor está acessível e de que as versões da aplicação/servidor são compatíveis.", - "common_shared": "Shared", + "common_shared": "Partilhado", "control_bottom_app_bar_add_to_album": "Adicionar ao álbum", "control_bottom_app_bar_album_info": "{} itens", "control_bottom_app_bar_album_info_shared": "{} itens · Partilhado", - "control_bottom_app_bar_archive": "Archive", + "control_bottom_app_bar_archive": "Arquivo", "control_bottom_app_bar_create_new_album": "Criar novo álbum", "control_bottom_app_bar_delete": "Deletar", "control_bottom_app_bar_delete_from_immich": "Apagar do Immich", "control_bottom_app_bar_delete_from_local": "Apagar do dispositivo", - "control_bottom_app_bar_edit_location": "Edit Location", - "control_bottom_app_bar_edit_time": "Edit Date & Time", - "control_bottom_app_bar_favorite": "Favorite", + "control_bottom_app_bar_edit_location": "Editar Localização", + "control_bottom_app_bar_edit_time": "Editar Data & Hora", + "control_bottom_app_bar_favorite": "Favorito", "control_bottom_app_bar_share": "Partilhar", - "control_bottom_app_bar_share_to": "Share To", - "control_bottom_app_bar_stack": "Stack", + "control_bottom_app_bar_share_to": "Partilhar com", + "control_bottom_app_bar_stack": "Empilhar", "control_bottom_app_bar_trash_from_immich": "Mover para o lixo", - "control_bottom_app_bar_unarchive": "Unarchive", - "control_bottom_app_bar_unfavorite": "Unfavorite", - "control_bottom_app_bar_upload": "Upload", + "control_bottom_app_bar_unarchive": "Desarquivar", + "control_bottom_app_bar_unfavorite": "Remover favorito", + "control_bottom_app_bar_upload": "Carregar", "create_album_page_untitled": "Sem título", "create_shared_album_page_create": "Criar", "create_shared_album_page_share": "Partilhar", @@ -174,61 +177,62 @@ "delete_dialog_title": "Deletar Permanentemente", "delete_local_dialog_ok_backed_up_only": "Eliminar apenas existentes na cópia de segurança", "delete_local_dialog_ok_force": "Apagar de qualquer forma", - "delete_shared_link_dialog_content": "Are you sure you want to delete this shared link?", - "delete_shared_link_dialog_title": "Delete Shared Link", - "description_input_hint_text": "Add description...", - "description_input_submit_error": "Error updating description, check the log for more details", + "delete_shared_link_dialog_content": "Tem a certeza de que pretende apagar esta ligação partilhada?", + "delete_shared_link_dialog_title": "Apagar link de partilha", + "description_input_hint_text": "Adicionar descrição...", + "description_input_submit_error": "Erro ao atualizar a descrição, verifique o registo para obter mais detalhes", "edit_date_time_dialog_date_time": "Data e Hora", "edit_date_time_dialog_timezone": "Fuso horário", - "edit_location_dialog_title": "Location", + "edit_location_dialog_title": "Localização", "exif_bottom_sheet_description": "Adicionar Descrição...", "exif_bottom_sheet_details": "DETALHES", "exif_bottom_sheet_location": "LOCALIZAÇÃO", - "exif_bottom_sheet_location_add": "Add a location", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_location_add": "Adicionar uma localização", + "exif_bottom_sheet_people": "Pessoas", + "exif_bottom_sheet_person_add_person": "Adicionar nome", "experimental_settings_new_asset_list_subtitle": "Trabalho em andamento", "experimental_settings_new_asset_list_title": "Ativar visualização de grelha experimental", "experimental_settings_subtitle": "Use por sua conta e risco!", "experimental_settings_title": "Experimental", - "favorites_page_no_favorites": "No favorite assets found", + "favorites_page_no_favorites": "Nenhum recurso favorito encontrado", "favorites_page_title": "Favoritos", "home_page_add_to_album_conflicts": "Ativos {added} adicionados ao álbum {album}. {failed} ativos já estão no álbum.", "home_page_add_to_album_err_local": "Ainda não é possível adicionar recursos locais aos álbuns, ignorando", "home_page_add_to_album_success": "Ativos {added} adicionados ao álbum {album}.", - "home_page_album_err_partner": "Can not add partner assets to an album yet, skipping", - "home_page_archive_err_local": "Can not archive local assets yet, skipping", - "home_page_archive_err_partner": "Can not archive partner assets, skipping", + "home_page_album_err_partner": "Ainda não é possível adicionar recursos do parceiro a um álbum, ignorando", + "home_page_archive_err_local": "Ainda não é possível arquivar recursos locais, ignorando", + "home_page_archive_err_partner": "Não é possível arquivar recursos do parceiro, ignorando", "home_page_building_timeline": "A construir a timeline", - "home_page_delete_err_partner": "Can not delete partner assets, skipping", + "home_page_delete_err_partner": "Não é possível apagar recursos do parceiro, ignorando", "home_page_delete_remote_err_local": "Recursos locais na seleção remota de eliminação, ignorando", "home_page_favorite_err_local": "Ainda não é possível adicionar recursos locais favoritos, ignorando", - "home_page_favorite_err_partner": "Can not favorite partner assets yet, skipping", + "home_page_favorite_err_partner": "Ainda não é possível marcar como favoritos recursos do parceiro, ignorando", "home_page_first_time_notice": "Se for a primeira vez que utiliza a aplicação, certifique-se de que escolhe um álbum ou álbuns de cópia de segurança, para que a linha cronológica possa preencher as fotografias e os vídeos no(s) álbum(s).", - "home_page_share_err_local": "Can not share local assets via link, skipping", - "home_page_upload_err_limit": "Can only upload a maximum of 30 assets at a time, skipping", - "image_viewer_page_state_provider_download_error": "Download Error", - "image_viewer_page_state_provider_download_success": "Download Success", - "image_viewer_page_state_provider_share_error": "Share Error", + "home_page_share_err_local": "Não é possível partilhar recursos locais via link, ignorando", + "home_page_upload_err_limit": "Só é possível carregar 30 recursos de cada vez, a ignorar", + "image_viewer_page_state_provider_download_error": "Erro ao descarregar", + "image_viewer_page_state_provider_download_success": "Descarregado", + "image_viewer_page_state_provider_share_error": "Erro ao partilhar", "library_page_albums": "Álbuns", - "library_page_archive": "Archive", + "library_page_archive": "Arquivo", "library_page_device_albums": "Álbuns no dispositivo", "library_page_favorites": "Favoritos", "library_page_new_album": "Novo álbum", "library_page_sharing": "Partilhar", "library_page_sort_asset_count": "Número de recursos", "library_page_sort_created": "Data de criação", - "library_page_sort_last_modified": "Last modified", + "library_page_sort_last_modified": "Última modificação", "library_page_sort_most_oldest_photo": "Foto mais antiga", - "library_page_sort_most_recent_photo": "Most recent photo", + "library_page_sort_most_recent_photo": "Foto mais recente", "library_page_sort_title": "Título do álbum", - "location_picker_choose_on_map": "Choose on map", + "location_picker_choose_on_map": "Escolha no mapa", "location_picker_latitude": "Latitude", - "location_picker_latitude_error": "Enter a valid latitude", - "location_picker_latitude_hint": "Enter your latitude here", + "location_picker_latitude_error": "Introduza uma latitude válida", + "location_picker_latitude_hint": "Introduza aqui a latitude", "location_picker_longitude": "Longitude", - "location_picker_longitude_error": "Enter a valid longitude", - "location_picker_longitude_hint": "Enter your longitude here", - "login_disabled": "Login has been disabled", + "location_picker_longitude_error": "Introduza uma longitude válida", + "location_picker_longitude_hint": "Introduza aqui a longitude", + "login_disabled": "Login desativado", "login_form_api_exception": "Excepção de API. Verifique o URL do servidor e tente novamente.", "login_form_back_button_text": "Voltar", "login_form_button_text": "Login", @@ -243,7 +247,7 @@ "login_form_failed_get_oauth_server_config": "Erro ao registrar usando OAuth, verifique o URL do servidor", "login_form_failed_get_oauth_server_disable": "O recurso OAuth não está disponível neste servidor", "login_form_failed_login": "Erro ao fazer login, verifique a url do servidor, email e senha", - "login_form_handshake_exception": "There was an Handshake Exception with the server. Enable self-signed certificate support in the settings if you are using a self-signed certificate.", + "login_form_handshake_exception": "Ocorreu um erro ao ligar ao servidor. Ative o suporte para certificados auto-assinados nas definições se estiver a utilizar um certificado auto-assinado.", "login_form_label_email": "Email", "login_form_label_password": "Senha", "login_form_next_button": "Avançar", @@ -251,82 +255,87 @@ "login_form_save_login": "Permanecer logado", "login_form_server_empty": "Introduzir um URL de servidor.", "login_form_server_error": "Não foi possível ligar ao servidor.", - "login_password_changed_error": "There was an error updating your password", - "login_password_changed_success": "Password updated successfully", - "map_assets_in_bound": "{} photo", + "login_password_changed_error": "Erro ao atualizar a sua password", + "login_password_changed_success": "Password atualizada com sucesso", + "map_assets_in_bound": "{} foto", "map_assets_in_bounds": "{} fotos", - "map_cannot_get_user_location": "Cannot get user's location", - "map_location_dialog_cancel": "Cancel", - "map_location_dialog_yes": "Yes", - "map_location_picker_page_use_location": "Use this location", - "map_location_service_disabled_content": "Location service needs to be enabled to display assets from your current location. Do you want to enable it now?", - "map_location_service_disabled_title": "Location Service disabled", - "map_no_assets_in_bounds": "No photos in this area", - "map_no_location_permission_content": "Location permission is needed to display assets from your current location. Do you want to allow it now?", - "map_no_location_permission_title": "Location Permission denied", - "map_settings_dark_mode": "Dark mode", + "map_cannot_get_user_location": "Impossível obter a sua localização", + "map_location_dialog_cancel": "Cancelar", + "map_location_dialog_yes": "Sim", + "map_location_picker_page_use_location": "Utilizar esta localização", + "map_location_service_disabled_content": "Serviço de localização precisa de estar ativado para mostrar recursos da localização atual. Pretende ativar agora?", + "map_location_service_disabled_title": "Serviço de localização desativado", + "map_no_assets_in_bounds": "Não há fotos nesta área", + "map_no_location_permission_content": "A permissão de localização é necessária para apresentar recursos da sua localização atual. Pretende autorizá-la agora?\n", + "map_no_location_permission_title": "Permissão de localização negada", + "map_settings_dark_mode": "Modo escuro", "map_settings_date_range_option_all": "Tudo", "map_settings_date_range_option_day": "Últimas 24 horas", "map_settings_date_range_option_days": "Últimos {} dias", "map_settings_date_range_option_year": "Último ano", "map_settings_date_range_option_years": "Últimos {} anos", - "map_settings_dialog_cancel": "Cancel", - "map_settings_dialog_save": "Save", - "map_settings_dialog_title": "Map Settings", - "map_settings_include_show_archived": "Include Archived", - "map_settings_only_relative_range": "Date range", - "map_settings_only_show_favorites": "Show Favorite Only", + "map_settings_dialog_cancel": "Cancelar", + "map_settings_dialog_save": "Guardar", + "map_settings_dialog_title": "Definições do mapa", + "map_settings_include_show_archived": "Incluir arquivados", + "map_settings_only_relative_range": "Intervalo de datas", + "map_settings_only_show_favorites": "Mostrar apenas favoritos", "map_settings_theme_settings": "Tema do mapa", - "map_zoom_to_see_photos": "Zoom out to see photos", + "map_zoom_to_see_photos": "Reduzir zoom para ver fotos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Fotos com movimento", - "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", - "multiselect_grid_edit_gps_err_read_only": "Cannot edit location of read only asset(s), skipping", + "multiselect_grid_edit_date_time_err_read_only": "Não é possível editar a data de recurso(s) só de leitura, ignorando", + "multiselect_grid_edit_gps_err_read_only": "Não é possível editar a localização de recurso(s) só de leitura, ignorando", "notification_permission_dialog_cancel": "Cancelar", "notification_permission_dialog_content": "Para ativar as notificações, vá a Definições e selecione permitir.", - "notification_permission_dialog_settings": "Settings", - "notification_permission_list_tile_content": "Grant permission to enable notifications.", - "notification_permission_list_tile_enable_button": "Enable Notifications", + "notification_permission_dialog_settings": "Definições", + "notification_permission_list_tile_content": "Dar permissões para ativar notificações", + "notification_permission_list_tile_enable_button": "Ativar notificações", "notification_permission_list_tile_title": "Permissão de notificações", "partner_page_add_partner": "Adicionar parceiro", - "partner_page_empty_message": "Your photos are not yet shared with any partner.", - "partner_page_no_more_users": "No more users to add", - "partner_page_partner_add_failed": "Failed to add partner", + "partner_page_empty_message": "As suas fotografias ainda não foram partilhadas com nenhum parceiro.", + "partner_page_no_more_users": "Não há mais utilizadores para adicionar", + "partner_page_partner_add_failed": "Falha ao adicionar parceiro", "partner_page_select_partner": "Selecionar parceiro", - "partner_page_shared_to_title": "Shared to", - "partner_page_stop_sharing_content": "{} will no longer be able to access your photos.", - "partner_page_stop_sharing_title": "Stop sharing your photos?", - "partner_page_title": "Partner", - "permission_onboarding_back": "Back", + "partner_page_shared_to_title": "Partilhado com", + "partner_page_stop_sharing_content": "{} deixará de poder aceder às suas fotografias.", + "partner_page_stop_sharing_title": "Parar de partilhar as suas fotos?", + "partner_page_title": "Parceiro", + "permission_onboarding_back": "Voltar", "permission_onboarding_continue_anyway": "Continuar de qualquer maneira", - "permission_onboarding_get_started": "Get started", - "permission_onboarding_go_to_settings": "Go to settings", - "permission_onboarding_grant_permission": "Grant permission", + "permission_onboarding_get_started": "Começar", + "permission_onboarding_go_to_settings": "Ir para as definições", + "permission_onboarding_grant_permission": "Dar permissão", "permission_onboarding_log_out": "Sair", "permission_onboarding_permission_denied": "Permissão negada. Para utilizar o Immich, conceda permissões de fotografia e vídeo nas Definições.", "permission_onboarding_permission_granted": "Autorização concedida! Está tudo pronto.", "permission_onboarding_permission_limited": "Permissão limitada. Para permitir que o Immich faça cópias de segurança e gira toda a sua coleção de galerias, conceda permissões para fotografias e vídeos nas Definições.", "permission_onboarding_request": "O Immich requer autorização para ver as suas fotografias e vídeos.", + "preferences_settings_title": "Preferências", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "A aplicação móvel está desatualizada. Atualize para a versão principal mais recente.", "profile_drawer_client_out_of_date_minor": "A aplicação móvel está desatualizada. Por favor, atualize para a versão mais recente.", "profile_drawer_client_server_up_to_date": "Cliente e Servidor atualizados", - "profile_drawer_documentation": "Documentation", + "profile_drawer_documentation": "Documentação", "profile_drawer_github": "GitHub", "profile_drawer_server_out_of_date_major": "O servidor está desatualizado. Atualize para a versão principal mais recente.", "profile_drawer_server_out_of_date_minor": "O servidor está desatualizado. Atualize para a versão mais recente.", "profile_drawer_settings": "Configurações", "profile_drawer_sign_out": "Sair", - "profile_drawer_trash": "Trash", + "profile_drawer_trash": "Lixo", "recently_added_page_title": "Adicionado recentemente", "scaffold_body_error_occurred": "Ocorreu um erro", "search_bar_hint": "Busque suas fotos", - "search_page_categories": "Categories", + "search_page_categories": "Categorias", "search_page_favorites": "Favoritos", "search_page_motion_photos": "Fotos com movimento", "search_page_no_objects": "Nenhuma informação de objeto disponível", "search_page_no_places": "Nenhuma informação de sítios disponível", - "search_page_people": "People", + "search_page_people": "Pessoas", "search_page_person_add_name_dialog_cancel": "Cancelar", "search_page_person_add_name_dialog_hint": "Nome", "search_page_person_add_name_dialog_save": "Guardar", @@ -336,22 +345,22 @@ "search_page_person_edit_name": "Editar nome", "search_page_places": "Sítios", "search_page_recently_added": "Adicionado recentemente", - "search_page_screenshots": "Screenshots", + "search_page_screenshots": "Capturas de ecrã", "search_page_selfies": "Selfies", "search_page_things": "Objetos", "search_page_videos": "Vídeos", "search_page_view_all_button": "Ver tudo", "search_page_your_activity": "A sua atividade", - "search_page_your_map": "Your Map", + "search_page_your_map": "O seu mapa", "search_result_page_new_search_hint": "Nova Busca", - "search_suggestion_list_smart_search_hint_1": "Smart search is enabled by default, to search for metadata use the syntax ", - "search_suggestion_list_smart_search_hint_2": "m:your-search-term", + "search_suggestion_list_smart_search_hint_1": "A pesquisa inteligente está activada por predefinição. Para pesquisar metadados, utilize a sintaxe ", + "search_suggestion_list_smart_search_hint_2": "m:a-sua-pesquisa", "select_additional_user_for_sharing_page_suggestions": "Sugestões", "select_user_for_sharing_page_err_album": "Falha ao criar o álbum", "select_user_for_sharing_page_share_suggestions": "Sugestões", "server_info_box_app_version": "Versão da app", "server_info_box_latest_release": "Última versão", - "server_info_box_server_url": "Server URL", + "server_info_box_server_url": "URL do servidor", "server_info_box_server_version": "Versão do servidor", "setting_image_viewer_help": "O visualizador de detalhes carrega primeiro a miniatura pequena, depois carrega a visualização de tamanho médio (se ativado) e, finalmente, carrega o original (se ativado).", "setting_image_viewer_original_subtitle": "Ative para carregar a imagem original em resolução total (grande!). Desative para reduzir o uso de dados (na rede e no cache do dispositivo).", @@ -376,66 +385,66 @@ "share_add_photos": "Adicionar fotos", "share_add_title": "Adicione um título", "share_create_album": "Criar álbum", - "shared_album_activities_input_disable": "Comment is disabled", - "shared_album_activities_input_hint": "Say something", - "shared_album_activity_remove_content": "Do you want to delete this activity?", - "shared_album_activity_remove_title": "Delete Activity", - "shared_album_activity_setting_subtitle": "Let others respond", - "shared_album_activity_setting_title": "Comments & likes", + "shared_album_activities_input_disable": "Comentários desativados", + "shared_album_activities_input_hint": "Dizer alguma coisa", + "shared_album_activity_remove_content": "Deseja eliminar esta atividade?", + "shared_album_activity_remove_title": "Apagar atividade", + "shared_album_activity_setting_subtitle": "Permitir a outros responder", + "shared_album_activity_setting_title": "Comentários e gostos", "shared_album_section_people_action_error": "Erro ao sair/remover do álbum", "shared_album_section_people_action_leave": "Remover utilizador do álbum", "shared_album_section_people_action_remove_user": "Remover utilizador do álbum", - "shared_album_section_people_owner_label": "Owner", - "shared_album_section_people_title": "PEOPLE", + "shared_album_section_people_owner_label": "Dono", + "shared_album_section_people_title": "PESSOAS", "share_dialog_preparing": "Preparando...", "shared_link_app_bar_title": "Links partilhados", - "shared_link_clipboard_copied_massage": "Copied to clipboard", + "shared_link_clipboard_copied_massage": "Copiado para a área de transferência", "shared_link_clipboard_text": "Link: {}\nPassword: {}", - "shared_link_create_app_bar_title": "Create link to share", - "shared_link_create_error": "Error while creating shared link", - "shared_link_create_info": "Let anyone with the link see the selected photo(s)", - "shared_link_create_submit_button": "Create link", + "shared_link_create_app_bar_title": "Criar link para partilhar", + "shared_link_create_error": "Erro ao criar o link partilhado", + "shared_link_create_info": "Deixar qualquer pessoa com o link ver a(s) foto(s) selecionada(s)", + "shared_link_create_submit_button": "Criar link", "shared_link_edit_allow_download": "Permitir que um utilizador público descarregue", "shared_link_edit_allow_upload": "Permitir que um utilizador público carregue", - "shared_link_edit_app_bar_title": "Edit link", + "shared_link_edit_app_bar_title": "Editar link", "shared_link_edit_change_expiry": "Alterar o prazo de validade", - "shared_link_edit_description": "Description", - "shared_link_edit_description_hint": "Enter the share description", - "shared_link_edit_expire_after": "Expire after", + "shared_link_edit_description": "Descrição", + "shared_link_edit_description_hint": "Introduzir a descrição da partilha", + "shared_link_edit_expire_after": "Expira depois", "shared_link_edit_expire_after_option_day": "1 dia", "shared_link_edit_expire_after_option_days": "{} dias", "shared_link_edit_expire_after_option_hour": "1 hora", "shared_link_edit_expire_after_option_hours": "{} horas", "shared_link_edit_expire_after_option_minute": "1 minuto", "shared_link_edit_expire_after_option_minutes": "{} minutos", - "shared_link_edit_expire_after_option_never": "Never", + "shared_link_edit_expire_after_option_never": "Nunca", "shared_link_edit_password": "Password", - "shared_link_edit_password_hint": "Enter the share password", + "shared_link_edit_password_hint": "Introduza a password da partilha", "shared_link_edit_show_meta": "Mostrar metadados", "shared_link_edit_submit_button": "Atualizar link", "shared_link_empty": "Não tem links partilhados", - "shared_link_error_server_url_fetch": "Cannot fetch the server url", - "shared_link_expired": "Expired", + "shared_link_error_server_url_fetch": "Erro ao abrir o url do servidor", + "shared_link_expired": "Expirou", "shared_link_expires_day": "Expira em {} dia", "shared_link_expires_days": "Expira em {} dias", "shared_link_expires_hour": "Expira em {} hora", "shared_link_expires_hours": "Expira em {} horas", "shared_link_expires_minute": "Expira em {} minuto", - "shared_link_expires_minutes": "Expires in {} minutes", - "shared_link_expires_never": "Expires ∞", + "shared_link_expires_minutes": "Expira em {} minutos", + "shared_link_expires_never": "Expira ∞", "shared_link_expires_second": "Expira em {} segundo", - "shared_link_expires_seconds": "Expires in {} seconds", + "shared_link_expires_seconds": "Expira em {} segundos", "shared_link_info_chip_download": "Descarregar", "shared_link_info_chip_metadata": "EXIF", - "shared_link_info_chip_upload": "Upload", + "shared_link_info_chip_upload": "Carregar", "shared_link_manage_links": "Gerir links partilhados", - "share_done": "Done", + "share_done": "Feito", "share_invite": "Convidar para álbum", "sharing_page_album": "Álbuns partilhados", "sharing_page_description": "Crie álbuns partilhados para partilhar fotografias e vídeos com pessoas da sua rede.", "sharing_page_empty_list": "LISTA VAZIA", "sharing_silver_appbar_create_shared_album": "Criar álbum partilhado", - "sharing_silver_appbar_shared_links": "Shared links", + "sharing_silver_appbar_shared_links": "Links partilhados", "sharing_silver_appbar_share_partner": "Partilhar com parceiro", "tab_controller_nav_library": "Biblioteca", "tab_controller_nav_photos": "Fotos", @@ -451,30 +460,30 @@ "theme_setting_theme_title": "Tema", "theme_setting_three_stage_loading_subtitle": "O carregamento em três estágios pode aumentar o desempenho do carregamento, mas causa uma carga de rede significativamente maior", "theme_setting_three_stage_loading_title": "Habilitar carregamento em três estágios", - "translated_text_options": "Options", - "trash_page_delete": "Delete", - "trash_page_delete_all": "Delete All", - "trash_page_empty_trash_btn": "Empty trash", - "trash_page_empty_trash_dialog_content": "Do you want to empty your trashed assets? These items will be permanently removed from Immich", + "translated_text_options": "Opções", + "trash_page_delete": "Apagar", + "trash_page_delete_all": "Apagar tudo", + "trash_page_empty_trash_btn": "Esvaziar lixo", + "trash_page_empty_trash_dialog_content": "Deseja esvaziar os recursos no lixo? Estes recursos serão eliminados de forma permanente do Immich", "trash_page_empty_trash_dialog_ok": "Ok", - "trash_page_info": "Trashed items will be permanently deleted after {} days", - "trash_page_no_assets": "No trashed assets", - "trash_page_restore": "Restore", - "trash_page_restore_all": "Restore All", - "trash_page_select_assets_btn": "Select assets", - "trash_page_select_btn": "Select", - "trash_page_title": "Trash ({})", - "upload_dialog_cancel": "Cancel", - "upload_dialog_info": "Do you want to backup the selected Asset(s) to the server?", - "upload_dialog_ok": "Upload", - "upload_dialog_title": "Upload Asset", + "trash_page_info": "Recursos no lixo são apagados de forma permanente depois de {} dias", + "trash_page_no_assets": "Não existem recursos no lixo", + "trash_page_restore": "Restaurar", + "trash_page_restore_all": "Restaurar tudo", + "trash_page_select_assets_btn": "Selecionar recursos", + "trash_page_select_btn": "Selecionar", + "trash_page_title": "Lixo ({})", + "upload_dialog_cancel": "Cancelar", + "upload_dialog_info": "Pretende efetuar a cópia de segurança do(s) recurso(s) selecionado(s) para o servidor?", + "upload_dialog_ok": "Carregar", + "upload_dialog_title": "Carregar recurso", "version_announcement_overlay_ack": "Aceitar", "version_announcement_overlay_release_notes": "notas de lançamento", "version_announcement_overlay_text_1": "Olá, há um novo lançamento de", "version_announcement_overlay_text_2": "por favor, tome o seu tempo para visitar o", "version_announcement_overlay_text_3": "e certifique-se de que a configuração do docker-compose e do .env estejam atualizadas para evitar configurações incorretas, especialmente se usar o WatchTower ou qualquer mecanismo que lide com a atualização automática do servidor.", "version_announcement_overlay_title": "Nova versão do servidor disponível \uD83C\uDF89", - "viewer_remove_from_stack": "Remove from Stack", - "viewer_stack_use_as_main_asset": "Use as Main Asset", - "viewer_unstack": "Un-Stack" + "viewer_remove_from_stack": "Remover da pilha", + "viewer_stack_use_as_main_asset": "Usar como recurso principal", + "viewer_unstack": "Desenpilhar" } \ No newline at end of file diff --git a/mobile/assets/i18n/ru-RU.json b/mobile/assets/i18n/ru-RU.json index 3a6ccd250..662bca1de 100644 --- a/mobile/assets/i18n/ru-RU.json +++ b/mobile/assets/i18n/ru-RU.json @@ -37,13 +37,16 @@ "archive_page_title": "Архив ({})", "asset_action_delete_err_read_only": "Невозможно удалить объект(ы) только для чтения, пропуск...", "asset_action_share_err_offline": "Невозможно получить оффлайн-объект(ы), пропуск...", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Динамическое расположение", "asset_list_layout_settings_group_automatically": "Автоматически", "asset_list_layout_settings_group_by": "Группировать объекты по:", "asset_list_layout_settings_group_by_month": "Месяцу", "asset_list_layout_settings_group_by_month_day": "Месяцу и дню", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Настройка макета сетки фотографий", "asset_list_settings_title": "Сетка фотографий", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Альбомов на устройстве ({})", "backup_album_selection_page_albums_tap": "Нажмите, чтобы включить, нажмите дважды, чтобы исключить", "backup_album_selection_page_assets_scatter": "Объекты могут быть разбросаны по нескольким альбомам. Таким образом, альбомы могут быть включены или исключены из процесса резервного копирования.", @@ -164,9 +167,9 @@ "daily_title_text_date": "E, MMM dd", "daily_title_text_date_year": "E, MMM dd, yyyy", "date_format": "E, LLL d, y • h:mm a", - "delete_dialog_alert": "Эти объекты будут безвозвратно удалены с сервера Immich и вашего устройства.", - "delete_dialog_alert_local": "Эти объекты будут безвозвратно удалены с вашего устройства, но по-прежнему будут доступны на сервере Immich", - "delete_dialog_alert_local_non_backed_up": "Некоторые объекты не были скопированы на сервера Immich и будут безвозвратно удалены с вашего устройства", + "delete_dialog_alert": "Эти элементы будут безвозвратно удалены из приложения, а также с вашего устройства", + "delete_dialog_alert_local": "Эти объекты будут безвозвратно удалены с Вашего устройства, но по-прежнему будут доступны на сервере Immich", + "delete_dialog_alert_local_non_backed_up": "Резервные копии некоторых объектов не были загружены в Immich и будут безвозвратно удалены с Вашего устройства", "delete_dialog_alert_remote": "Эти объекты будут безвозвратно удалены с сервера Immich", "delete_dialog_cancel": "Отменить", "delete_dialog_ok": "Удалить", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "Местоположение", "exif_bottom_sheet_location_add": "Добавить местоположение", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Ведутся работы", "experimental_settings_new_asset_list_title": "Включить экспериментальную сетку фотографий", "experimental_settings_subtitle": "Используйте на свой страх и риск!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Показать только избранное", "map_settings_theme_settings": "Тема карты", "map_zoom_to_see_photos": "Уменьшение масштаба для просмотра фотографий", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Динамические фото", "multiselect_grid_edit_date_time_err_read_only": "Невозможно редактировать дату объектов только для чтения, пропуск...", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Доступ получен! Всё готово.", "permission_onboarding_permission_limited": "Доступ к файлам ограничен. Чтобы Immich мог создавать резервные копии и управлять вашей галереей, пожалуйста, предоставьте приложению разрешение на доступ к \"Фото и видео\" в Настройках.", "permission_onboarding_request": "Immich просит вас предоставить разрешение на доступ к вашим фото и видео", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Журнал", "profile_drawer_client_out_of_date_major": "Версия мобильного приложения устарела. Пожалуйста, обновитесь до последней основной версии.", "profile_drawer_client_out_of_date_minor": "Версия мобильного приложения устарела. Пожалуйста, обновитесь до последней вспомогательной версии.", @@ -457,7 +466,7 @@ "trash_page_empty_trash_btn": "Очистить корзину", "trash_page_empty_trash_dialog_content": "Вы хотите очистить свою корзину? Эти объекты будут навсегда удалены из Immich.", "trash_page_empty_trash_dialog_ok": "ОК", - "trash_page_info": "Удаленные объекты будут окончательно удалены через {} дней", + "trash_page_info": "Удаленные элементы будут окончательно удалены через {} дней", "trash_page_no_assets": "Удаленные объекты отсутсвуют", "trash_page_restore": "Восстановить", "trash_page_restore_all": "Восстановить все", @@ -477,4 +486,4 @@ "viewer_remove_from_stack": "Удалить из стека", "viewer_stack_use_as_main_asset": "Использовать в качестве основного объекта", "viewer_unstack": "Разобрать стек" -} +} \ No newline at end of file diff --git a/mobile/assets/i18n/sk-SK.json b/mobile/assets/i18n/sk-SK.json index 19235cbe2..77ebc57ed 100644 --- a/mobile/assets/i18n/sk-SK.json +++ b/mobile/assets/i18n/sk-SK.json @@ -37,13 +37,16 @@ "archive_page_title": "Archív ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamické rozloženie", "asset_list_layout_settings_group_automatically": "Automaticky", "asset_list_layout_settings_group_by": "Zoskupiť položky podľa", "asset_list_layout_settings_group_by_month": "Mesiac", "asset_list_layout_settings_group_by_month_day": "Mesiac + deň", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Nastavenia rozloženia mriežky fotografií", "asset_list_settings_title": "Fotografická mriežka", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albumy v zariadení ({})", "backup_album_selection_page_albums_tap": "Ťuknutím na položku ju zahrniete, dvojitým ťuknutím ju vylúčite", "backup_album_selection_page_assets_scatter": "Súbory môžu byť roztrúsené vo viacerých albumoch. To umožňuje zahrnúť alebo vylúčiť albumy počas procesu zálohovania.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOKALITA", "exif_bottom_sheet_location_add": "Nastaviť polohu", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Prebiehajúca práca", "experimental_settings_new_asset_list_title": "Povolenie experimentálnej mriežky fotografií", "experimental_settings_subtitle": "Používajte na vlastné riziko!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Zobraziť iba obľúbené", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Oddiaľte priblíženie aby ste videli fotky", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "LLLL y", "motion_photos_page_title": "Pohyblivé fotky", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Povolenie udelené! Všetko je nastavené.", "permission_onboarding_permission_limited": "Povolenie obmedzené. Ak chcete, aby Immich zálohoval a spravoval celú vašu zbierku galérie, udeľte v Nastaveniach povolenia na fotografie a videá.", "permission_onboarding_request": "Immich vyžaduje povolenie na prezeranie vašich fotografií a videí.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logy", "profile_drawer_client_out_of_date_major": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.", "profile_drawer_client_out_of_date_minor": "Mobilná aplikácia je zastaralá. Prosím aktualizujte na najnovšiu verziu.", diff --git a/mobile/assets/i18n/sr-Cyrl.json b/mobile/assets/i18n/sr-Cyrl.json index eda783891..eb654890a 100644 --- a/mobile/assets/i18n/sr-Cyrl.json +++ b/mobile/assets/i18n/sr-Cyrl.json @@ -37,13 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albums on device ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOCATION", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/sr-Latn.json b/mobile/assets/i18n/sr-Latn.json index 6ad111958..7d7fe7106 100644 --- a/mobile/assets/i18n/sr-Latn.json +++ b/mobile/assets/i18n/sr-Latn.json @@ -37,13 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dinamični raspored", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Grupiši zapise po", "asset_list_layout_settings_group_by_month": "Mesec", "asset_list_layout_settings_group_by_month_day": "Mesec + Dan", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Opcije za mrežni prikaz fotografija", "asset_list_settings_title": "Mrežni prikaz fotografija", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albuma na uređaju ({})", "backup_album_selection_page_albums_tap": "Dodirni da uključiš, dodirni dvaput da isključiš", "backup_album_selection_page_assets_scatter": "Zapisi se mogu naći u više različitih albuma. Odatle albumi se mogu uključiti ili isključiti tokom procesa pravljenja pozadinskih kopija.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOKACIJA", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "U izradi", "experimental_settings_new_asset_list_title": "Aktiviraj eksperimentalni mrežni prikaz fotografija", "experimental_settings_subtitle": "Koristiti na sopstvenu odgovornost!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Evidencija", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/sv-FI.json b/mobile/assets/i18n/sv-FI.json index eda783891..eb654890a 100644 --- a/mobile/assets/i18n/sv-FI.json +++ b/mobile/assets/i18n/sv-FI.json @@ -37,13 +37,16 @@ "archive_page_title": "Archive ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamic layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Group assets by", "asset_list_layout_settings_group_by_month": "Month", "asset_list_layout_settings_group_by_month_day": "Month + day", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Albums on device ({})", "backup_album_selection_page_albums_tap": "Tap to include, double tap to exclude", "backup_album_selection_page_assets_scatter": "Assets can scatter across multiple albums. Thus, albums can be included or excluded during the backup process.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "LOCATION", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Work in progress", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich requires permission to view your photos and videos.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Logs", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/sv-SE.json b/mobile/assets/i18n/sv-SE.json index 3341cf66b..dc58a8dba 100644 --- a/mobile/assets/i18n/sv-SE.json +++ b/mobile/assets/i18n/sv-SE.json @@ -37,13 +37,16 @@ "archive_page_title": "Arkivera ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Dynamisk layout", "asset_list_layout_settings_group_automatically": "Automatic", "asset_list_layout_settings_group_by": "Gruppera bilder efter", "asset_list_layout_settings_group_by_month": "Månad", "asset_list_layout_settings_group_by_month_day": "Månad + dag", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Layoutinställningar för bildrutnät", "asset_list_settings_title": "Bildrutnät", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Album på enhet ({})", "backup_album_selection_page_albums_tap": "Tryck en gång för att inkludera, tryck två gånger för att exkludera", "backup_album_selection_page_assets_scatter": "Objekt kan vara utspridda över flera album. Därför kan album inkluderas eller exkluderas under säkerhetskopieringsprocessen", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "PLATS", "exif_bottom_sheet_location_add": "Add a location", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Under uppbyggnad", "experimental_settings_new_asset_list_title": "Aktivera experimentellt fotorutnät", "experimental_settings_subtitle": "Använd på egen risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Show Favorite Only", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "Zoom out to see photos", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Motion Photos", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Permission granted! You are all set.", "permission_onboarding_permission_limited": "Permission limited. To let Immich backup and manage your entire gallery collection, grant photo and video permissions in Settings.", "permission_onboarding_request": "Immich kräver tillstånd för att se dina foton och videor.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Loggar", "profile_drawer_client_out_of_date_major": "Mobile App is out of date. Please update to the latest major version.", "profile_drawer_client_out_of_date_minor": "Mobile App is out of date. Please update to the latest minor version.", diff --git a/mobile/assets/i18n/th-TH.json b/mobile/assets/i18n/th-TH.json index cd70c7ada..e785273f6 100644 --- a/mobile/assets/i18n/th-TH.json +++ b/mobile/assets/i18n/th-TH.json @@ -37,13 +37,16 @@ "archive_page_title": "เก็บถาวร ({})", "asset_action_delete_err_read_only": "Cannot delete read only asset(s), skipping", "asset_action_share_err_offline": "Cannot fetch offline asset(s), skipping", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "แผนผังปรับตัว", "asset_list_layout_settings_group_automatically": "อัตโนมัติ", "asset_list_layout_settings_group_by": "จัดกลุ่มทรัพยากรโดย", "asset_list_layout_settings_group_by_month": "เดือน", "asset_list_layout_settings_group_by_month_day": "เดือน + วัน", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Photo grid layout settings", "asset_list_settings_title": "Photo Grid", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "อัลบั้มบนเครื่อง ({})", "backup_album_selection_page_albums_tap": "กดเพื่อรวม กดสองครั้งเพื่อยกเว้น", "backup_album_selection_page_assets_scatter": "ทรัพยาการสามารถกระจายไปในหลายอัลบั้ม ดังนั้นอัลบั้มสามารถถูกรวมหรือยกเว้นในกระบวนการสำรองข้อมูล", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "ตำแหน่ง", "exif_bottom_sheet_location_add": "เพิ่มตำแหน่ง", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "กำลังพัฒนา", "experimental_settings_new_asset_list_title": "Enable experimental photo grid", "experimental_settings_subtitle": "Use at your own risk!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "แสดงรายการโปรดเท่านั้น", "map_settings_theme_settings": "Map Theme", "map_zoom_to_see_photos": "ซูมออกเพื่อดูรูป", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "ภาพเคลื่อนไหว", "multiselect_grid_edit_date_time_err_read_only": "Cannot edit date of read only asset(s), skipping", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "ให้สิทธิ์สำเร็จ คุณพร้อมใช้งานแล้ว", "permission_onboarding_permission_limited": "สิทธ์จำกัด เพื่อให้ Immich สำรองข้อมูลและบริหารคลังรูปภาพได้ ตั้งค่าสิทธิเข้าถึงรูปภาพและวิดีโอ", "permission_onboarding_request": "Immich จำเป็นจะต้องได้รับสิทธิ์ดูรูปภาพและวิดีโอ", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Log", "profile_drawer_client_out_of_date_major": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันหลักล่าสุด", "profile_drawer_client_out_of_date_minor": "แอปพลิเคชันมีอัพเดต โปรดอัปเดตเป็นเวอร์ชันรองล่าสุด", diff --git a/mobile/assets/i18n/uk-UA.json b/mobile/assets/i18n/uk-UA.json index c0d48d0fe..e417b9679 100644 --- a/mobile/assets/i18n/uk-UA.json +++ b/mobile/assets/i18n/uk-UA.json @@ -37,13 +37,16 @@ "archive_page_title": "Архів ({})", "asset_action_delete_err_read_only": "Неможливо видалити елемент(и) лише для читання, пропущено", "asset_action_share_err_offline": "Неможливо отримати оффлайн-елемент(и), пропущено", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Динамічне компонування", "asset_list_layout_settings_group_automatically": "Автоматично", "asset_list_layout_settings_group_by": "Групувати елементи по", "asset_list_layout_settings_group_by_month": "Місяць", "asset_list_layout_settings_group_by_month_day": "Місяць + день", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Налаштування компонування знімків", "asset_list_settings_title": "Фото-сітка", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Альбоми на пристрої ({})", "backup_album_selection_page_albums_tap": "Доторк — для включення, подвійний доторк — для вилучення ", "backup_album_selection_page_assets_scatter": "Елементи можуть належати до кількох альбомів водночас. Таким чином, альбоми можуть бути включені або вилучені під час резервного копіювання.", @@ -186,6 +189,7 @@ "exif_bottom_sheet_location": "МІСЦЕ", "exif_bottom_sheet_location_add": "Додати місцезнаходження", "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "В розробці", "experimental_settings_new_asset_list_title": "Експериментальний макет знімків", "experimental_settings_subtitle": "На власний ризик!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Лише улюбені", "map_settings_theme_settings": "Тема карти", "map_zoom_to_see_photos": "Зменшіть, аби переглянути знімки", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Рухомі Знімки", "multiselect_grid_edit_date_time_err_read_only": "Неможливо редагувати дату елементів лише для читання, пропущено", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Доступ надано! Все готово.", "permission_onboarding_permission_limited": "Обмежений доступ. Аби дозволити Immich резервне копіювання та керування вашою галереєю, надайте доступ до знімків та відео у Налаштуваннях", "permission_onboarding_request": "Immich потребує доступу до ваших знімків та відео.", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Журнал", "profile_drawer_client_out_of_date_major": "Мобільний додаток застарів. Будь ласка, оновіть до останньої мажорної версії.", "profile_drawer_client_out_of_date_minor": "Мобільний додаток застарів. Будь ласка, оновіть до останньої мінорної версії.", diff --git a/mobile/assets/i18n/vi-VN.json b/mobile/assets/i18n/vi-VN.json index aadb63d3e..0adad1b5a 100644 --- a/mobile/assets/i18n/vi-VN.json +++ b/mobile/assets/i18n/vi-VN.json @@ -37,13 +37,16 @@ "archive_page_title": "Kho lưu trữ ({})", "asset_action_delete_err_read_only": "Không thể xoá ảnh chỉ có quyền đọc, bỏ qua", "asset_action_share_err_offline": "Không thể tải ảnh ngoại tuyến, bỏ qua", + "asset_list_group_by_sub_title": "Group by", "asset_list_layout_settings_dynamic_layout_title": "Bố cục động", "asset_list_layout_settings_group_automatically": "Tự động", "asset_list_layout_settings_group_by": " Nhóm ảnh theo", "asset_list_layout_settings_group_by_month": "Tháng", "asset_list_layout_settings_group_by_month_day": "Tháng + ngày", + "asset_list_layout_sub_title": "Layout", "asset_list_settings_subtitle": "Cài đặt bố cục lưới ảnh", "asset_list_settings_title": "Lưới ảnh", + "asset_viewer_settings_title": "Asset Viewer", "backup_album_selection_page_albums_device": "Album trên thiết bị ({})", "backup_album_selection_page_albums_tap": "Nhấn để chọn, nhấn đúp để bỏ qua", "backup_album_selection_page_assets_scatter": "Ảnh có thể có trong nhiều album khác nhau. Trong quá trình sao lưu, bạn có thể chọn để sao lưu tất cả các album hoặc chỉ một số album nhất định.", @@ -150,7 +153,7 @@ "control_bottom_app_bar_share": "Chia sẻ", "control_bottom_app_bar_share_to": "Chia sẻ với", "control_bottom_app_bar_stack": "Xếp nhóm", - "control_bottom_app_bar_trash_from_immich": "Di chuyển tới thùng rác", + "control_bottom_app_bar_trash_from_immich": "Chuyển tới thùng rác", "control_bottom_app_bar_unarchive": "Huỷ lưu trữ", "control_bottom_app_bar_unfavorite": "Bỏ yêu thích", "control_bottom_app_bar_upload": "Tải lên", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "CHI TIẾT", "exif_bottom_sheet_location": "VỊ TRÍ", "exif_bottom_sheet_location_add": "Thêm vị trí", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "MỌI NGƯỜI", + "exif_bottom_sheet_person_add_person": "Add name", "experimental_settings_new_asset_list_subtitle": "Đang trong quá trình phát triển", "experimental_settings_new_asset_list_title": "Bật lưới ảnh thử nghiệm", "experimental_settings_subtitle": "Sử dụng có thể rủi ro!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "Chỉ hiển thị mục yêu thích", "map_settings_theme_settings": "Giao diện bản đồ", "map_zoom_to_see_photos": "Thu nhỏ để xem ảnh", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "Ảnh động", "multiselect_grid_edit_date_time_err_read_only": "Không thể chỉnh sửa ngày của ảnh chỉ có quyền đọc, bỏ qua", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "Cấp quyền hoàn tất!", "permission_onboarding_permission_limited": "Quyền truy cập vào ảnh của bạn bị hạn chế. Để Immich sao lưu và quản lý toàn bộ thư viện ảnh của bạn, hãy cấp quyền truy cập toàn bộ ảnh trong Cài đặt.", "permission_onboarding_request": "Immich cần quyền để xem ảnh và video của bạn", + "preferences_settings_title": "Preferences", "profile_drawer_app_logs": "Nhật ký", "profile_drawer_client_out_of_date_major": "Ứng dụng đã lỗi thời. Vui lòng cập nhật lên phiên bản chính mới nhất.", "profile_drawer_client_out_of_date_minor": "Ứng dụng đã lỗi thời. Vui lòng cập nhật lên phiên bản phụ mới nhất.", diff --git a/mobile/assets/i18n/zh-CN.json b/mobile/assets/i18n/zh-CN.json index c133f1041..0853d82cf 100644 --- a/mobile/assets/i18n/zh-CN.json +++ b/mobile/assets/i18n/zh-CN.json @@ -37,13 +37,16 @@ "archive_page_title": "归档({})", "asset_action_delete_err_read_only": "无法删除只读项目,跳过", "asset_action_share_err_offline": "无法获取离线项目,跳过", + "asset_list_group_by_sub_title": "分组方式", "asset_list_layout_settings_dynamic_layout_title": "动态布局", "asset_list_layout_settings_group_automatically": "自动", "asset_list_layout_settings_group_by": "项目分组方式", "asset_list_layout_settings_group_by_month": "月", "asset_list_layout_settings_group_by_month_day": "月和日", + "asset_list_layout_sub_title": "布局", "asset_list_settings_subtitle": "照片网格布局设置", "asset_list_settings_title": "照片网格", + "asset_viewer_settings_title": "资源查看器", "backup_album_selection_page_albums_device": "设备上的相册({})", "backup_album_selection_page_albums_tap": "单击选中,双击取消", "backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "详情", "exif_bottom_sheet_location": "位置", "exif_bottom_sheet_location_add": "添加位置信息", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "人物", + "exif_bottom_sheet_person_add_person": "添加姓名", "experimental_settings_new_asset_list_subtitle": "正在处理", "experimental_settings_new_asset_list_title": "启用实验性照片网格", "experimental_settings_subtitle": "使用风险自负!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "仅显示收藏的项目", "map_settings_theme_settings": "地图主题", "map_zoom_to_see_photos": "缩小以查看项目", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "动图", "multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "已授权!一切就绪。", "permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。", "permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。", + "preferences_settings_title": "偏好设置", "profile_drawer_app_logs": "日志", "profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。", "profile_drawer_client_out_of_date_minor": "客户端有小版本升级,请尽快升级至最新版。", diff --git a/mobile/assets/i18n/zh-Hans.json b/mobile/assets/i18n/zh-Hans.json index 811e56ea6..815189146 100644 --- a/mobile/assets/i18n/zh-Hans.json +++ b/mobile/assets/i18n/zh-Hans.json @@ -37,13 +37,16 @@ "archive_page_title": "归档({})", "asset_action_delete_err_read_only": "无法删除只读项目,跳过", "asset_action_share_err_offline": "无法获取离线项目,跳过", + "asset_list_group_by_sub_title": "分组方式", "asset_list_layout_settings_dynamic_layout_title": "动态布局", "asset_list_layout_settings_group_automatically": "自动", "asset_list_layout_settings_group_by": "项目分组方式", "asset_list_layout_settings_group_by_month": "月", "asset_list_layout_settings_group_by_month_day": "月和日", + "asset_list_layout_sub_title": "布局", "asset_list_settings_subtitle": "照片网格布局设置", "asset_list_settings_title": "照片网格", + "asset_viewer_settings_title": "资源查看器", "backup_album_selection_page_albums_device": "设备上的相册({})", "backup_album_selection_page_albums_tap": "单击选中,双击取消", "backup_album_selection_page_assets_scatter": "项目会分散在多个相册中。因此,可以在备份过程中包含或排除相册。", @@ -185,7 +188,8 @@ "exif_bottom_sheet_details": "详情", "exif_bottom_sheet_location": "位置", "exif_bottom_sheet_location_add": "添加位置信息", - "exif_bottom_sheet_people": "PEOPLE", + "exif_bottom_sheet_people": "人物", + "exif_bottom_sheet_person_add_person": "添加姓名", "experimental_settings_new_asset_list_subtitle": "正在处理", "experimental_settings_new_asset_list_title": "启用实验性照片网格", "experimental_settings_subtitle": "使用风险自负!", @@ -278,6 +282,10 @@ "map_settings_only_show_favorites": "仅显示收藏的项目", "map_settings_theme_settings": "地图主题", "map_zoom_to_see_photos": "缩小以查看项目", + "memories_all_caught_up": "All caught up", + "memories_check_back_tomorrow": "Check back tomorrow for more memories", + "memories_start_over": "Start Over", + "memories_swipe_to_close": "Swipe up to close", "monthly_title_text_date_format": "MMMM y", "motion_photos_page_title": "动图", "multiselect_grid_edit_date_time_err_read_only": "无法编辑只读项目的日期,跳过", @@ -307,6 +315,7 @@ "permission_onboarding_permission_granted": "已授权!一切就绪。", "permission_onboarding_permission_limited": "权限受限:要让 Immich 备份和管理您的整个图库收藏,请在“设置”中授予照片和视频权限。", "permission_onboarding_request": "Immich 需要权限才能查看您的照片和视频。", + "preferences_settings_title": "偏好设置", "profile_drawer_app_logs": "日志", "profile_drawer_client_out_of_date_major": "客户端有大版本升级,请尽快升级至最新版。", "profile_drawer_client_out_of_date_minor": "客户端有小版本升级,请尽快升级至最新版。", From ec7015be88b6aa085d88d46fbf34ff60ccf3dce1 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 4 Apr 2024 21:28:05 -0500 Subject: [PATCH 11/23] chore(mobile): add log to get file name for corrupted asset (#8527) * chore(mobile): add log to get file name for corrupted asset * add date --- mobile/ios/Podfile.lock | 23 ++++++++------------ mobile/lib/shared/services/hash.service.dart | 10 ++++++++- 2 files changed, 18 insertions(+), 15 deletions(-) diff --git a/mobile/ios/Podfile.lock b/mobile/ios/Podfile.lock index 5493fc284..8ee2cdcc0 100644 --- a/mobile/ios/Podfile.lock +++ b/mobile/ios/Podfile.lock @@ -17,9 +17,6 @@ PODS: - fluttertoast (0.0.2): - Flutter - Toast - - FMDB (2.7.5): - - FMDB/standard (= 2.7.5) - - FMDB/standard (2.7.5) - geolocator_apple (1.2.0): - Flutter - image_picker_ios (0.0.1): @@ -39,7 +36,7 @@ PODS: - FlutterMacOS - path_provider_ios (0.0.1): - Flutter - - permission_handler_apple (9.1.1): + - permission_handler_apple (9.3.0): - Flutter - photo_manager (2.0.0): - Flutter @@ -53,7 +50,7 @@ PODS: - FlutterMacOS - sqflite (0.0.3): - Flutter - - FMDB (>= 2.7.5) + - FlutterMacOS - Toast (4.0.0) - url_launcher_ios (0.0.1): - Flutter @@ -84,14 +81,13 @@ DEPENDENCIES: - photo_manager (from `.symlinks/plugins/photo_manager/ios`) - share_plus (from `.symlinks/plugins/share_plus/ios`) - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) - - sqflite (from `.symlinks/plugins/sqflite/ios`) + - sqflite (from `.symlinks/plugins/sqflite/darwin`) - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) - video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`) - wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`) SPEC REPOS: trunk: - - FMDB - MapLibre - ReachabilitySwift - SAMKeychain @@ -139,7 +135,7 @@ EXTERNAL SOURCES: shared_preferences_foundation: :path: ".symlinks/plugins/shared_preferences_foundation/darwin" sqflite: - :path: ".symlinks/plugins/sqflite/ios" + :path: ".symlinks/plugins/sqflite/darwin" url_launcher_ios: :path: ".symlinks/plugins/url_launcher_ios/ios" video_player_avfoundation: @@ -156,23 +152,22 @@ SPEC CHECKSUMS: flutter_udid: a2482c67a61b9c806ef59dd82ed8d007f1b7ac04 flutter_web_auth: c25208760459cec375a3c39f6a8759165ca0fa4d fluttertoast: 31b00dabfa7fb7bacd9e7dbee580d7a2ff4bf265 - FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a geolocator_apple: 9157311f654584b9bb72686c55fc02a97b73f461 - image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5 + image_picker_ios: 99dfe1854b4fa34d0364e74a78448a0151025425 integration_test: 13825b8a9334a850581300559b8839134b124670 isar_flutter_libs: b69f437aeab9c521821c3f376198c4371fa21073 MapLibre: 620fc933c1d6029b33738c905c1490d024e5d4ef maplibre_gl: a2efec727dd340e4c65e26d2b03b584f14881fd9 package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85 - path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 + path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02 - permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 + permission_handler_apple: 036b856153a2b1f61f21030ff725f3e6fece2b78 photo_manager: 4f6810b7dfc4feb03b461ac1a70dacf91fba7604 ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825 SAMKeychain: 483e1c9f32984d50ca961e26818a534283b4cd5c share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5 - shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 - sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a + shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 + sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec Toast: 91b396c56ee72a5790816f40d3a94dd357abc196 url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 video_player_avfoundation: 02011213dab73ae3687df27ce441fbbcc82b5579 diff --git a/mobile/lib/shared/services/hash.service.dart b/mobile/lib/shared/services/hash.service.dart index 2a0d4f2f8..dd3280ccf 100644 --- a/mobile/lib/shared/services/hash.service.dart +++ b/mobile/lib/shared/services/hash.service.dart @@ -56,8 +56,16 @@ class HashService { } final file = await assetEntities[i].originFile; if (file == null) { + final fileName = await assetEntities[i].titleAsync.catchError((error) { + _log.warning( + "Failed to get title for asset ${assetEntities[i].id}", + ); + + return ""; + }); + _log.warning( - "Failed to get file for asset ${assetEntities[i].id}, skipping", + "Failed to get file for asset ${assetEntities[i].id}, name: $fileName, created on: ${assetEntities[i].createDateTime}, skipping", ); continue; } From 3b0fff3b3d06cfc6a8a201b20303d9007af5dbca Mon Sep 17 00:00:00 2001 From: Alex The Bot Date: Fri, 5 Apr 2024 02:39:51 +0000 Subject: [PATCH 12/23] Version v1.101.0 --- cli/package-lock.json | 2 +- e2e/package-lock.json | 6 +++--- e2e/package.json | 2 +- machine-learning/pyproject.toml | 2 +- mobile/android/fastlane/Fastfile | 4 ++-- mobile/ios/fastlane/Fastfile | 2 +- mobile/openapi/README.md | 2 +- mobile/pubspec.yaml | 2 +- open-api/immich-openapi-specs.json | 2 +- open-api/typescript-sdk/package-lock.json | 4 ++-- open-api/typescript-sdk/package.json | 2 +- open-api/typescript-sdk/src/fetch-client.ts | 2 +- server/package-lock.json | 4 ++-- server/package.json | 2 +- web/package-lock.json | 6 +++--- web/package.json | 2 +- 16 files changed, 23 insertions(+), 23 deletions(-) diff --git a/cli/package-lock.json b/cli/package-lock.json index 02a6d37f5..563cf7cd5 100644 --- a/cli/package-lock.json +++ b/cli/package-lock.json @@ -47,7 +47,7 @@ }, "../open-api/typescript-sdk": { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "dev": true, "license": "GNU Affero General Public License version 3", "dependencies": { diff --git a/e2e/package-lock.json b/e2e/package-lock.json index 894029102..333c181d9 100644 --- a/e2e/package-lock.json +++ b/e2e/package-lock.json @@ -1,12 +1,12 @@ { "name": "immich-e2e", - "version": "1.100.0", + "version": "1.101.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "immich-e2e", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "devDependencies": { "@immich/cli": "file:../cli", @@ -80,7 +80,7 @@ }, "../open-api/typescript-sdk": { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "dev": true, "license": "GNU Affero General Public License version 3", "dependencies": { diff --git a/e2e/package.json b/e2e/package.json index 0201dde6f..45f72217c 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "immich-e2e", - "version": "1.100.0", + "version": "1.101.0", "description": "", "main": "index.js", "type": "module", diff --git a/machine-learning/pyproject.toml b/machine-learning/pyproject.toml index dafd9d097..e5d8e06d4 100644 --- a/machine-learning/pyproject.toml +++ b/machine-learning/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "machine-learning" -version = "1.100.0" +version = "1.101.0" description = "" authors = ["Hau Tran "] readme = "README.md" diff --git a/mobile/android/fastlane/Fastfile b/mobile/android/fastlane/Fastfile index f7edc199d..65307abde 100644 --- a/mobile/android/fastlane/Fastfile +++ b/mobile/android/fastlane/Fastfile @@ -35,8 +35,8 @@ platform :android do task: 'bundle', build_type: 'Release', properties: { - "android.injected.version.code" => 130, - "android.injected.version.name" => "1.100.0", + "android.injected.version.code" => 131, + "android.injected.version.name" => "1.101.0", } ) upload_to_play_store(skip_upload_apk: true, skip_upload_images: true, skip_upload_screenshots: true, aab: '../build/app/outputs/bundle/release/app-release.aab') diff --git a/mobile/ios/fastlane/Fastfile b/mobile/ios/fastlane/Fastfile index 9b9766b8c..6cf9173c1 100644 --- a/mobile/ios/fastlane/Fastfile +++ b/mobile/ios/fastlane/Fastfile @@ -19,7 +19,7 @@ platform :ios do desc "iOS Beta" lane :beta do increment_version_number( - version_number: "1.100.0" + version_number: "1.101.0" ) increment_build_number( build_number: latest_testflight_build_number + 1, diff --git a/mobile/openapi/README.md b/mobile/openapi/README.md index a64183077..9a03fbd61 100644 --- a/mobile/openapi/README.md +++ b/mobile/openapi/README.md @@ -3,7 +3,7 @@ Immich API This Dart package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 1.100.0 +- API version: 1.101.0 - Build package: org.openapitools.codegen.languages.DartClientCodegen ## Requirements diff --git a/mobile/pubspec.yaml b/mobile/pubspec.yaml index 46cfe872b..6f0f03b57 100644 --- a/mobile/pubspec.yaml +++ b/mobile/pubspec.yaml @@ -2,7 +2,7 @@ name: immich_mobile description: Immich - selfhosted backup media file on mobile phone publish_to: 'none' -version: 1.100.0+130 +version: 1.101.0+131 environment: sdk: '>=3.0.0 <4.0.0' diff --git a/open-api/immich-openapi-specs.json b/open-api/immich-openapi-specs.json index 70e797f52..38df22f00 100644 --- a/open-api/immich-openapi-specs.json +++ b/open-api/immich-openapi-specs.json @@ -6872,7 +6872,7 @@ "info": { "title": "Immich", "description": "Immich API", - "version": "1.100.0", + "version": "1.101.0", "contact": {} }, "tags": [], diff --git a/open-api/typescript-sdk/package-lock.json b/open-api/typescript-sdk/package-lock.json index dc900ff52..f4c92e52d 100644 --- a/open-api/typescript-sdk/package-lock.json +++ b/open-api/typescript-sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "dependencies": { "@oazapfts/runtime": "^1.0.2" diff --git a/open-api/typescript-sdk/package.json b/open-api/typescript-sdk/package.json index 8fee0fc0f..887fece05 100644 --- a/open-api/typescript-sdk/package.json +++ b/open-api/typescript-sdk/package.json @@ -1,6 +1,6 @@ { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "description": "Auto-generated TypeScript SDK for the Immich API", "type": "module", "main": "./build/index.js", diff --git a/open-api/typescript-sdk/src/fetch-client.ts b/open-api/typescript-sdk/src/fetch-client.ts index bed1380d9..999fa23fa 100644 --- a/open-api/typescript-sdk/src/fetch-client.ts +++ b/open-api/typescript-sdk/src/fetch-client.ts @@ -1,6 +1,6 @@ /** * Immich - * 1.100.0 + * 1.101.0 * DO NOT MODIFY - This file has been generated using oazapfts. * See https://www.npmjs.com/package/oazapfts */ diff --git a/server/package-lock.json b/server/package-lock.json index 56be652be..085def238 100644 --- a/server/package-lock.json +++ b/server/package-lock.json @@ -1,12 +1,12 @@ { "name": "immich", - "version": "1.100.0", + "version": "1.101.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "immich", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "dependencies": { "@babel/runtime": "^7.22.11", diff --git a/server/package.json b/server/package.json index 4e3915682..4d5c5e94c 100644 --- a/server/package.json +++ b/server/package.json @@ -1,6 +1,6 @@ { "name": "immich", - "version": "1.100.0", + "version": "1.101.0", "description": "", "author": "", "private": true, diff --git a/web/package-lock.json b/web/package-lock.json index a00c329b3..a40031110 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "immich-web", - "version": "1.100.0", + "version": "1.101.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "immich-web", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "dependencies": { "@immich/sdk": "file:../open-api/typescript-sdk", @@ -63,7 +63,7 @@ }, "../open-api/typescript-sdk": { "name": "@immich/sdk", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "dependencies": { "@oazapfts/runtime": "^1.0.2" diff --git a/web/package.json b/web/package.json index c9e08c85f..58bb670fc 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "immich-web", - "version": "1.100.0", + "version": "1.101.0", "license": "GNU Affero General Public License version 3", "scripts": { "dev": "vite dev --host 0.0.0.0 --port 3000", From e5fe68cbf659741b3bdabd142a0759f647aa74fc Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 4 Apr 2024 22:05:56 -0500 Subject: [PATCH 13/23] chore: post release tasks --- mobile/android/fastlane/report.xml | 6 ++--- mobile/ios/Podfile.lock | 27 ++++++++++++--------- mobile/ios/Runner.xcodeproj/project.pbxproj | 6 ++--- mobile/ios/Runner/Info.plist | 4 +-- mobile/ios/fastlane/report.xml | 12 ++++----- 5 files changed, 30 insertions(+), 25 deletions(-) diff --git a/mobile/android/fastlane/report.xml b/mobile/android/fastlane/report.xml index c9be4ad53..d39c4a373 100644 --- a/mobile/android/fastlane/report.xml +++ b/mobile/android/fastlane/report.xml @@ -5,17 +5,17 @@ - + - + - + diff --git a/mobile/ios/Podfile.lock b/mobile/ios/Podfile.lock index 8ee2cdcc0..a9ac5b338 100644 --- a/mobile/ios/Podfile.lock +++ b/mobile/ios/Podfile.lock @@ -17,6 +17,9 @@ PODS: - fluttertoast (0.0.2): - Flutter - Toast + - FMDB (2.7.5): + - FMDB/standard (= 2.7.5) + - FMDB/standard (2.7.5) - geolocator_apple (1.2.0): - Flutter - image_picker_ios (0.0.1): @@ -36,7 +39,7 @@ PODS: - FlutterMacOS - path_provider_ios (0.0.1): - Flutter - - permission_handler_apple (9.3.0): + - permission_handler_apple (9.1.1): - Flutter - photo_manager (2.0.0): - Flutter @@ -50,7 +53,7 @@ PODS: - FlutterMacOS - sqflite (0.0.3): - Flutter - - FlutterMacOS + - FMDB (>= 2.7.5) - Toast (4.0.0) - url_launcher_ios (0.0.1): - Flutter @@ -81,13 +84,14 @@ DEPENDENCIES: - photo_manager (from `.symlinks/plugins/photo_manager/ios`) - share_plus (from `.symlinks/plugins/share_plus/ios`) - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) - - sqflite (from `.symlinks/plugins/sqflite/darwin`) + - sqflite (from `.symlinks/plugins/sqflite/ios`) - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) - video_player_avfoundation (from `.symlinks/plugins/video_player_avfoundation/darwin`) - wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`) SPEC REPOS: trunk: + - FMDB - MapLibre - ReachabilitySwift - SAMKeychain @@ -135,7 +139,7 @@ EXTERNAL SOURCES: shared_preferences_foundation: :path: ".symlinks/plugins/shared_preferences_foundation/darwin" sqflite: - :path: ".symlinks/plugins/sqflite/darwin" + :path: ".symlinks/plugins/sqflite/ios" url_launcher_ios: :path: ".symlinks/plugins/url_launcher_ios/ios" video_player_avfoundation: @@ -151,23 +155,24 @@ SPEC CHECKSUMS: flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef flutter_udid: a2482c67a61b9c806ef59dd82ed8d007f1b7ac04 flutter_web_auth: c25208760459cec375a3c39f6a8759165ca0fa4d - fluttertoast: 31b00dabfa7fb7bacd9e7dbee580d7a2ff4bf265 + fluttertoast: fafc4fa4d01a6a9e4f772ecd190ffa525e9e2d9c + FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a geolocator_apple: 9157311f654584b9bb72686c55fc02a97b73f461 - image_picker_ios: 99dfe1854b4fa34d0364e74a78448a0151025425 + image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5 integration_test: 13825b8a9334a850581300559b8839134b124670 isar_flutter_libs: b69f437aeab9c521821c3f376198c4371fa21073 MapLibre: 620fc933c1d6029b33738c905c1490d024e5d4ef maplibre_gl: a2efec727dd340e4c65e26d2b03b584f14881fd9 package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85 - path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c + path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 path_provider_ios: 14f3d2fd28c4fdb42f44e0f751d12861c43cee02 - permission_handler_apple: 036b856153a2b1f61f21030ff725f3e6fece2b78 + permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 photo_manager: 4f6810b7dfc4feb03b461ac1a70dacf91fba7604 ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825 SAMKeychain: 483e1c9f32984d50ca961e26818a534283b4cd5c share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5 - shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695 - sqflite: 673a0e54cc04b7d6dba8d24fb8095b31c3a99eec + shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 + sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a Toast: 91b396c56ee72a5790816f40d3a94dd357abc196 url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812 video_player_avfoundation: 02011213dab73ae3687df27ce441fbbcc82b5579 @@ -175,4 +180,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 64c9b5291666c0ca3caabdfe9865c141ac40321d -COCOAPODS: 1.15.2 +COCOAPODS: 1.12.1 diff --git a/mobile/ios/Runner.xcodeproj/project.pbxproj b/mobile/ios/Runner.xcodeproj/project.pbxproj index 48c76d1e0..1894e3979 100644 --- a/mobile/ios/Runner.xcodeproj/project.pbxproj +++ b/mobile/ios/Runner.xcodeproj/project.pbxproj @@ -383,7 +383,7 @@ CODE_SIGN_ENTITLEMENTS = Runner/RunnerProfile.entitlements; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 146; + CURRENT_PROJECT_VERSION = 147; DEVELOPMENT_TEAM = 2F67MQ8R79; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; @@ -525,7 +525,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 146; + CURRENT_PROJECT_VERSION = 147; DEVELOPMENT_TEAM = 2F67MQ8R79; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; @@ -553,7 +553,7 @@ CLANG_ENABLE_MODULES = YES; CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 146; + CURRENT_PROJECT_VERSION = 147; DEVELOPMENT_TEAM = 2F67MQ8R79; ENABLE_BITCODE = NO; INFOPLIST_FILE = Runner/Info.plist; diff --git a/mobile/ios/Runner/Info.plist b/mobile/ios/Runner/Info.plist index b49e7e5b7..d2414c23e 100644 --- a/mobile/ios/Runner/Info.plist +++ b/mobile/ios/Runner/Info.plist @@ -55,11 +55,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.100.0 + 1.101.0 CFBundleSignature ???? CFBundleVersion - 146 + 147 FLTEnableImpeller ITSAppUsesNonExemptEncryption diff --git a/mobile/ios/fastlane/report.xml b/mobile/ios/fastlane/report.xml index 47696ac0c..1d6f7ff46 100644 --- a/mobile/ios/fastlane/report.xml +++ b/mobile/ios/fastlane/report.xml @@ -5,32 +5,32 @@ - + - + - + - + - + - + From afd7815420cbf00972ce77ae6ff32d073d99b065 Mon Sep 17 00:00:00 2001 From: William Bartholomew Date: Thu, 4 Apr 2024 23:45:17 -0700 Subject: [PATCH 14/23] Make language gender neutral (#8535) --- docs/docs/administration/server-stats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/administration/server-stats.md b/docs/docs/administration/server-stats.md index 61f4d2d00..b77037e4c 100644 --- a/docs/docs/administration/server-stats.md +++ b/docs/docs/administration/server-stats.md @@ -3,7 +3,7 @@ Server statistics to show the total number of videos, photos, and usage per user. :::info -If a storage quota has been defined for the user, the usage number will be displayed as a percentage of the total storage quota allocated to him. +If a storage quota has been defined for the user, the usage number will be displayed as a percentage of the total storage quota allocated to them. ::: :::info External library From 7aaf48cb0ccb574545c45598c6c446ae46c738db Mon Sep 17 00:00:00 2001 From: Michel Heusschen <59014050+michelheusschen@users.noreply.github.com> Date: Fri, 5 Apr 2024 16:45:37 +0200 Subject: [PATCH 15/23] feat(mobile): add missing translations (#8537) * feat(mobile): add missing translations * fix formatting --- mobile/assets/i18n/en-US.json | 21 +++++++++++++++++++ .../modules/album/ui/album_viewer_appbar.dart | 14 ++++++------- .../backup/views/backup_options_page.dart | 5 ++--- .../login/ui/change_password_form.dart | 2 +- .../lib/modules/partner/ui/partner_list.dart | 11 +++++++--- .../ui/search_filter/camera_picker.dart | 5 +++-- .../search_filter/display_option_picker.dart | 7 ++++--- .../filter_bottom_sheet_scaffold.dart | 5 +++-- .../ui/search_filter/location_picker.dart | 7 ++++--- .../ui/search_filter/media_type_picker.dart | 7 ++++--- .../lib/modules/search/views/search_page.dart | 4 ++-- .../views/shared_link_edit_page.dart | 12 +++++++++-- 12 files changed, 68 insertions(+), 32 deletions(-) diff --git a/mobile/assets/i18n/en-US.json b/mobile/assets/i18n/en-US.json index eb654890a..b182b879a 100644 --- a/mobile/assets/i18n/en-US.json +++ b/mobile/assets/i18n/en-US.json @@ -1,6 +1,9 @@ { "action_common_cancel": "Cancel", "action_common_update": "Update", + "action_common_confirm": "Confirm", + "action_common_back": "Back", + "action_common_clear": "Clear", "add_to_album_bottom_sheet_added": "Added to {album}", "add_to_album_bottom_sheet_already_exists": "Already in {album}", "advanced_settings_log_level_title": "Log level: {}", @@ -19,6 +22,7 @@ "album_thumbnail_card_shared": " · Shared", "album_thumbnail_owned": "Owned", "album_thumbnail_shared_by": "Shared by {}", + "album_viewer_appbar_delete_confirm": "Are you sure you want to delete this album from your account?", "album_viewer_appbar_share_delete": "Delete album", "album_viewer_appbar_share_err_delete": "Failed to delete album", "album_viewer_appbar_share_err_leave": "Failed to leave album", @@ -111,6 +115,7 @@ "backup_manual_in_progress": "Upload already in progress. Try after sometime", "backup_manual_success": "Success", "backup_manual_title": "Upload status", + "backup_options_page_title": "Backup options", "cache_settings_album_thumbnails": "Library page thumbnails ({} assets)", "cache_settings_clear_cache_button": "Clear cache", "cache_settings_clear_cache_button_title": "Clears the app's cache. This will significantly impact the app's performance until the cache has rebuilt.", @@ -305,6 +310,8 @@ "partner_page_stop_sharing_content": "{} will no longer be able to access your photos.", "partner_page_stop_sharing_title": "Stop sharing your photos?", "partner_page_title": "Partner", + "partner_list_user_photos": "{user}'s photos", + "partner_list_view_all": "View all", "permission_onboarding_back": "Back", "permission_onboarding_continue_anyway": "Continue anyway", "permission_onboarding_get_started": "Get started", @@ -330,6 +337,18 @@ "recently_added_page_title": "Recently Added", "scaffold_body_error_occurred": "Error occurred", "search_bar_hint": "Search your photos", + "search_filter_apply": "Apply filter", + "search_filter_camera_make": "Make", + "search_filter_camera_model": "Model", + "search_filter_display_option_archive": "Archive", + "search_filter_display_option_favorite": "Favorite", + "search_filter_display_option_not_in_album": "Not in album", + "search_filter_location_city": "City", + "search_filter_location_country": "Country", + "search_filter_location_state": "State", + "search_filter_media_type_all": "All", + "search_filter_media_type_image": "Image", + "search_filter_media_type_video": "Video", "search_page_categories": "Categories", "search_page_favorites": "Favorites", "search_page_motion_photos": "Motion Photos", @@ -438,6 +457,8 @@ "shared_link_info_chip_metadata": "EXIF", "shared_link_info_chip_upload": "Upload", "shared_link_manage_links": "Manage Shared links", + "shared_link_public_album": "Public album", + "shared_link_individual_shared": "Individual shared", "share_done": "Done", "share_invite": "Invite to album", "sharing_page_album": "Shared albums", diff --git a/mobile/lib/modules/album/ui/album_viewer_appbar.dart b/mobile/lib/modules/album/ui/album_viewer_appbar.dart index b1a8d4c54..eaf5cbc96 100644 --- a/mobile/lib/modules/album/ui/album_viewer_appbar.dart +++ b/mobile/lib/modules/album/ui/album_viewer_appbar.dart @@ -73,20 +73,18 @@ class AlbumViewerAppbar extends HookConsumerWidget barrierDismissible: false, // user must tap button! builder: (BuildContext context) { return AlertDialog( - title: const Text('Delete album'), - content: const Text( - 'Are you sure you want to delete this album from your account?', - ), + title: const Text('album_viewer_appbar_share_delete').tr(), + content: const Text('album_viewer_appbar_delete_confirm').tr(), actions: [ TextButton( onPressed: () => context.pop('Cancel'), child: Text( - 'Cancel', + 'action_common_cancel', style: TextStyle( color: context.primaryColor, fontWeight: FontWeight.bold, ), - ), + ).tr(), ), TextButton( onPressed: () { @@ -94,12 +92,12 @@ class AlbumViewerAppbar extends HookConsumerWidget deleteAlbum(); }, child: Text( - 'Confirm', + 'action_common_confirm', style: TextStyle( fontWeight: FontWeight.bold, color: !context.isDarkTheme ? Colors.red : Colors.red[300], ), - ), + ).tr(), ), ], ); diff --git a/mobile/lib/modules/backup/views/backup_options_page.dart b/mobile/lib/modules/backup/views/backup_options_page.dart index b37ded6a6..e8c9e5014 100644 --- a/mobile/lib/modules/backup/views/backup_options_page.dart +++ b/mobile/lib/modules/backup/views/backup_options_page.dart @@ -1,4 +1,5 @@ import 'package:auto_route/auto_route.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:immich_mobile/modules/settings/ui/backup_settings/backup_settings.dart'; @@ -10,9 +11,7 @@ class BackupOptionsPage extends StatelessWidget { return Scaffold( appBar: AppBar( elevation: 0, - title: const Text( - "Backup options", - ), + title: const Text("backup_options_page_title").tr(), leading: IconButton( onPressed: () => context.popRoute(true), splashRadius: 24, diff --git a/mobile/lib/modules/login/ui/change_password_form.dart b/mobile/lib/modules/login/ui/change_password_form.dart index 2f5b5fe75..e66f67d3e 100644 --- a/mobile/lib/modules/login/ui/change_password_form.dart +++ b/mobile/lib/modules/login/ui/change_password_form.dart @@ -112,7 +112,7 @@ class ChangePasswordForm extends HookConsumerWidget { TextButton.icon( icon: const Icon(Icons.arrow_back), onPressed: () => AutoRouter.of(context).back(), - label: const Text('Back'), + label: const Text('action_common_back').tr(), ), ], ), diff --git a/mobile/lib/modules/partner/ui/partner_list.dart b/mobile/lib/modules/partner/ui/partner_list.dart index 83a02f9a8..2b4aef04f 100644 --- a/mobile/lib/modules/partner/ui/partner_list.dart +++ b/mobile/lib/modules/partner/ui/partner_list.dart @@ -1,4 +1,5 @@ import 'package:auto_route/auto_route.dart'; +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; import 'package:immich_mobile/extensions/build_context_extensions.dart'; @@ -28,15 +29,19 @@ class PartnerList extends HookConsumerWidget { ), leading: userAvatar(context, p, radius: 24), title: Text( - "${p.name}'s photos", + "partner_list_user_photos", style: context.textTheme.labelLarge, + ).tr( + namedArgs: { + 'user': p.name, + }, ), trailing: Text( - "View all", + "partner_list_view_all", style: context.textTheme.labelLarge?.copyWith( color: context.primaryColor, ), - ), + ).tr(), onTap: () => context.pushRoute((PartnerDetailRoute(partner: p))), ); } diff --git a/mobile/lib/modules/search/ui/search_filter/camera_picker.dart b/mobile/lib/modules/search/ui/search_filter/camera_picker.dart index fdfd398e6..17de9d8c2 100644 --- a/mobile/lib/modules/search/ui/search_filter/camera_picker.dart +++ b/mobile/lib/modules/search/ui/search_filter/camera_picker.dart @@ -1,3 +1,4 @@ +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; @@ -68,7 +69,7 @@ class CameraPicker extends HookConsumerWidget { }, width: context.width * 0.45, menuHeight: 400, - label: const Text('Make'), + label: const Text('search_filter_camera_make').tr(), inputDecorationTheme: inputDecorationTheme, controller: makeTextController, menuStyle: menuStyle, @@ -98,7 +99,7 @@ class CameraPicker extends HookConsumerWidget { }, width: context.width * 0.45, menuHeight: 400, - label: const Text('Model'), + label: const Text('search_filter_camera_model').tr(), inputDecorationTheme: inputDecorationTheme, controller: modelTextController, menuStyle: menuStyle, diff --git a/mobile/lib/modules/search/ui/search_filter/display_option_picker.dart b/mobile/lib/modules/search/ui/search_filter/display_option_picker.dart index f6cd01cbb..7f0357f63 100644 --- a/mobile/lib/modules/search/ui/search_filter/display_option_picker.dart +++ b/mobile/lib/modules/search/ui/search_filter/display_option_picker.dart @@ -1,3 +1,4 @@ +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:immich_mobile/modules/search/models/search_filter.dart'; @@ -30,7 +31,7 @@ class DisplayOptionPicker extends HookWidget { shrinkWrap: true, children: [ CheckboxListTile( - title: const Text('Not in album'), + title: const Text('search_filter_display_option_not_in_album').tr(), value: options.value[DisplayOption.notInAlbum], onChanged: (bool? value) { options.value = { @@ -41,7 +42,7 @@ class DisplayOptionPicker extends HookWidget { }, ), CheckboxListTile( - title: const Text('Favorite'), + title: const Text('search_filter_display_option_favorite').tr(), value: options.value[DisplayOption.favorite], onChanged: (value) { options.value = { @@ -52,7 +53,7 @@ class DisplayOptionPicker extends HookWidget { }, ), CheckboxListTile( - title: const Text('Archive'), + title: const Text('search_filter_display_option_archive').tr(), value: options.value[DisplayOption.archive], onChanged: (value) { options.value = { diff --git a/mobile/lib/modules/search/ui/search_filter/filter_bottom_sheet_scaffold.dart b/mobile/lib/modules/search/ui/search_filter/filter_bottom_sheet_scaffold.dart index 46bfe96bb..d636c8c7c 100644 --- a/mobile/lib/modules/search/ui/search_filter/filter_bottom_sheet_scaffold.dart +++ b/mobile/lib/modules/search/ui/search_filter/filter_bottom_sheet_scaffold.dart @@ -1,3 +1,4 @@ +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:immich_mobile/extensions/build_context_extensions.dart'; @@ -48,7 +49,7 @@ class FilterBottomSheetScaffold extends StatelessWidget { onClear(); Navigator.of(context).pop(); }, - child: const Text('Clear'), + child: const Text('action_common_clear').tr(), ), const SizedBox(width: 8), ElevatedButton( @@ -56,7 +57,7 @@ class FilterBottomSheetScaffold extends StatelessWidget { onSearch(); Navigator.of(context).pop(); }, - child: const Text('Apply filter'), + child: const Text('search_filter_apply').tr(), ), ], ), diff --git a/mobile/lib/modules/search/ui/search_filter/location_picker.dart b/mobile/lib/modules/search/ui/search_filter/location_picker.dart index 22568da47..fe2e3ab37 100644 --- a/mobile/lib/modules/search/ui/search_filter/location_picker.dart +++ b/mobile/lib/modules/search/ui/search_filter/location_picker.dart @@ -1,3 +1,4 @@ +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:hooks_riverpod/hooks_riverpod.dart'; @@ -79,7 +80,7 @@ class LocationPicker extends HookConsumerWidget { }, menuHeight: 400, width: context.width * 0.9, - label: const Text('Country'), + label: const Text('search_filter_location_country').tr(), inputDecorationTheme: inputDecorationTheme, menuStyle: menuStyle, controller: countryTextController, @@ -112,7 +113,7 @@ class LocationPicker extends HookConsumerWidget { }, menuHeight: 400, width: context.width * 0.9, - label: const Text('State'), + label: const Text('search_filter_location_state').tr(), inputDecorationTheme: inputDecorationTheme, menuStyle: menuStyle, controller: stateTextController, @@ -145,7 +146,7 @@ class LocationPicker extends HookConsumerWidget { }, menuHeight: 400, width: context.width * 0.9, - label: const Text('City'), + label: const Text('search_filter_location_city').tr(), inputDecorationTheme: inputDecorationTheme, menuStyle: menuStyle, controller: cityTextController, diff --git a/mobile/lib/modules/search/ui/search_filter/media_type_picker.dart b/mobile/lib/modules/search/ui/search_filter/media_type_picker.dart index aaef2c815..61206b7a1 100644 --- a/mobile/lib/modules/search/ui/search_filter/media_type_picker.dart +++ b/mobile/lib/modules/search/ui/search_filter/media_type_picker.dart @@ -1,3 +1,4 @@ +import 'package:easy_localization/easy_localization.dart'; import 'package:flutter/material.dart'; import 'package:flutter_hooks/flutter_hooks.dart'; import 'package:immich_mobile/shared/models/asset.dart'; @@ -16,7 +17,7 @@ class MediaTypePicker extends HookWidget { shrinkWrap: true, children: [ RadioListTile( - title: const Text("All"), + title: const Text("search_filter_media_type_all").tr(), value: AssetType.other, onChanged: (value) { selectedMediaType.value = value!; @@ -25,7 +26,7 @@ class MediaTypePicker extends HookWidget { groupValue: selectedMediaType.value, ), RadioListTile( - title: const Text("Image"), + title: const Text("search_filter_media_type_image").tr(), value: AssetType.image, onChanged: (value) { selectedMediaType.value = value!; @@ -34,7 +35,7 @@ class MediaTypePicker extends HookWidget { groupValue: selectedMediaType.value, ), RadioListTile( - title: const Text("Video"), + title: const Text("search_filter_media_type_video").tr(), value: AssetType.video, onChanged: (value) { selectedMediaType.value = value!; diff --git a/mobile/lib/modules/search/views/search_page.dart b/mobile/lib/modules/search/views/search_page.dart index 27ca28126..d0d9f2e71 100644 --- a/mobile/lib/modules/search/views/search_page.dart +++ b/mobile/lib/modules/search/views/search_page.dart @@ -151,13 +151,13 @@ class SearchPage extends HookConsumerWidget { Icon(Icons.search, color: context.primaryColor), const SizedBox(width: 16.0), Text( - "Search your photos", + "search_bar_hint", style: context.textTheme.bodyLarge?.copyWith( color: context.isDarkTheme ? Colors.white70 : Colors.black54, fontWeight: FontWeight.w400, ), - ), + ).tr(), ], ), ), diff --git a/mobile/lib/modules/shared_link/views/shared_link_edit_page.dart b/mobile/lib/modules/shared_link/views/shared_link_edit_page.dart index b6d892f92..56d064e29 100644 --- a/mobile/lib/modules/shared_link/views/shared_link_edit_page.dart +++ b/mobile/lib/modules/shared_link/views/shared_link_edit_page.dart @@ -48,7 +48,11 @@ class SharedLinkEditPage extends HookConsumerWidget { return Row( children: [ const Text( - "Public album | ", + 'shared_link_public_album', + style: TextStyle(fontWeight: FontWeight.bold), + ).tr(), + const Text( + " | ", style: TextStyle(fontWeight: FontWeight.bold), ), Text( @@ -66,7 +70,11 @@ class SharedLinkEditPage extends HookConsumerWidget { return Row( children: [ const Text( - "Individual shared | ", + 'shared_link_individual_shared', + style: TextStyle(fontWeight: FontWeight.bold), + ).tr(), + const Text( + " | ", style: TextStyle(fontWeight: FontWeight.bold), ), Expanded( From 22c3d26604c9842f9bf93b201daa756f858ff4cf Mon Sep 17 00:00:00 2001 From: aviv926 <51673860+aviv926@users.noreply.github.com> Date: Fri, 5 Apr 2024 17:59:03 +0300 Subject: [PATCH 16/23] feat(docs): Add information about breaking changes (#8524) * Added information about breaking updates * PR feedback --- docs/docs/install/docker-compose.mdx | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/docs/install/docker-compose.mdx b/docs/docs/install/docker-compose.mdx index 3a270c21b..60fcbbe8b 100644 --- a/docs/docs/install/docker-compose.mdx +++ b/docs/docs/install/docker-compose.mdx @@ -65,7 +65,7 @@ From the directory you created in Step 1, (which should now contain your customi docker compose up -d ``` -:::tip +:::info Docker version If you get an error `unknown shorthand flag: 'd' in -d`, you are probably running the wrong Docker version. (This happens, for example, with the docker.io package in Ubuntu 22.04.3 LTS.) You can correct the problem by `apt remove`ing Ubuntu's docker.io package and installing docker and docker-compose via [Docker's official repository](https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository). Note that the correct command really is `docker compose`, not `docker-compose`. If you try the latter on vanilla Ubuntu 22.04 it will fail in a different way: @@ -82,12 +82,16 @@ See the previous paragraph about installing from the official docker repository. For more information on how to use the application, please refer to the [Post Installation](/docs/install/post-install.mdx) guide. ::: -:::tip -Note that downloading container images might require you to authenticate to the GitHub Container Registry ([steps here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry)). +:::note GitHub Authentication +Downloading container images might require you to authenticate to the GitHub Container Registry ([steps here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry)). ::: ### Step 4 - Upgrading +:::danger Breaking Changes +It is important to follow breaking updates to avoid problems. You can see versions that had breaking changes [here](https://github.com/immich-app/immich/discussions?discussions_q=label%3Abreaking-change+sort%3Adate_created). +::: + If `IMMICH_VERSION` is set, it will need to be updated to the latest or desired version. When a new version of Immich is [released](https://github.com/immich-app/immich/releases), the application can be upgraded with the following commands, run in the directory with the `docker-compose.yml` file: @@ -97,7 +101,7 @@ docker compose pull && docker compose up -d ``` :::caution Automatic Updates -Immich is currently under heavy development, which means you can expect breaking changes and bugs. Therefore, we recommend reading the release notes prior to updating and to take special care when using automated tools like [Watchtower][watchtower]. +Immich is currently under heavy development, which means you can expect [breaking changes](https://github.com/immich-app/immich/discussions?discussions_q=label%3Abreaking-change+sort%3Adate_created) and bugs. Therefore, we recommend reading the release notes prior to updating and to take special care when using automated tools like [Watchtower][watchtower]. ::: [compose-file]: https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml From 939e91f9edc2f4900b5a99811fd79ae3a1ed2b6f Mon Sep 17 00:00:00 2001 From: Matthew Momjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 5 Apr 2024 15:16:35 -0400 Subject: [PATCH 17/23] docs: pre-existing postgres (#8549) * Update postgres-standalone.md * Update postgres-standalone.md * Update postgres-standalone.md * Update postgres-standalone.md * Update postgres-standalone.md --- docs/docs/administration/postgres-standalone.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/docs/docs/administration/postgres-standalone.md b/docs/docs/administration/postgres-standalone.md index c29aa54e6..42e77f70b 100644 --- a/docs/docs/administration/postgres-standalone.md +++ b/docs/docs/administration/postgres-standalone.md @@ -30,9 +30,15 @@ DB_URL='postgresql://immichdbusername:immichdbpassword@postgreshost:postgresport # DB_URL='postgresql://immichdbusername:immichdbpassword@postgreshost:postgresport/immichdatabasename?sslmode=require&sslmode=no-verify' ``` -## Without superuser permissions +## With superuser permission -### Initial installation +Typically Immich expects superuser permission in the database, which you can grant by running `ALTER USER WITH SUPERUSER;` at the `psql` console. If you prefer not to grant superuser permissions, follow the instructions in the next section. + +## Without superuser permission + +:::caution +This method is recommended for **advanced users only** and often requires manual intervention when updating Immich. +::: Immich can run without superuser permissions by following the below instructions at the `psql` prompt to prepare the database. @@ -52,3 +58,9 @@ COMMIT; ### Updating pgvecto.rs When installing a new version of pgvecto.rs, you will need to manually update the extension by connecting to the Immich database and running `ALTER EXTENSION vectors UPDATE;`. + +### Common errors + +#### Permission denied for view + +If you get the error `driverError: error: permission denied for view pg_vector_index_stat`, you can fix this by connecting to the Immich database and running `GRANT SELECT ON TABLE pg_vector_index_stat to ;`. From 8f981b60529140af839171dc052bc49784c73911 Mon Sep 17 00:00:00 2001 From: Ethan Margaillan Date: Fri, 5 Apr 2024 21:19:26 +0200 Subject: [PATCH 18/23] feat(web): enhance ux/ui of the album list page (#8499) * feat(web): enhance ux/ui of the album list page * fix unit tests * feat(web): enhance ux/ui of the album list page * fix unit tests * small styling * better dot * lint --------- Co-authored-by: Alex Tran --- .../album-page/__tests__/album-card.spec.ts | 26 +- .../album-page/album-card-group.svelte | 69 ++ .../components/album-page/album-card.svelte | 93 +-- .../components/album-page/album-cover.svelte | 36 + .../album-page/album-description.svelte | 2 +- .../components/album-page/album-viewer.svelte | 8 +- .../album-page/albums-controls.svelte | 152 ++++- .../components/album-page/albums-list.svelte | 644 +++++++++++------- .../album-page/albums-table-header.svelte | 31 +- .../album-page/albums-table-row.svelte | 64 ++ .../components/album-page/albums-table.svelte | 125 ++-- .../asset-viewer/asset-viewer.svelte | 24 + .../asset-viewer/detail-panel.svelte | 14 +- .../lib/components/elements/dropdown.svelte | 15 +- .../components/forms/edit-album-form.svelte | 75 +- .../context-menu/context-menu.svelte | 28 +- .../right-click-context-menu.svelte | 64 ++ .../create-shared-link-modal.svelte | 2 + .../sharedlinks-page/shared-link-card.svelte | 46 +- web/src/lib/stores/preferences.store.ts | 37 +- web/src/lib/utils/album-utils.ts | 203 ++++++ web/src/lib/utils/asset-utils.ts | 52 +- web/src/lib/utils/date-time.ts | 36 + web/src/routes/(user)/albums/+page.svelte | 41 +- .../(user)/albums/[albumId]/+page.svelte | 23 +- web/src/routes/(user)/search/+page.svelte | 11 +- web/src/routes/(user)/sharing/+page.svelte | 52 +- 27 files changed, 1352 insertions(+), 621 deletions(-) create mode 100644 web/src/lib/components/album-page/album-card-group.svelte create mode 100644 web/src/lib/components/album-page/album-cover.svelte create mode 100644 web/src/lib/components/album-page/albums-table-row.svelte create mode 100644 web/src/lib/components/shared-components/context-menu/right-click-context-menu.svelte create mode 100644 web/src/lib/utils/album-utils.ts diff --git a/web/src/lib/components/album-page/__tests__/album-card.spec.ts b/web/src/lib/components/album-page/__tests__/album-card.spec.ts index 6c6dc98f7..0c4996fbf 100644 --- a/web/src/lib/components/album-page/__tests__/album-card.spec.ts +++ b/web/src/lib/components/album-page/__tests__/album-card.spec.ts @@ -1,6 +1,4 @@ -import { createObjectURLMock } from '$lib/__mocks__/jsdom-url.mock'; import { sdkMock } from '$lib/__mocks__/sdk.mock'; -import { ThumbnailFormat } from '@immich/sdk'; import { albumFactory } from '@test-data'; import '@testing-library/jest-dom'; import { fireEvent, render, waitFor, type RenderResult } from '@testing-library/svelte'; @@ -33,7 +31,7 @@ describe('AlbumCard component', () => { shared: true, }, ])('shows album data without thumbnail with count $count - shared: $shared', async ({ album, count, shared }) => { - sut = render(AlbumCard, { album }); + sut = render(AlbumCard, { album, showItemCount: true }); const albumImgElement = sut.getByTestId('album-image'); const albumNameElement = sut.getByTestId('album-name'); @@ -52,36 +50,22 @@ describe('AlbumCard component', () => { expect(albumDetailsElement).toHaveTextContent(new RegExp(detailsText)); }); - it('shows album data and loads the thumbnail image when available', async () => { - const thumbnailFile = new File([new Blob()], 'fileThumbnail'); - const thumbnailUrl = 'blob:thumbnailUrlOne'; - sdkMock.getAssetThumbnail.mockResolvedValue(thumbnailFile); - createObjectURLMock.mockReturnValueOnce(thumbnailUrl); - + it('shows album data', () => { const album = albumFactory.build({ - albumThumbnailAssetId: 'thumbnailIdOne', shared: false, albumName: 'some album name', }); - sut = render(AlbumCard, { album }); + sut = render(AlbumCard, { album, showItemCount: true }); const albumImgElement = sut.getByTestId('album-image'); const albumNameElement = sut.getByTestId('album-name'); const albumDetailsElement = sut.getByTestId('album-details'); - expect(albumImgElement).toHaveAttribute('alt', album.albumName); - - await waitFor(() => expect(albumImgElement).toHaveAttribute('src', thumbnailUrl)); expect(albumImgElement).toHaveAttribute('alt', album.albumName); - expect(sdkMock.getAssetThumbnail).toHaveBeenCalledTimes(1); - expect(sdkMock.getAssetThumbnail).toHaveBeenCalledWith({ - id: 'thumbnailIdOne', - format: ThumbnailFormat.Jpeg, - }); - expect(createObjectURLMock).toHaveBeenCalledWith(thumbnailFile); + expect(albumImgElement).toHaveAttribute('src'); expect(albumNameElement).toHaveTextContent('some album name'); - expect(albumDetailsElement).toHaveTextContent('0 items'); + expect(albumDetailsElement).toHaveTextContent('0 item'); }); it('hides context menu when "onShowContextMenu" is undefined', () => { diff --git a/web/src/lib/components/album-page/album-card-group.svelte b/web/src/lib/components/album-page/album-card-group.svelte new file mode 100644 index 000000000..4c303caa6 --- /dev/null +++ b/web/src/lib/components/album-page/album-card-group.svelte @@ -0,0 +1,69 @@ + + +{#if group} +
+ + +

toggleAlbumGroupCollapsing(group.id)} class="w-fit mt-2 pt-2 pr-2 mb-2 hover:cursor-pointer"> + + {group.name} + ({albums.length} {albums.length > 1 ? 'albums' : 'album'}) +

+
+
+{/if} + +
+ {#if !isCollapsed} + + {/if} +
diff --git a/web/src/lib/components/album-page/album-card.svelte b/web/src/lib/components/album-page/album-card.svelte index 295866077..a4dc9aaa6 100644 --- a/web/src/lib/components/album-page/album-card.svelte +++ b/web/src/lib/components/album-page/album-card.svelte @@ -2,43 +2,25 @@ import Icon from '$lib/components/elements/icon.svelte'; import { locale } from '$lib/stores/preferences.store'; import { user } from '$lib/stores/user.store'; - import { getAssetThumbnailUrl } from '$lib/utils'; - import { ThumbnailFormat, getAssetThumbnail, getUserById, type AlbumResponseDto } from '@immich/sdk'; + import type { AlbumResponseDto } from '@immich/sdk'; import { mdiDotsVertical } from '@mdi/js'; - import { onMount } from 'svelte'; - import { getContextMenuPosition, type ContextMenuPosition } from '../../utils/context-menu'; - import IconButton from '../elements/buttons/icon-button.svelte'; + import { getContextMenuPosition, type ContextMenuPosition } from '$lib/utils/context-menu'; + import { getShortDateRange } from '$lib/utils/date-time'; + import IconButton from '$lib/components/elements/buttons/icon-button.svelte'; + import AlbumCover from '$lib/components/album-page/album-cover.svelte'; export let album: AlbumResponseDto; - export let isSharingView = false; - export let showItemCount = true; + export let showOwner = false; + export let showDateRange = false; + export let showItemCount = false; export let preload = false; - export let onShowContextMenu: ((position: ContextMenuPosition) => void) | undefined = undefined; - - $: imageData = album.albumThumbnailAssetId - ? getAssetThumbnailUrl(album.albumThumbnailAssetId, ThumbnailFormat.Webp) - : null; - - const loadHighQualityThumbnail = async (assetId: string | null) => { - if (!assetId) { - return; - } - - const data = await getAssetThumbnail({ id: assetId, format: ThumbnailFormat.Jpeg }); - return URL.createObjectURL(data); - }; + export let onShowContextMenu: ((position: ContextMenuPosition) => unknown) | undefined = undefined; const showAlbumContextMenu = (e: MouseEvent) => { e.stopPropagation(); e.preventDefault(); onShowContextMenu?.(getContextMenuPosition(e)); }; - - onMount(async () => { - imageData = (await loadHighQualityThumbnail(album.albumThumbnailAssetId)) || null; - }); - - const getAlbumOwnerInfo = () => getUserById({ id: album.ownerId });
{/if} -
- {#if album.albumThumbnailAssetId} - {album.albumName} - {:else} - - {/if} -
+

{album.albumName}

- + {#if showDateRange && album.startDate && album.endDate} +

+ {getShortDateRange(album.startDate, album.endDate)} +

+ {/if} + + {#if showItemCount}

{album.assetCount.toLocaleString($locale)} - {album.assetCount == 1 ? `item` : `items`} + {album.assetCount === 1 ? `item` : `items`}

{/if} - {#if isSharingView || album.shared} -

·

+ {#if (showOwner || album.shared) && showItemCount} +

{/if} - {#if isSharingView} - {#await getAlbumOwnerInfo() then albumOwner} - {#if $user.email == albumOwner.email} -

Owned

- {:else} -

- Shared by {albumOwner.name} -

- {/if} - {/await} + {#if showOwner} + {#if $user.id === album.ownerId} +

Owned

+ {:else if album.owner} +

Shared by {album.owner.name}

+ {:else} +

Shared

+ {/if} {:else if album.shared}

Shared

{/if} diff --git a/web/src/lib/components/album-page/album-cover.svelte b/web/src/lib/components/album-page/album-cover.svelte new file mode 100644 index 000000000..8e289de03 --- /dev/null +++ b/web/src/lib/components/album-page/album-cover.svelte @@ -0,0 +1,36 @@ + + +
+ {#if thumbnailUrl} + {album?.albumName + {:else} + + {/if} +
diff --git a/web/src/lib/components/album-page/album-description.svelte b/web/src/lib/components/album-page/album-description.svelte index e860fbcd2..505e93414 100644 --- a/web/src/lib/components/album-page/album-description.svelte +++ b/web/src/lib/components/album-page/album-description.svelte @@ -37,7 +37,7 @@ on:input={(e) => autoGrowHeight(e.currentTarget)} on:focusout={handleUpdateDescription} use:autoGrowHeight - placeholder="Add description" + placeholder="Add a description" use:shortcut={{ shortcut: { key: 'Enter', ctrl: true }, onShortcut: (e) => e.currentTarget.blur(), diff --git a/web/src/lib/components/album-page/album-viewer.svelte b/web/src/lib/components/album-page/album-viewer.svelte index 08d610ceb..cccb080ff 100644 --- a/web/src/lib/components/album-page/album-viewer.svelte +++ b/web/src/lib/components/album-page/album-viewer.svelte @@ -6,7 +6,7 @@ import type { AlbumResponseDto, SharedLinkResponseDto, UserResponseDto } from '@immich/sdk'; import { createAssetInteractionStore } from '../../stores/asset-interaction.store'; import { AssetStore } from '../../stores/assets.store'; - import { downloadArchive } from '../../utils/asset-utils'; + import { downloadAlbum } from '../../utils/asset-utils'; import CircleIconButton from '../elements/buttons/circle-icon-button.svelte'; import DownloadAction from '../photos-page/actions/download-action.svelte'; import AssetGrid from '../photos-page/asset-grid.svelte'; @@ -36,10 +36,6 @@ dragAndDropFilesStore.set({ isDragging: false, files: [] }); } }); - - const downloadAlbum = async () => { - await downloadArchive(`${album.albumName}.zip`, { albumId: album.id }); - }; 0 && sharedLink.allowDownload} - downloadAlbum()} icon={mdiFolderDownloadOutline} /> + downloadAlbum(album)} icon={mdiFolderDownloadOutline} /> {/if} diff --git a/web/src/lib/components/album-page/albums-controls.svelte b/web/src/lib/components/album-page/albums-controls.svelte index a5f2c9276..ae51c2f48 100644 --- a/web/src/lib/components/album-page/albums-controls.svelte +++ b/web/src/lib/components/album-page/albums-controls.svelte @@ -2,30 +2,94 @@ import LinkButton from '$lib/components/elements/buttons/link-button.svelte'; import Dropdown from '$lib/components/elements/dropdown.svelte'; import Icon from '$lib/components/elements/icon.svelte'; - import { AlbumFilter, AlbumViewMode, albumViewSettings } from '$lib/stores/preferences.store'; + import { + AlbumFilter, + AlbumGroupBy, + AlbumViewMode, + albumViewSettings, + SortOrder, + } from '$lib/stores/preferences.store'; import { mdiArrowDownThin, mdiArrowUpThin, + mdiFolderArrowDownOutline, + mdiFolderArrowUpOutline, + mdiFolderRemoveOutline, mdiFormatListBulletedSquare, mdiPlusBoxOutline, + mdiUnfoldLessHorizontal, + mdiUnfoldMoreHorizontal, mdiViewGridOutline, } from '@mdi/js'; - import { sortByOptions, type Sort, handleCreateAlbum } from '$lib/components/album-page/albums-list.svelte'; + import { + type AlbumGroupOptionMetadata, + type AlbumSortOptionMetadata, + findGroupOptionMetadata, + findSortOptionMetadata, + getSelectedAlbumGroupOption, + groupOptionsMetadata, + sortOptionsMetadata, + } from '$lib/utils/album-utils'; import SearchBar from '$lib/components/elements/search-bar.svelte'; import GroupTab from '$lib/components/elements/group-tab.svelte'; + import { createAlbumAndRedirect, collapseAllAlbumGroups, expandAllAlbumGroups } from '$lib/utils/album-utils'; + import { fly } from 'svelte/transition'; - export let searchAlbum: string; + export let albumGroups: string[]; + export let searchQuery: string; - const searchSort = (searched: string): Sort => { - return sortByOptions.find((option) => option.title === searched) || sortByOptions[0]; + const flipOrdering = (ordering: string) => { + return ordering === SortOrder.Asc ? SortOrder.Desc : SortOrder.Asc; + }; + + const handleChangeGroupBy = ({ id, defaultOrder }: AlbumGroupOptionMetadata) => { + if ($albumViewSettings.groupBy === id) { + $albumViewSettings.groupOrder = flipOrdering($albumViewSettings.groupOrder); + } else { + $albumViewSettings.groupBy = id; + $albumViewSettings.groupOrder = defaultOrder; + } + }; + + const handleChangeSortBy = ({ id, defaultOrder }: AlbumSortOptionMetadata) => { + if ($albumViewSettings.sortBy === id) { + $albumViewSettings.sortOrder = flipOrdering($albumViewSettings.sortOrder); + } else { + $albumViewSettings.sortBy = id; + $albumViewSettings.sortOrder = defaultOrder; + } }; const handleChangeListMode = () => { $albumViewSettings.view = $albumViewSettings.view === AlbumViewMode.Cover ? AlbumViewMode.List : AlbumViewMode.Cover; }; + + let selectedGroupOption: AlbumGroupOptionMetadata; + let groupIcon: string; + + $: { + selectedGroupOption = findGroupOptionMetadata($albumViewSettings.groupBy); + if (selectedGroupOption.isDisabled()) { + selectedGroupOption = findGroupOptionMetadata(AlbumGroupBy.None); + } + } + + $: selectedSortOption = findSortOptionMetadata($albumViewSettings.sortBy); + + $: { + if (selectedGroupOption.id === AlbumGroupBy.None) { + groupIcon = mdiFolderRemoveOutline; + } else { + groupIcon = + $albumViewSettings.groupOrder === SortOrder.Desc ? mdiFolderArrowDownOutline : mdiFolderArrowUpOutline; + } + } + + $: sortIcon = $albumViewSettings.sortOrder === SortOrder.Desc ? mdiArrowDownThin : mdiArrowUpThin; + -