Files
core/homeassistant/components/immich/strings.json
Michael a576f7baf3 Add Immich integration (#145125)
* add immich integration

* bump aioimmich==0.3.1

* rework to require an url as input and pare it afterwards

* fix doc strings

* remove name attribute from deviceinfo as it is default behaviour

* add translated uom for count sensors

* explicitly pass in the config_entry in coordinator

* fix url in strings to uppercase

* use data_updates attribute instead of data

* remove left over

* match entries only by host

* remove quotes

* import SOURCE_USER directly, instead of config_entries

* split happy and sad flow tests

* remove unneccessary async_block_till_done() calls

* replace url example by "full URL"

* bump aioimmich==0.4.0

* bump aioimmich==0.5.0

* allow multiple users for same immich instance

* Fix tests

* limit entities when user has no admin rights

* Fix tests

* Fix tests

---------

Co-authored-by: Joostlek <joostlek@outlook.com>
2025-05-18 21:28:15 +02:00

74 lines
2.3 KiB
JSON

{
"common": {
"data_desc_url": "The full URL of your immich instance.",
"data_desc_api_key": "API key to connect to your immich instance.",
"data_desc_ssl_verify": "Whether to verify the SSL certificate when SSL encryption is used to connect to your immich instance."
},
"config": {
"step": {
"user": {
"data": {
"url": "[%key:common::config_flow::data::url%]",
"api_key": "[%key:common::config_flow::data::api_key%]",
"verify_ssl": "[%key:common::config_flow::data::verify_ssl%]"
},
"data_description": {
"url": "[%key:component::immich::common::data_desc_url%]",
"api_key": "[%key:component::immich::common::data_desc_api_key%]",
"verify_ssl": "[%key:component::immich::common::data_desc_ssl_verify%]"
}
},
"reauth_confirm": {
"description": "Update the API key for {name}.",
"data": {
"api_key": "[%key:common::config_flow::data::api_key%]"
},
"data_description": {
"api_key": "[%key:component::immich::common::data_desc_api_key%]"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"invalid_url": "The provided URL is invalid.",
"unknown": "[%key:common::config_flow::error::unknown%]"
},
"abort": {
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]",
"unique_id_mismatch": "The provided API key does not match the configured user.",
"already_configured": "This user is already configured for this immich instance."
}
},
"entity": {
"sensor": {
"disk_size": {
"name": "Disk size"
},
"disk_available": {
"name": "Disk available"
},
"disk_use": {
"name": "Disk used"
},
"disk_usage": {
"name": "Disk usage"
},
"photos_count": {
"name": "Photos count",
"unit_of_measurement": "photos"
},
"videos_count": {
"name": "Videos count",
"unit_of_measurement": "videos"
},
"usage_by_photos": {
"name": "Disk used by photos"
},
"usage_by_videos": {
"name": "Disk used by videos"
}
}
}
}