diff --git a/lightbox2.module b/lightbox2.module
index 1f5964f..369f2c6 100644
--- a/lightbox2.module
+++ b/lightbox2.module
@@ -203,7 +203,7 @@ function lightbox2_settings_form() {
     '#type' => 'textfield',
     '#title' => t('Text for Node Link'),
     '#description' => t('This is the text that will appear as the link to the node underneath the image in the lightbox'),
-    '#default_value' => variable_get('lightbox2_node_link_text', 'View Image Details'),
+    '#default_value' => variable_get('lightbox2_node_link_text', t('View Image Details')),
   );
   
   // Add Checkbox for Image Node Grouping.
@@ -275,7 +275,7 @@ function lightbox2_add_files() {
     'disable_zoom' => variable_get('lightbox2_disable_zoom', false),
     'group_images' => variable_get('lightbox2_image_group', true),
     'disable_for_gallery_lists' => variable_get('lightbox2_disable_nested_galleries', true),
-    'node_link_text' => t(variable_get('lightbox2_node_link_text', 'View Image Details')),
+    'node_link_text' => variable_get('lightbox2_node_link_text', t('View Image Details')),
     'image_count' => t(variable_get('lightbox2_image_count_str', 'Image !current of !total')),
     'lite_press_x_close' => t('press !x to close', array('!x' => '<a href="#" onclick="hideLightbox(); return false;"><kbd>x</kbd></a>')),
   );
@@ -368,7 +368,7 @@ function theme_imagefield_image_imagecache_lightbox2($namespace, $field, $item,
   
   $node_link = '';
   if (!empty($item['nid'])) {
-    $node_link = '<br /><br />'. l(t('View Image Information'), 'node/'. $item['nid']);
+    $node_link = '<br /><br />'. l(variable_get('lightbox2_node_link_text', t('View Image Details')), 'node/'. $item['nid']);
   }
   
   $link_attributes = array(
