diff --git a/block_refresh.module b/block_refresh.module
index b4e90d3..8cecfda 100644
--- a/block_refresh.module
+++ b/block_refresh.module
@@ -18,7 +18,6 @@ function block_refresh_init() {
         'settings' => variable_get('block_refresh_settings', array()),
         'args' => arg(),
         'query' => block_refresh_get_query_as_string(),
-        'refresh_link' => t('Refresh'), // We place this here instead of directly in the js file so that it can be translated
       )
     ), 'setting');
   }
diff --git a/js/block_refresh.js b/js/block_refresh.js
index b9ee567..8616338 100644
--- a/js/block_refresh.js
+++ b/js/block_refresh.js
@@ -15,7 +15,7 @@ Drupal.behaviors.qtip = {
 				}, settings['timer'] * 1000); // We need to multiply by 1000 because the admin enters a number in seconds,  but the setInterval() function expects milliseconds
 			}
 			if (settings['manual']) {
-				refresh_link = '<div class="block-refresh-button">' + Drupal.settings.block_refresh.refresh_link + '</div>';
+				refresh_link = '<div class="block-refresh-button">' + Drupal.t('Refresh') + '</div>';
 				// We'll attach the refresh link to the header if it exists...
 				if ($('#' + element + ' h2').length) {
 					// note: for some reason I couldn't get $(this) to work, I don't know why
