From f2f3416549391ce0102c193abcea3fdd5d1d98ef Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 27 Aug 2006 12:43:18 +0000 Subject: - Patch #80934 by timnc: more t() fixes. --- includes/pager.inc | 2 +- includes/tablesort.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'includes') diff --git a/includes/pager.inc b/includes/pager.inc index 31e01a79a..ee75166c5 100644 --- a/includes/pager.inc +++ b/includes/pager.inc @@ -388,7 +388,7 @@ function theme_pager_link($text, $page_new, $element, $parameters = array(), $at $attributes['title'] = $titles[$text]; } else if (is_numeric($text)) { - $attributes['title'] = t('Go to page %number', array('%number' => $text)); + $attributes['title'] = t('Go to page @number', array('@number' => $text)); } } diff --git a/includes/tablesort.inc b/includes/tablesort.inc index a2bba4d6a..eb1415615 100644 --- a/includes/tablesort.inc +++ b/includes/tablesort.inc @@ -63,7 +63,7 @@ function tablesort_sql($header, $before = '') { function tablesort_header($cell, $header, $ts) { // Special formatting for the currently sorted column header. if (is_array($cell) && isset($cell['field'])) { - $title = t('sort by %s', array('%s' => $cell['data'])); + $title = t('sort by @s', array('@s' => $cell['data'])); if ($cell['data'] == $ts['name']) { $ts['sort'] = (($ts['sort'] == 'asc') ? 'desc' : 'asc'); $cell['class'] = 'active'; -- cgit v1.2.3