diff --git a/node-example.tpl.php b/node-example.tpl.php
old mode 100644
new mode 100755
diff --git a/node_images.admin.inc b/node_images.admin.inc
old mode 100644
new mode 100755
diff --git a/node_images.css b/node_images.css
old mode 100644
new mode 100755
diff --git a/node_images.info b/node_images.info
old mode 100644
new mode 100755
diff --git a/node_images.install b/node_images.install
old mode 100644
new mode 100755
diff --git a/node_images.js b/node_images.js
old mode 100644
new mode 100755
diff --git a/node_images.module b/node_images.module
old mode 100644
new mode 100755
diff --git a/node_images.pages.inc b/node_images.pages.inc
old mode 100644
new mode 100755
index 5b4cc81..ad89275
--- a/node_images.pages.inc
+++ b/node_images.pages.inc
@@ -1,4 +1,5 @@
 <?php
+// $Id: node_images.pages.inc,v 1.1.2.6 2009/01/30 13:21:02 stefano73 Exp $
 
 /**
  * @file
@@ -135,11 +136,11 @@ function _node_images_edit_form(&$form_state, $node) {
       $row['thumbnail'] = array('#value' => '<img src="'.$thumb.'" alt="" />');
               
       if ($is_translation_source) {
-        $row['delete'] = array('#type' => 'checkbox', '#attributes' => ($delete_access ? array() : array('disabled' => 'true')));
-        $row['list'] = array('#type' => 'checkbox', '#default_value' => $file->list,
+        $row['delete'] = array('#type' => 'checkbox', '#title' => 'Delete', '#attributes' => ($delete_access ? array() : array('disabled' => 'true')));
+        $row['list'] = array('#type' => 'checkbox', '#title' => 'List', '#default_value' => $file->list,
           '#attributes' => ($update_access && $is_translation_source ? array() : array('disabled' => 'true')));    
         _node_images_translate($file);
-        $element = array('#type' => 'textfield', '#default_value' => $file->description, '#maxlength' => 255, '#size' => 40);
+        $element = array('#type' => 'textfield', '#title' => 'Description', '#default_value' => $file->description, '#maxlength' => 255, '#size' => 40);
       }
       else {
         _node_images_translate($file);
@@ -153,7 +154,7 @@ function _node_images_edit_form(&$form_state, $node) {
       $row['filepath'] = array('#value' => l($file->filepath, file_create_url($file->filepath), array('attributes' => array('target' => '_blank'))));
       $row['filesize'] = array('#value' => format_size($file->filesize));
       $row['date'] = array('#value' => format_date($file->timestamp));
-      $row['weight'] = array('#type' => 'weight', '#delta' => $delta, '#default_value' => $file->weight);
+      $row['weight'] = array('#type' => 'weight', '#title' => 'Weight', '#delta' => $delta, '#default_value' => $file->weight);
       $form['node_images']['images'][$key] = $row;
     }
 
diff --git a/node_images.views.inc b/node_images.views.inc
old mode 100644
new mode 100755
