1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 14:08:21 +00:00
Files
core/homeassistant/components/minio/strings.json
Paulus Schoutsen 7859be6481 Add deduplicate translations script (#96384)
* Add deduplicate script

* Fix forecast_solar incorrect key with space

* Fix utf-8

* Do not create references to other arbitrary other integrations

* Add commented code to only allow applying to referencing integrations

* Tweak

* Bug fix

* Add command line arg for limit reference

* never suggest to update common keys

* Output of script

* Apply suggestions from code review

Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>

---------

Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>
2023-07-13 11:52:50 -04:00

55 lines
1.5 KiB
JSON

{
"services": {
"get": {
"name": "Get",
"description": "Downloads file from Minio.",
"fields": {
"bucket": {
"name": "Bucket",
"description": "Bucket to use."
},
"key": {
"name": "Kay",
"description": "Object key of the file."
},
"file_path": {
"name": "File path",
"description": "File path on local filesystem."
}
}
},
"put": {
"name": "Put",
"description": "Uploads file to Minio.",
"fields": {
"bucket": {
"name": "[%key:component::minio::services::get::fields::bucket::name%]",
"description": "[%key:component::minio::services::get::fields::bucket::description%]"
},
"key": {
"name": "Key",
"description": "[%key:component::minio::services::get::fields::key::description%]"
},
"file_path": {
"name": "File path",
"description": "[%key:component::minio::services::get::fields::file_path::description%]"
}
}
},
"remove": {
"name": "Remove",
"description": "Deletes file from Minio.",
"fields": {
"bucket": {
"name": "[%key:component::minio::services::get::fields::bucket::name%]",
"description": "[%key:component::minio::services::get::fields::bucket::description%]"
},
"key": {
"name": "Key",
"description": "[%key:component::minio::services::get::fields::key::description%]"
}
}
}
}
}