2020-05-13 13:50:29 +00:00
{
"config" : {
"step" : {
"user" : {
"title" : "Sign-in with Blink account" ,
"data" : {
2022-03-30 08:35:30 +00:00
"username" : "[%key:common::config_flow::data::username%]" ,
"password" : "[%key:common::config_flow::data::password%]"
2020-05-13 13:50:29 +00:00
}
} ,
"2fa" : {
"title" : "Two-factor authentication" ,
2023-07-11 21:06:32 +00:00
"data" : {
"2fa" : "Two-factor code"
} ,
2022-12-21 11:40:28 +00:00
"description" : "Enter the PIN sent via email or SMS"
2020-05-13 13:50:29 +00:00
}
} ,
"error" : {
"invalid_auth" : "[%key:common::config_flow::error::invalid_auth%]" ,
2020-08-05 10:21:14 +00:00
"invalid_access_token" : "[%key:common::config_flow::error::invalid_access_token%]" ,
"cannot_connect" : "[%key:common::config_flow::error::cannot_connect%]" ,
2020-05-13 13:50:29 +00:00
"unknown" : "[%key:common::config_flow::error::unknown%]"
} ,
"abort" : {
2022-03-30 08:35:30 +00:00
"already_configured" : "[%key:common::config_flow::abort::already_configured_device%]"
2020-05-13 13:50:29 +00:00
}
2020-06-10 16:38:17 +00:00
} ,
"options" : {
"step" : {
"simple_options" : {
"data" : {
"scan_interval" : "Scan Interval (seconds)"
} ,
"title" : "Blink options" ,
"description" : "Configure Blink integration"
}
}
2023-06-26 16:29:33 +00:00
} ,
"entity" : {
"sensor" : {
2024-01-14 09:59:04 +00:00
"wifi_strength" : {
"name" : "Wi-Fi signal strength"
2023-06-26 16:29:33 +00:00
}
} ,
"binary_sensor" : {
"camera_armed" : {
"name" : "Camera armed"
}
2023-11-24 16:02:19 +00:00
} ,
"switch" : {
"camera_motion" : {
"name" : "Camera motion detection"
}
2023-06-26 16:29:33 +00:00
}
2023-07-11 21:06:32 +00:00
} ,
"services" : {
"blink_update" : {
"name" : "Update" ,
2023-12-09 18:18:59 +00:00
"description" : "Forces a refresh." ,
"fields" : {
"device_id" : {
"name" : "Device ID" ,
"description" : "The Blink device id."
}
}
2023-07-11 21:06:32 +00:00
} ,
2024-05-13 02:35:01 +00:00
"record" : {
"name" : "Record" ,
"description" : "Requests camera to record a clip."
} ,
2023-07-11 21:06:32 +00:00
"trigger_camera" : {
"name" : "Trigger camera" ,
2023-12-28 18:56:40 +00:00
"description" : "Requests camera to take new image."
2023-07-11 21:06:32 +00:00
} ,
"save_video" : {
"name" : "Save video" ,
"description" : "Saves last recorded video clip to local file." ,
"fields" : {
"filename" : {
"name" : "File name" ,
"description" : "Filename to writable path (directory may need to be included in allowlist_external_dirs in config)."
}
}
} ,
"save_recent_clips" : {
"name" : "Save recent clips" ,
"description" : "Saves all recent video clips to local directory with file pattern \"%Y%m%d_%H%M%S_{name}.mp4\"." ,
"fields" : {
"file_path" : {
"name" : "Output directory" ,
"description" : "Directory name of writable path (directory may need to be included in allowlist_external_dirs in config)."
}
}
} ,
"send_pin" : {
"name" : "Send pin" ,
"description" : "Sends a new PIN to blink for 2FA." ,
"fields" : {
"pin" : {
"name" : "Pin" ,
"description" : "PIN received from blink. Leave empty if you only received a verification email."
2023-12-09 18:18:59 +00:00
} ,
2023-12-28 18:56:40 +00:00
"config_entry_id" : {
"name" : "Integration ID" ,
"description" : "The Blink Integration id."
2023-07-11 21:06:32 +00:00
}
}
}
2023-11-30 21:40:41 +00:00
} ,
"exceptions" : {
2023-12-28 18:56:40 +00:00
"integration_not_found" : {
2024-04-21 19:19:48 +00:00
"message" : "Integration \"{target}\" not found in registry."
2023-11-30 21:40:41 +00:00
} ,
"no_path" : {
"message" : "Can't write to directory {target}, no access to path!"
} ,
"cant_write" : {
2024-04-21 19:19:48 +00:00
"message" : "Can't write to file."
2023-11-30 21:40:41 +00:00
} ,
"not_loaded" : {
2024-04-21 19:19:48 +00:00
"message" : "{target} is not loaded."
} ,
"failed_arm" : {
"message" : "Blink failed to arm camera."
} ,
"failed_disarm" : {
"message" : "Blink failed to disarm camera."
} ,
2024-05-13 02:35:01 +00:00
"failed_clip" : {
"message" : "Blink failed to record a clip."
} ,
2024-04-21 19:19:48 +00:00
"failed_snap" : {
"message" : "Blink failed to snap a picture."
} ,
"failed_arm_motion" : {
"message" : "Blink failed to arm camera motion detection."
} ,
"failed_disarm_motion" : {
"message" : "Blink failed to disarm camera motion detection."
2023-11-30 21:40:41 +00:00
}
2023-12-28 18:56:40 +00:00
} ,
"issues" : {
"service_deprecation" : {
"title" : "Blink update service is being removed" ,
"fix_flow" : {
"step" : {
"confirm" : {
"title" : "[%key:component::blink::issues::service_deprecation::title%]" ,
"description" : "Blink update service is deprecated and will be removed.\nPlease update your automations and scripts to use `Home Assistant Core Integration: Update entity`."
}
}
}
}
2022-03-30 08:35:30 +00:00
}
2020-05-13 13:50:29 +00:00
}