diff --git a/src/main/webapp/app/internationalization.js b/src/main/webapp/app/internationalization.js
index a67b5301754f422e86ca8742fd88736affd51c95..5012a8ac3999a428ce70a4dc71f374a3c39a3504 100755
--- a/src/main/webapp/app/internationalization.js
+++ b/src/main/webapp/app/internationalization.js
@@ -289,6 +289,7 @@
 				HINT_FOR_SOLUTION: "Lösungshinweis",
 				HINT_FOR_SOLUTION_EDIT: "Lösungshinweis?",
 				SAMPLE_SOLUTION: "Musterlösung",
+				UNREAD: "Ungelesen",
 
 				/* sort */
 				SORT_QUESTIONS_TITLE: "Fragen sortieren",
@@ -1167,6 +1168,7 @@
 				HINT_FOR_SOLUTION: "Hint for solution",
 				HINT_FOR_SOLUTION_EDIT: "Hint for solution?",
 				SAMPLE_SOLUTION: "Sample solution",
+				UNREAD: "Unread",
 
 				/* sort */
 				SORT_QUESTIONS_TITLE: "Sort Questions",
diff --git a/src/main/webapp/app/view/Caption.js b/src/main/webapp/app/view/Caption.js
index e890a3836d13f987ca62cd51931e8674fd563112..f4f9d1056cdfcccbb3d425f4edd8bc05e105cec6 100644
--- a/src/main/webapp/app/view/Caption.js
+++ b/src/main/webapp/app/view/Caption.js
@@ -28,7 +28,7 @@ Ext.define('ARSnova.view.Caption', {
 		},
 		badgeTranslation: {
 			feedback: Messages.COMMENTS,
-			unreadFeedback: Messages.UNREAD_QUESTIONS_FROM_STUDENTS,
+			unreadFeedback: Messages.UNREAD,
 			flashcards: Messages.FLASHCARDS,
 			questions: Messages.QUESTIONS,
 			answers: Messages.ANSWERS
@@ -143,7 +143,7 @@ Ext.define('ARSnova.view.Caption', {
 				badgeText: options.interposed && hasFeedbackQuestions ? this.getBadgeTranslation().feedback : "",
 				badgeCls: "feedbackQuestionsBadgeIcon"
 			}, {
-				badgeText: (options.unreadInterposed && hasUnreadFeedbackQuestions) ? this.getBadgeTranslation().unreadQuestions : "",
+				badgeText: (options.unreadInterposed && hasUnreadFeedbackQuestions) ? this.getBadgeTranslation().unreadFeedback : "",
 				badgeCls: "unreadFeedbackQuestionsBadgeIcon"
 			}, {
 				badgeText: options.flashcards && hasFlashcards ? this.getBadgeTranslation().flashcards : "",