diff --git a/lib/plugins/popularity/admin.php b/lib/plugins/popularity/admin.php
index f9f6ceb6534ed5cabb4b861cfca0c8cc39d84324..a04e98a66956273494ffd6b435a5214cffb36371 100644
--- a/lib/plugins/popularity/admin.php
+++ b/lib/plugins/popularity/admin.php
@@ -95,7 +95,7 @@ class admin_plugin_popularity extends DokuWiki_Admin_Plugin {
             //Print the last time the data was sent
             $lastSent = $this->helper->lastSentTime();
             if ( $lastSent !== 0 ){
-                echo $this->getLang('lastSent') . datetime_h($lastSent);
+                echo $this->getLang('lastSent') . ' ' . datetime_h($lastSent);
             }
         } else {
             //If we just submitted the form
diff --git a/lib/plugins/popularity/lang/en/lang.php b/lib/plugins/popularity/lang/en/lang.php
index 78a5e862cdd6fc92fcf8b7b8261c2b653a89e33a..af6797cb256d7ae97fca6ff55e917eeaaa3cab93 100644
--- a/lib/plugins/popularity/lang/en/lang.php
+++ b/lib/plugins/popularity/lang/en/lang.php
@@ -6,4 +6,4 @@ $lang['autosubmit']       = 'Automatically send data once a month';
 $lang['submissionFailed'] = 'The data couldn\'t be sent due to the following error:';
 $lang['submitDirectly']   = 'You can send the data manually by submitting the following form.';
 $lang['autosubmitError']  = 'The last autosubmit failed, because of the following error: ';
-$lang['lastSent']         = 'The data has been sent ';
+$lang['lastSent']         = 'The data has been sent';