| 1 |
<?php |
<?php |
| 2 |
// $Id: $ |
// $Id: translation_status.report.inc,v 1.1 2008/09/05 19:07:42 nedjo Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 53 |
* @ingroup themeable |
* @ingroup themeable |
| 54 |
*/ |
*/ |
| 55 |
function theme_translation_status_report($data) { |
function theme_translation_status_report($data) { |
| 56 |
|
$output = t("For each installed module, this page indicates whether translation files are present in each language enabled on the site. Note that the presence of a file does not in itself indicated that translations are complete or accurate."); |
| 57 |
$languages = language_list('enabled'); |
$languages = language_list('enabled'); |
| 58 |
unset($languages[1]['en']); |
unset($languages[1]['en']); |
| 59 |
$header = array( |
$header = array( |
| 82 |
$rows[] = $row; |
$rows[] = $row; |
| 83 |
} |
} |
| 84 |
} |
} |
| 85 |
return theme('table', $header, $rows); |
$output .= theme('table', $header, $rows); |
| 86 |
|
return $output; |
| 87 |
} |
} |
|
|
|