2022-09-14 18:31:54 +00:00
{
"config" : {
"step" : {
"pick_implementation" : {
"title" : "[%key:common::config_flow::title::oauth2_pick_implementation%]"
} ,
2023-11-11 10:02:51 +00:00
"auth" : { "title" : "Link Google Account" } ,
2022-10-02 00:42:11 +00:00
"reauth_confirm" : {
"title" : "[%key:common::config_flow::title::reauth%]" ,
"description" : "The Google Sheets integration needs to re-authenticate your account"
2022-09-14 18:31:54 +00:00
}
} ,
"abort" : {
"already_configured" : "[%key:common::config_flow::abort::already_configured_account%]" ,
"already_in_progress" : "[%key:common::config_flow::abort::already_in_progress%]" ,
"cannot_connect" : "[%key:common::config_flow::error::cannot_connect%]" ,
"timeout_connect" : "[%key:common::config_flow::error::timeout_connect%]" ,
"oauth_error" : "[%key:common::config_flow::abort::oauth2_error%]" ,
"missing_configuration" : "[%key:common::config_flow::abort::oauth2_missing_configuration%]" ,
"reauth_successful" : "[%key:common::config_flow::abort::reauth_successful%]" ,
"invalid_access_token" : "[%key:common::config_flow::error::invalid_access_token%]" ,
"unknown" : "[%key:common::config_flow::error::unknown%]" ,
"create_spreadsheet_failure" : "Error while creating spreadsheet, see error log for details" ,
2023-11-11 10:02:51 +00:00
"open_spreadsheet_failure" : "Error while opening spreadsheet, see error log for details" ,
"oauth_timeout" : "[%key:common::config_flow::abort::oauth2_timeout%]" ,
2023-11-12 20:13:38 +00:00
"oauth_unauthorized" : "[%key:common::config_flow::abort::oauth2_unauthorized%]" ,
"oauth_failed" : "[%key:common::config_flow::abort::oauth2_failed%]"
2022-09-14 18:31:54 +00:00
} ,
"create_entry" : {
"default" : "Successfully authenticated and spreadsheet created at: {url}"
}
} ,
"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 click **Create Credentials**.\n1. From the drop-down list select **OAuth client ID**.\n1. Select **Web application** for the Application Type.\n\n"
2023-07-12 10:31:26 +00:00
} ,
"services" : {
"append_sheet" : {
"name" : "Append to sheet" ,
"description" : "Appends data to a worksheet in Google Sheets." ,
"fields" : {
"config_entry" : {
"name" : "Sheet" ,
"description" : "The sheet to add data to."
} ,
"worksheet" : {
"name" : "Worksheet" ,
"description" : "Name of the worksheet. Defaults to the first one in the document."
} ,
"data" : {
"name" : "Data" ,
2024-07-11 07:05:22 +00:00
"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."
2023-07-12 10:31:26 +00:00
}
}
}
2022-09-14 18:31:54 +00:00
}
}