/[drupal]/contributions/modules/translation_status/translation_status.report.inc
ViewVC logotype

Diff of /contributions/modules/translation_status/translation_status.report.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1, Fri Sep 5 19:07:42 2008 UTC revision 1.2, Thu Oct 16 12:12:17 2008 UTC
# Line 1  Line 1 
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
# Line 53  function translation_status_report() { Line 53  function translation_status_report() {
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(
# Line 81  function theme_translation_status_report Line 82  function theme_translation_status_report
82        $rows[] = $row;        $rows[] = $row;
83      }      }
84    }    }
85    return theme('table', $header, $rows);    $output .= theme('table', $header, $rows);
86      return $output;
87  }  }
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

  ViewVC Help
Powered by ViewVC 1.1.2