You are here

function _datex_t in Datex 7.2

Drupal translator wrapper.

For registering new translator, You should leave this function untouched and change _datex_get_translator().

1 string reference to '_datex_t'
_datex_get_translator in datex_api/datex_api.class.inc
Default translator is set to t() for Drupal.

File

datex_api/datex_api.class.inc, line 27
Provides an API to work with dates.

Code

function _datex_t($string) {
  return t($string, array(), array(
    'context' => 'datex',
  ));
}