Abstract_Account_Api::get_confirmation_to_delete_account()
Get the confirmation text for deleting an account.
Return
(string) The confirmation text.
Source
File: src/Tribe/Integrations/Abstract_Account_Api.php
public static function get_confirmation_to_delete_account() {
return sprintf(
// translators: the placeholders are for the API name.
_x(
'Are you sure you want to delete this %1$s connection? This operation cannot be undone. Existing meetings tied to this account will not be impacted.',
'The message to display to confirm a user would like to delete a %1$s account.',
'events-virtual'
),
static::$api_name
);
}
Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |