diff --git a/data/interfaces/default/base.html b/data/interfaces/default/base.html
index 9496dc0f..bf8a7f8c 100644
--- a/data/interfaces/default/base.html
+++ b/data/interfaces/default/base.html
@@ -57,7 +57,7 @@
A
newer version of Tautulli is available!
- You are ${plexpy.COMMITS_BEHIND} commits behind.
+ You are ${plexpy.COMMITS_BEHIND} commit${'s' if plexpy.COMMITS_BEHIND > 1 else ''} behind.
Update or
Dismiss
% else:
@@ -327,7 +327,7 @@ ${next.modalIncludes()}
$('#updatebar').html(msg).fadeIn();
} else if (result.update === true && result.release === false) {
msg = 'A newer version of Tautulli is available!
' +
- 'You are '+ result.commits_behind + ' commits behind.
' +
+ 'You are '+ result.commits_behind + ' commit' + (result.commits_behind > 1 ? 's' : '') + ' behind.
' +
'Update or Dismiss';
$('#updatebar').html(msg).fadeIn();
} else if (result.update === false) {