Index: views_ui.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/views_ui.module,v
retrieving revision 1.105
diff -u -p -r1.105 views_ui.module
--- views_ui.module	30 Sep 2008 18:52:15 -0000	1.105
+++ views_ui.module	4 Oct 2008 19:33:01 -0000
@@ -262,7 +262,7 @@ function views_ui_check_lock($view) {
  */
 function views_ui_cache_set(&$view) {
   if (!empty($view->locked)) {
-    drupal_set_message('Changes cannot be made to a locked view.', 'error');
+    drupal_set_message(t('Changes cannot be made to a locked view.'), 'error');
     return;
   }
   views_include('cache');
Index: includes/admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/views/includes/admin.inc,v
retrieving revision 1.137
diff -u -p -r1.137 admin.inc
--- includes/admin.inc	2 Oct 2008 22:55:23 -0000	1.137
+++ includes/admin.inc	4 Oct 2008 19:33:03 -0000
@@ -365,7 +365,7 @@ function views_ui_preview($js, $view) {
           if ($queries) {
             $queries .= "\n";
           }
-          $queries .= t('[@time ms] ', array('@time' => intval($query[1] * 100000) / 100)) . $query[0];
+          $queries .= t('[@time ms]', array('@time' => intval($query[1] * 100000) / 100)) . ' ' . $query[0];
         }
 
         $rows[] = array('<strong>' . t('Other queries') . '</strong>', '<pre>' . $queries . '</pre>');
@@ -668,7 +668,7 @@ function views_ui_break_lock_confirm(&$f
 function views_ui_break_lock_confirm_submit(&$form, &$form_state) {
   db_query("DELETE FROM {views_object_cache} WHERE obj = 'view' AND name = '%s'", $form_state['view']->name);
   $form_state['redirect'] = 'admin/build/views/edit/' . $form_state['view']->name;
-  drupal_set_message('The lock has been broken and you may now edit this view.');
+  drupal_set_message(t('The lock has been broken and you may now edit this view.'));
 }
 
 /**
@@ -1235,7 +1235,7 @@ function template_preprocess_views_ui_ed
         $fields[$pid]['links'] = l('<span>' . t('Change settings for this style') . '</span>', "admin/build/views/nojs/config-style/$view->name/$display->id/$type/$id", array('attributes' => array('class' => 'views-button-configure views-ajax-link', 'title' => t('Settings')), 'html' => true));
       }
 
-      $fields[$pid]['title'] = t(' &nbsp; Style: !style', array('!style' => l($style_title, "admin/build/views/nojs/change-style/$view->name/$display->id/$type/$id", array('attributes' => array('class' => 'views-ajax-link')))));
+      $fields[$pid]['title'] = ' ' . t('&nbsp; Style: !style', array('!style' => l($style_title, "admin/build/views/nojs/change-style/$view->name/$display->id/$type/$id", array('attributes' => array('class' => 'views-ajax-link')))));
       $fields[$pid]['class'] = views_ui_item_css($display->id . '-' . $type . '-' . $pid);
       if (!empty($view->changed_sections[$display->id . '-' . $type . '-' . $pid])) {
         $fields[$pid]['changed'] = TRUE;
