mirror of
https://github.com/immich-app/immich.git
synced 2024-11-24 08:52:28 +02:00
fix(web): missing translations (#10504)
This commit is contained in:
parent
b3252ffdac
commit
aaf7c0b6db
@ -117,7 +117,7 @@
|
|||||||
<label class="flex items-center gap-2 immich-form-label" for="quotaSize">
|
<label class="flex items-center gap-2 immich-form-label" for="quotaSize">
|
||||||
{$t('admin.quota_size_gib')}
|
{$t('admin.quota_size_gib')}
|
||||||
{#if quotaSizeWarning}
|
{#if quotaSizeWarning}
|
||||||
<p class="text-red-400 text-sm">{$t('admin.quota_higher_than_disk_size')}</p>
|
<p class="text-red-400 text-sm">{$t('errors.quota_higher_than_disk_size')}</p>
|
||||||
{/if}
|
{/if}
|
||||||
</label>
|
</label>
|
||||||
<input class="immich-form-input" id="quotaSize" type="number" min="0" bind:value={quotaSize} />
|
<input class="immich-form-input" id="quotaSize" type="number" min="0" bind:value={quotaSize} />
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
|
|
||||||
<div class="mt-8 flex w-full gap-4">
|
<div class="mt-8 flex w-full gap-4">
|
||||||
{#if isDuplicate}
|
{#if isDuplicate}
|
||||||
<p class="text-red-500 text-sm">{$t('admin.import_path_already_exists')}</p>
|
<p class="text-red-500 text-sm">{$t('errors.import_path_already_exists')}</p>
|
||||||
{/if}
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -28,6 +28,7 @@
|
|||||||
"authentication_settings_reenable": "To re-enable, use a <link>Server Command</link>.",
|
"authentication_settings_reenable": "To re-enable, use a <link>Server Command</link>.",
|
||||||
"background_task_job": "Background Tasks",
|
"background_task_job": "Background Tasks",
|
||||||
"check_all": "Check All",
|
"check_all": "Check All",
|
||||||
|
"cleared_jobs": "Cleared jobs for: {job}",
|
||||||
"config_set_by_file": "Config is currently set by a config file",
|
"config_set_by_file": "Config is currently set by a config file",
|
||||||
"confirm_delete_library": "Are you sure you want to delete {library} library?",
|
"confirm_delete_library": "Are you sure you want to delete {library} library?",
|
||||||
"confirm_delete_library_assets": "Are you sure you want to delete this library? This will delete all {count} contained assets from Immich and cannot be undone. Files will remain on disk.",
|
"confirm_delete_library_assets": "Are you sure you want to delete this library? This will delete all {count} contained assets from Immich and cannot be undone. Files will remain on disk.",
|
||||||
@ -42,6 +43,7 @@
|
|||||||
"face_detection": "Face detection",
|
"face_detection": "Face detection",
|
||||||
"face_detection_description": "Detect the faces in assets using machine learning. For videos, only the thumbnail is considered. \"All\" (re-)processes all assets. \"Missing\" queues assets that haven't been processed yet. Detected faces will be queued for Facial Recognition after Face Detection is complete, grouping them into existing or new people.",
|
"face_detection_description": "Detect the faces in assets using machine learning. For videos, only the thumbnail is considered. \"All\" (re-)processes all assets. \"Missing\" queues assets that haven't been processed yet. Detected faces will be queued for Facial Recognition after Face Detection is complete, grouping them into existing or new people.",
|
||||||
"facial_recognition_job_description": "Group detected faces into people. This step runs after Face Detection is complete. \"All\" (re-)clusters all faces. \"Missing\" queues faces that don't have a person assigned.",
|
"facial_recognition_job_description": "Group detected faces into people. This step runs after Face Detection is complete. \"All\" (re-)clusters all faces. \"Missing\" queues faces that don't have a person assigned.",
|
||||||
|
"failed_job_command": "Command {command} failed for job: {job}",
|
||||||
"force_delete_user_warning": "WARNING: This will immediately remove the user and all assets. This cannot be undone and the files cannot be recovered.",
|
"force_delete_user_warning": "WARNING: This will immediately remove the user and all assets. This cannot be undone and the files cannot be recovered.",
|
||||||
"forcing_refresh_library_files": "Forcing refresh of all library files",
|
"forcing_refresh_library_files": "Forcing refresh of all library files",
|
||||||
"image_format_description": "WebP produces smaller files than JPEG, but is slower to encode.",
|
"image_format_description": "WebP produces smaller files than JPEG, but is slower to encode.",
|
||||||
@ -464,9 +466,7 @@
|
|||||||
"error": "Error",
|
"error": "Error",
|
||||||
"error_loading_image": "Error loading image",
|
"error_loading_image": "Error loading image",
|
||||||
"errors": {
|
"errors": {
|
||||||
"cleared_jobs": "Cleared jobs for: {job}",
|
|
||||||
"exclusion_pattern_already_exists": "This exclusion pattern already exists.",
|
"exclusion_pattern_already_exists": "This exclusion pattern already exists.",
|
||||||
"failed_job_command": "Command {command} failed for job: {job}",
|
|
||||||
"import_path_already_exists": "This import path already exists.",
|
"import_path_already_exists": "This import path already exists.",
|
||||||
"paths_validation_failed": "{paths, plural, one {# path} other {# paths}} failed validation",
|
"paths_validation_failed": "{paths, plural, one {# path} other {# paths}} failed validation",
|
||||||
"quota_higher_than_disk_size": "You set a quota higher than the disk size",
|
"quota_higher_than_disk_size": "You set a quota higher than the disk size",
|
||||||
@ -629,6 +629,7 @@
|
|||||||
"media_type": "Media type",
|
"media_type": "Media type",
|
||||||
"memories": "Memories",
|
"memories": "Memories",
|
||||||
"memories_setting_description": "Manage what you see in your memories",
|
"memories_setting_description": "Manage what you see in your memories",
|
||||||
|
"memory": "Memory",
|
||||||
"menu": "Menu",
|
"menu": "Menu",
|
||||||
"merge": "Merge",
|
"merge": "Merge",
|
||||||
"merge_people": "Merge people",
|
"merge_people": "Merge people",
|
||||||
@ -690,6 +691,7 @@
|
|||||||
"other_variables": "Other variables",
|
"other_variables": "Other variables",
|
||||||
"owned": "Owned",
|
"owned": "Owned",
|
||||||
"owner": "Owner",
|
"owner": "Owner",
|
||||||
|
"partner": "Partner",
|
||||||
"partner_can_access": "{partner} can access",
|
"partner_can_access": "{partner} can access",
|
||||||
"partner_can_access_assets": "All your photos and videos except those in Archived and Deleted",
|
"partner_can_access_assets": "All your photos and videos except those in Archived and Deleted",
|
||||||
"partner_can_access_location": "The location where your photos were taken",
|
"partner_can_access_location": "The location where your photos were taken",
|
||||||
@ -717,6 +719,7 @@
|
|||||||
"permanently_delete": "Permanently delete",
|
"permanently_delete": "Permanently delete",
|
||||||
"permanently_deleted_asset": "Permanently deleted asset",
|
"permanently_deleted_asset": "Permanently deleted asset",
|
||||||
"permanently_deleted_assets": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
|
"permanently_deleted_assets": "Permanently deleted {count, plural, one {# asset} other {# assets}}",
|
||||||
|
"person": "Person",
|
||||||
"photos": "Photos",
|
"photos": "Photos",
|
||||||
"photos_count": "{count, plural, one {{count, number} Photo} other {{count, number} Photos}}",
|
"photos_count": "{count, plural, one {{count, number} Photo} other {{count, number} Photos}}",
|
||||||
"photos_from_previous_years": "Photos from previous years",
|
"photos_from_previous_years": "Photos from previous years",
|
||||||
|
Loading…
Reference in New Issue
Block a user