diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-11-13 08:22:07 -0800 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-11-13 08:22:07 -0800 |
commit | a60b8dec7a59cfc73b50cdc55ff01be6310d028c (patch) | |
tree | 5e7affa223e415687a2ed079ea6a7e67d47d75c5 | |
parent | a6ecde70a999c54b5759d57f00c60de3995b041f (diff) | |
download | brdo-a60b8dec7a59cfc73b50cdc55ff01be6310d028c.tar.gz brdo-a60b8dec7a59cfc73b50cdc55ff01be6310d028c.tar.bz2 |
Issue #1837840 by amontero, tstoeckler: Add clarification to l() docs as to when to use t() instead
-rw-r--r-- | includes/common.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc index 8276576e0..d521268eb 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -2379,6 +2379,14 @@ function drupal_attributes(array $attributes = array()) { * internal links output by modules should be generated by this function if * possible. * + * However, for links enclosed in translatable text you should use t() and + * embed the HTML anchor tag directly in the translated string. For example: + * @code + * t('Visit the <a href="@url">settings</a> page', array('@url' => url('admin'))); + * @endcode + * This keeps the context of the link title ('settings' in the example) for + * translators. + * * @param string $text * The translated link text for the anchor tag. * @param string $path |