1
mirror of https://github.com/home-assistant/core synced 2024-08-28 03:36:46 +02:00
ha-core/homeassistant/components/picnic/strings.json
Duco Sebel af15aab35e
Add Picnic shopping cart as Todo list (#102855)
Co-authored-by: Robert Resch <robert@resch.dev>
Co-authored-by: Allen Porter <allen.porter@gmail.com>
2023-11-22 08:40:19 +01:00

105 lines
3.1 KiB
JSON

{
"config": {
"step": {
"user": {
"data": {
"username": "[%key:common::config_flow::data::username%]",
"password": "[%key:common::config_flow::data::password%]",
"country_code": "Country code"
}
}
},
"error": {
"cannot_connect": "[%key:common::config_flow::error::cannot_connect%]",
"invalid_auth": "[%key:common::config_flow::error::invalid_auth%]",
"unknown": "[%key:common::config_flow::error::unknown%]",
"different_account": "Account should be the same as used for setting up the integration"
},
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_device%]",
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]"
}
},
"entity": {
"todo": {
"shopping_cart": {
"name": "Shopping cart"
}
},
"sensor": {
"cart_items_count": {
"name": "Cart items count"
},
"cart_total_price": {
"name": "Cart total price"
},
"selected_slot_start": {
"name": "Start of selected slot"
},
"selected_slot_end": {
"name": "End of selected slot"
},
"selected_slot_max_order_time": {
"name": "Max order time of selected slot"
},
"selected_slot_min_order_value": {
"name": "Minimum order value for selected slot"
},
"last_order_slot_start": {
"name": "Start of last order's slot"
},
"last_order_slot_end": {
"name": "End of last order's slot"
},
"last_order_status": {
"name": "Status of last order"
},
"last_order_max_order_time": {
"name": "Max order time of last order"
},
"last_order_delivery_time": {
"name": "Last order delivery time"
},
"last_order_total_price": {
"name": "Total price of last order"
},
"next_delivery_eta_start": {
"name": "Expected start of next delivery"
},
"next_delivery_eta_end": {
"name": "Expected end of next delivery"
},
"next_delivery_slot_start": {
"name": "Start of next delivery's slot"
},
"next_delivery_slot_end": {
"name": "End of next delivery's slot"
}
}
},
"services": {
"add_product": {
"name": "Add a product to the cart",
"description": "Adds a product to the cart based on a search string or product ID. The search string and product ID are exclusive.",
"fields": {
"config_entry_id": {
"name": "Picnic service",
"description": "The product will be added to the selected service."
},
"product_id": {
"name": "Product ID",
"description": "The product ID of a Picnic product."
},
"product_name": {
"name": "Product name",
"description": "Search for a product and add the first result."
},
"amount": {
"name": "Amount",
"description": "Amount to add of the selected product."
}
}
}
}
}