You are here

function special_t in GoogleTagManager 7.2

Returns a translated string after placeholder substitution.

Parameters

string $string: The string to manipulate.

Return value

string The translated string.

1 call to special_t()
_google_tag_variable_info_generic in includes/variable.inc
Implements hook_variable_info().

File

includes/variable.inc, line 277
Contains the variable definitions.

Code

function special_t($string, $args) {
  return t(strtr($string, $args));
}