






// Simple
echo t('Hello Drupal');
// @see format_string()
// pass through
echo t('Hello !name', array('!name' => 'Drupal'));
// Wrap with
echo t('Hello %name', array('%name' => 'Drupal'));
// check_plain()
echo t('Hello @name', array('@name' => 'Drupal'));
// @see hook_language_types_info()
echo t('Vietnamese', array('context' => 'Language'));
echo t('Vietnamese', array('context' => 'People'));
// Notes, t() is already used insideecho format_plural($people, '1 person', '@count people');
