diff --git a/src/frontend/plugins/timeLimit.pipe.ts b/src/frontend/plugins/timeLimit.pipe.ts
index 18b48bccd080e09b527bc47ce7b06dc550ca1ec6..b19375631f8daad8a41739c77778911c8dd64abd 100755
--- a/src/frontend/plugins/timeLimit.pipe.ts
+++ b/src/frontend/plugins/timeLimit.pipe.ts
@@ -53,7 +53,7 @@ export class TimeLimitPipe implements PipeTransform, OnDestroy {
 			return '<span>' + this.lang.undefined + '</span>';
 		} else if(now > d) {
 			if (args === 'badge') {
-				return this.getFormatedDate('', '<b>' + this.lang.outdated + ' ' + this.lang.fromRange + ' ' + (days-1) + ' '+ this.lang.dayS +' !</b>', 'warn', args);
+				return this.getFormatedDate('', '<b>' + this.lang.outdated + ' ' + this.lang.fromRange.toLowerCase() + ' ' + (days-1) + ' '+ this.lang.dayS +' !</b>', 'warn', args);
 			} else {
 				return this.getFormatedDate('', '<b>' + this.lang.outdated + ' !</b>', 'warn', args);
 			}