Index: i18nviews.module =================================================================== RCS file: /cvs/drupal/contributions/modules/i18n/i18nviews/i18nviews.module,v retrieving revision 1.1.2.5 diff -u -p -r1.1.2.5 i18nviews.module --- i18nviews.module 25 Apr 2007 19:07:02 -0000 1.1.2.5 +++ i18nviews.module 10 Oct 2008 19:20:06 -0000 @@ -57,6 +57,11 @@ function i18n_views_tables() { 'help' => t('Content language.'), 'cacheable' => 'no' // This query condition cannot be cached ); + $tables['i18n']['filters']['trid'] = array( + 'name' => t('Internationalization: Translation Status'), + 'operator' => 'views_handler_operator_gtlt', + 'help' => t('Choose = 0 for untranslated nodes. Translated nodes will have a value > 0.'), + ); return $tables; }