diff options
Diffstat (limited to 'modules/tracker/tracker.module')
-rw-r--r-- | modules/tracker/tracker.module | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/tracker/tracker.module b/modules/tracker/tracker.module index c590582a8..f323d644e 100644 --- a/modules/tracker/tracker.module +++ b/modules/tracker/tracker.module @@ -16,12 +16,12 @@ function tracker_help($section) { $output .= '<p>'. t('The "recent posts" page is available via a link in the navigation menu block and contains a reverse chronological list of new and recently-updated content. The table displays the content type, the title, the author\'s name, how many comments that item has received, and when it was last updated. Updates include any changes to the text, either by the original author or someone else, as well as any new comments added to an item. To use the tracker module to <em>watch</em> for a user\'s updated content, click on that user\'s profile, then the <em>track</em> tab.') .'</p>'; $output .= t('<p>You can</p> <ul> -<li>view the <a href="%tracker">most recent posts</a>.</li> -<li>view <a href="%profile">user profiles</a> and select the track tab.</li> +<li>view the <a href="@tracker">most recent posts</a>.</li> +<li>view <a href="@profile">user profiles</a> and select the track tab.</li> <li>not administer this module.</li> </ul> -', array('%tracker' => url('tracker'), '%profile' => url('profile'))); - $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%tracker">Tracker page</a>.', array('%tracker' => 'http://drupal.org/handbook/modules/tracker/')) .'</p>'; +', array('@tracker' => url('tracker'), '@profile' => url('profile'))); + $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@tracker">Tracker page</a>.', array('@tracker' => 'http://drupal.org/handbook/modules/tracker/')) .'</p>'; return $output; case 'admin/settings/modules#description': return t('Enables tracking of recent posts for users.'); @@ -109,7 +109,7 @@ function tracker_page($uid = 0) { if ($new = comment_num_new($node->nid)) { $comments .= '<br />'; - $comments .= l(format_plural($new, '1 new', '%count new'), "node/$node->nid", NULL, NULL, 'new'); + $comments .= l(format_plural($new, '1 new', '@count new'), "node/$node->nid", NULL, NULL, 'new'); } } @@ -118,7 +118,7 @@ function tracker_page($uid = 0) { l($node->title, "node/$node->nid") .' '. theme('mark', node_mark($node->nid, $node->changed)), theme('username', $node), array('class' => 'replies', 'data' => $comments), - t('%time ago', array('%time' => format_interval(time() - $node->last_post))) + t('@time ago', array('@time' => format_interval(time() - $node->last_post))) ); } |