? .bzr
? set_where_group.diff
? views-319991.patch
? views-348130.patch
? views-369969.patch
? views-408894.patch
? views-420430.patch
? views-field-empty.patch
? views-views_add_css_preprocess+docu.patch
? views_6.x_2.2.t_without_pseudotags.patch
? views_counter_field.patch
? views_counter_field.patch.1
? views_filesize_format.patch
? handlers/views_handler_field_counter.inc
? plugins/.views_plugin_style.inc.swp
? plugins/views_plugin_query.inc
? plugins/views_plugin_query_default.inc
Index: handlers/views_handler_argument.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/handlers/views_handler_argument.inc,v
retrieving revision 1.7
diff -u -p -r1.7 views_handler_argument.inc
--- handlers/views_handler_argument.inc	20 Feb 2009 20:12:38 -0000	1.7
+++ handlers/views_handler_argument.inc	19 Apr 2009 19:43:16 -0000
@@ -187,7 +187,7 @@ class views_handler_argument extends vie
       '#default_value' => $this->options['validate_type'],
     );
 
-    $validate_types = array('none' => t('<Basic validation>'));
+    $validate_types = array('none' => '<'. t('Basic validation') .'>');
     $plugins = views_fetch_plugin_data('argument validator');
     foreach ($plugins as $id => $info) {
       if (!empty($info['no ui'])) {
Index: handlers/views_handler_filter.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/handlers/views_handler_filter.inc,v
retrieving revision 1.6
diff -u -p -r1.6 views_handler_filter.inc
--- handlers/views_handler_filter.inc	7 Apr 2009 23:05:29 -0000	1.6
+++ handlers/views_handler_filter.inc	19 Apr 2009 19:43:16 -0000
@@ -462,7 +462,7 @@ class views_handler_filter extends views
     }
 
     if ($type == 'value' && !empty($this->options['expose']['optional']) && $form['#type'] == 'select' && empty($form['#multiple'])) {
-      $any_label = variable_get('views_exposed_filter_any_label', 'old_any') == 'old_any' ? t('<Any>') : t('- Any -');
+      $any_label = variable_get('views_exposed_filter_any_label', 'old_any') == 'old_any' ? '<'. t('Any') .'>': t('- Any -');
       $form['#options'] = array('All' => $any_label) + $form['#options'];
       $form['#default_value'] = 'All';
     }
Index: includes/admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/admin.inc,v
retrieving revision 1.154
diff -u -p -r1.154 admin.inc
--- includes/admin.inc	7 Apr 2009 20:48:28 -0000	1.154
+++ includes/admin.inc	19 Apr 2009 19:43:16 -0000
@@ -219,14 +219,14 @@ function views_ui_list_views_form(&$form
     );
   }
 
-  $all = array('all' => t('<All>'));
-  $none = array('none' => t('<None>'));
+  $all = array('all' => '<'. t('All') .'>');
+  $none = array('none' => '<'. t('None') .'>');
 
   $form['type'] = array(
     '#type' => 'select',
     '#title' => t('Storage'),
     '#options' => array(
-      'all' => t('<All>'),
+      'all' => '<'. t('All') .'>',
       t('Normal') => t('Normal'),
       t('Default') => t('Default'),
       t('Overridden') => t('Overridden'),
@@ -2156,7 +2156,7 @@ function views_ui_add_item_form(&$form_s
   $options = views_fetch_fields(array_keys($base_tables), $type);
 
   if (!empty($options)) {
-    $groups = array('all' => t('<All>'));
+    $groups = array('all' => '<'. t('All') .'>');
     $form['group'] = array(
       '#type' => 'select',
       '#title' => t('Groups'),
Index: plugins/views_plugin_style.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/plugins/views_plugin_style.inc,v
retrieving revision 1.5
diff -u -p -r1.5 views_plugin_style.inc
--- plugins/views_plugin_style.inc	24 Mar 2009 22:22:11 -0000	1.5
+++ plugins/views_plugin_style.inc	19 Apr 2009 19:43:17 -0000
@@ -73,7 +73,7 @@ class views_plugin_style extends views_p
     // key to FALSE.
     // @TODO: Document "uses grouping" in docs.php when docs.php is written.
     if ($this->uses_fields() && $this->definition['uses grouping']) {
-      $options = array('' => t('<None>'));
+      $options = array('' => '<'. t('None') .'>');
       foreach ($this->display->handler->get_handlers('field') as $field => $handler) {
 
         if ($label = $handler->label()) {
