diff --git a/js/comment_toggle.js b/js/comment_toggle.js
index 6c369b2..6972702 100644
--- a/js/comment_toggle.js
+++ b/js/comment_toggle.js
@@ -3,7 +3,7 @@
   Drupal.behaviors.comment_toggle = {
     attach: function(context, settings) {
     $('.comment-click', context).unbind('click').bind('click', function() {
-      if ($(this).text() == '0 Comments'){
+      if ($(this).text() == Drupal.t('0 Comments')){
         return false;
       }
       else {
@@ -96,7 +96,7 @@
          if(commentclick){
            console.log(commentclick.text());
           if(commentgroup.is(':hidden') || commentgroup.length == 0){
-            if(commentclick.text()!= '0 Comments'){
+            if(commentclick.text()!= Drupal.t('0 Comments')){
               commentclick.click();
             }
             else {
