summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-08-27 12:43:18 +0000
committerDries Buytaert <dries@buytaert.net>2006-08-27 12:43:18 +0000
commitf2f3416549391ce0102c193abcea3fdd5d1d98ef (patch)
treed4c7f57e9fa22877d73b642ecfba9ed08aa06d66 /includes
parent163f1accd9e80664f8f62c7d86487417df39caf4 (diff)
downloadbrdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.gz
brdo-f2f3416549391ce0102c193abcea3fdd5d1d98ef.tar.bz2
- Patch #80934 by timnc: more t() fixes.
Diffstat (limited to 'includes')
-rw-r--r--includes/pager.inc2
-rw-r--r--includes/tablesort.inc2
2 files changed, 2 insertions, 2 deletions
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';