function notifications_tt in Notifications 6.3
Wrapper function for tt() if i18nstrings enabled.
2 calls to notifications_tt()
- notifications_content_notifications in notifications_content/
notifications_content.module - Implementation of hook_notifications()
- _notifications_content_node_options in notifications_content/
notifications_content.module - Subscribe / unsubscribe options to specific node.
File
- ./
notifications.module, line 1896 - Notifications module
Code
function notifications_tt($name, $string, $langcode = NULL, $update = FALSE) {
if (module_exists('18nstrings')) {
return tt($name, $string, $langcode, $update);
}
else {
return $string;
}
}