-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* iCloud: setup ConfigFlow and prepare for more platforms - add config flow + tests - fix existing services - add play_sound & display_message services - document services - can use devices with the same name - prepare to add sensor platform * Review : not copy account conf * Review: Safer test patch * Review: remove reset_account * Review: Use executor_job while IO * Review: Use executor_job while IO 2 * Review: use hass.helpers.storage.Store() * Review: no IO in tests * Remove reset from services.yaml * Review: remove authenticate.return_value = Mock() * Review: do not initialize the api with the mocked service * isort * Review: @MartinHjelmare Test config flow with all steps * Review: Fix failed tests names * Codevov: Add one missing test
- Loading branch information
1 parent
f60125b
commit c804f8f
Showing
14 changed files
with
1,463 additions
and
556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"config": { | ||
"abort": { | ||
"username_exists": "Account already configured" | ||
}, | ||
"error": { | ||
"login": "Login error: please check your email & password", | ||
"send_verification_code": "Failed to send verification code", | ||
"username_exists": "Account already configured", | ||
"validate_verification_code": "Failed to verify your verification code, choose a trust device and start the verification again" | ||
}, | ||
"step": { | ||
"trusted_device": { | ||
"data": { | ||
"trusted_device": "Trusted device" | ||
}, | ||
"description": "Select your trusted device", | ||
"title": "iCloud trusted device" | ||
}, | ||
"user": { | ||
"data": { | ||
"password": "Password", | ||
"username": "Email" | ||
}, | ||
"description": "Enter your credentials", | ||
"title": "iCloud credentials" | ||
}, | ||
"verification_code": { | ||
"data": { | ||
"verification_code": "Verification code" | ||
}, | ||
"description": "Please enter the verification code you just received from iCloud", | ||
"title": "iCloud verification code" | ||
} | ||
}, | ||
"title": "Apple iCloud" | ||
} | ||
} |
Oops, something went wrong.