Abstract_Account_Api::get_confirmation_to_refresh_account()
Get the confirmation text for refreshing an account.
Return
(string) The confirmation text.
Source
File: src/Tribe/Integrations/Abstract_Account_Api.php
public static function get_confirmation_to_refresh_account() {
return sprintf(
// translators: the placeholders are for the API name.
_x(
'Before refreshing the connection, make sure you are logged into the %1$s account in this browser.',
'The message to display before a user attempts to refresh a %1$s account connection.',
'events-virtual'
),
static::$api_name
);
}
Changelog
| Version | Description |
|---|---|
| 1.9.0 | Introduced. |