1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-26 05:57:01 +00:00
Files
core/homeassistant/components/google_sheets/strings.json
Luca Angemi ce93de7fc6 Add google sheet get service (#150133)
Co-authored-by: Norbert Rittel <norbert@rittel.de>
Co-authored-by: Erik Montnemery <erik@montnemery.com>
2025-10-28 14:21:51 +01:00

83 lines
3.9 KiB
JSON

{
"application_credentials": {
"description": "Follow the [instructions]({more_info_url}) for [OAuth consent screen]({oauth_consent_url}) to give Home Assistant access to your Google Sheets. You also need to create Application Credentials linked to your account:\n1. Go to [Credentials]({oauth_creds_url}) and select **Create Credentials**.\n1. From the drop-down list select **OAuth client ID**.\n1. Select **Web application** for the Application Type."
},
"config": {
"abort": {
"already_configured": "[%key:common::config_flow::abort::already_configured_account%]",
"already_in_progress": "[%key:common::config_flow::abort::already_in_progress%]",
"authorize_url_timeout": "[%key:common::config_flow::abort::oauth2_authorize_url_timeout%]",
"create_spreadsheet_failure": "Error while creating spreadsheet, see error log for details",
"missing_configuration": "[%key:common::config_flow::abort::oauth2_missing_configuration%]",
"missing_credentials": "[%key:common::config_flow::abort::oauth2_missing_credentials%]",
"no_url_available": "[%key:common::config_flow::abort::oauth2_no_url_available%]",
"oauth_error": "[%key:common::config_flow::abort::oauth2_error%]",
"oauth_failed": "[%key:common::config_flow::abort::oauth2_failed%]",
"oauth_timeout": "[%key:common::config_flow::abort::oauth2_timeout%]",
"oauth_unauthorized": "[%key:common::config_flow::abort::oauth2_unauthorized%]",
"open_spreadsheet_failure": "Error while opening spreadsheet, see error log for details",
"reauth_successful": "[%key:common::config_flow::abort::reauth_successful%]",
"user_rejected_authorize": "[%key:common::config_flow::abort::oauth2_user_rejected_authorize%]"
},
"create_entry": {
"default": "Successfully authenticated and spreadsheet created at: {url}"
},
"step": {
"auth": {
"title": "Link Google Account"
},
"pick_implementation": {
"data": {
"implementation": "[%key:common::config_flow::data::implementation%]"
},
"data_description": {
"implementation": "[%key:common::config_flow::description::implementation%]"
},
"title": "[%key:common::config_flow::title::oauth2_pick_implementation%]"
},
"reauth_confirm": {
"description": "The Google Sheets integration needs to re-authenticate your account",
"title": "[%key:common::config_flow::title::reauth%]"
}
}
},
"services": {
"append_sheet": {
"description": "Appends data to a worksheet in Google Sheets.",
"fields": {
"config_entry": {
"description": "The sheet to add data to.",
"name": "Sheet"
},
"data": {
"description": "Data to be appended to the worksheet. This puts the values on new rows underneath the matching column (key). Any new key is placed on the top of a new column.",
"name": "Data"
},
"worksheet": {
"description": "Name of the worksheet. Defaults to the first one in the document.",
"name": "Worksheet"
}
},
"name": "Append to sheet"
},
"get_sheet": {
"description": "Gets data from a worksheet in Google Sheets.",
"fields": {
"config_entry": {
"description": "The sheet to get data from.",
"name": "[%key:component::google_sheets::services::append_sheet::fields::config_entry::name%]"
},
"rows": {
"description": "Maximum number of rows from the end of the worksheet to return.",
"name": "Rows"
},
"worksheet": {
"description": "[%key:component::google_sheets::services::append_sheet::fields::worksheet::description%]",
"name": "[%key:component::google_sheets::services::append_sheet::fields::worksheet::name%]"
}
},
"name": "Get data from sheet"
}
}
}