Error message

Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home1/tylerfra/public_html/includes/common.inc).

When should I use t() in Drupal?

Category: 
Tags: 

This page contains information about when, and when not to use the t() function in Drupal 7 (and beyond). I learned this information from the Localization API, and will add more tid-bits as I learn them. Until then, t('thanks for stopping by!');

When to use it...

drupal_set_message(t('Hello'));
l(t('Hello'));

When to NOT use it...

In hook_menu() and/or hook_perm()

Text declared in hook_menu() and hook_perm() are automatically translated when displayed.

With watchdog()

Watchdog messages are stored in English, and automatically translated when displayed.

In a variable

$msg = 'Hello';
drupal_set_message($msg);
watchdog('example', $msg);

In a .info file

Just use plain strings in your module's .info file, Drupal will take care of the rest.