diff --git a/views/addressfield.views.inc b/views/addressfield.views.inc
index 77a5b45..f4ebd47 100644
--- a/views/addressfield.views.inc
+++ b/views/addressfield.views.inc
@@ -1,6 +1,11 @@
 <?php
 
 /**
+ * @file
+ * Views integration for Address Field.
+ */
+
+/**
  * Implements hook_field_views_data().
  */
 function addressfield_field_views_data($field) {
@@ -22,5 +27,56 @@ function addressfield_field_views_data($field) {
     }
   }
 
+  // Get the translatable field information.
+  $properties = addressfield_data_property_info();
+
+  // Iterate over addressfield defined tables.
+  foreach ($data as &$table) {
+    // Make sure the parent Views' field (addressfield) is defined.
+    if (isset($table[$field['field_name']]['field'])) {
+      // Use the parent field definition as a template for property columns.
+      $field_def = $table[$field['field_name']]['field'];
+      // Iterate over the addressfield components.
+      foreach ($table as $column_name => &$column) {
+        if (empty($column['field'])) {
+
+          // Assign the default component definition.
+          $column['field'] = $field_def;
+          $column['field']['real field'] = $column_name;
+          $column['field']['additional fields'] = array(
+            'delta',
+            'language',
+            'bundle',
+          );
+
+          $property = str_replace($field_def['field_name'] . '_', '', $column_name);
+
+          // Assign addressfield property-specific views field handlers.
+          switch ($property) {
+            case 'data':
+              $column['field']['handler'] = 'views_handler_field_serialized';
+              break;
+
+            default:
+              $column['field']['handler'] = 'views_handler_field';
+              break;
+
+          }
+
+          // Assign human-friendly field labels for addressfield properties.
+          $field_labels = field_views_field_label($field['field_name']);
+          $field_label = array_shift($field_labels);
+          if (!empty($properties[$property])) {
+            $property_label = $properties[$property]['label'];
+            $title = t('@field-label - @property-label', array('@field-label' => $field_label, '@property-label' => $property_label));
+            $column['title'] = $title;
+            $column['title short'] = $title;
+          }
+
+        }
+      }
+    }
+  }
+
   return $data;
 }
