diff --git a/src/Ombi/ClientApp/app/requests/remainingrequests.component.html b/src/Ombi/ClientApp/app/requests/remainingrequests.component.html
index 769cd79c2..565de7473 100644
--- a/src/Ombi/ClientApp/app/requests/remainingrequests.component.html
+++ b/src/Ombi/ClientApp/app/requests/remainingrequests.component.html
@@ -1,15 +1,15 @@
- {{remaining.remaining}}/{{remaining.limit}} requests remaining
+ {{'Requests.Remaining.Quota' | translate: {remaining: remaining.remaining, total: remaining.limit} }}
1">
- Another request will be added in {{daysUntil}} {{daysUntil == 1 ? "day" : "days"}}
+ {{daysUntil == 1 ? 'Requests.Remaining.NextDay' : "Requests.Remaining.NextDays" | translate: {time: daysUntil} }}
1 && daysUntil <= 1">
- Another request will be added in {{hoursUntil}} {{hoursUntil == 1 ? "hour" : "hours"}}
+ {{hoursUntil == 1 ? 'Requests.Remaining.NextHour' : "Requests.Remaining.NextHours" | translate: {time: hoursUntil} }}
1 && hoursUntil <= 1 && daysUntil <= 1" #minutes>
- Another request will be added in {{minutesUntil}} {{minutesUntil == 1 ? "minute" : "minutes"}}
+ {{minutesUntil == 1 ? 'Requests.Remaining.NextMinute' : "Requests.Remaining.NextMinutes" | translate: {time: minutesUntil} }}
diff --git a/src/Ombi/wwwroot/translations/en.json b/src/Ombi/wwwroot/translations/en.json
index b70e065cb..a2c7f20dc 100644
--- a/src/Ombi/wwwroot/translations/en.json
+++ b/src/Ombi/wwwroot/translations/en.json
@@ -145,7 +145,16 @@
"SortRequestDateAsc": "Request Date ▲",
"SortRequestDateDesc": "Request Date ▼",
"SortStatusAsc":"Status ▲",
- "SortStatusDesc":"Status ▼"
+ "SortStatusDesc":"Status ▼",
+ "Remaining": {
+ "Quota": "{{remaining}}/{{total}} requests remaining",
+ "NextDays": "Another request will be added in {{time}} days",
+ "NextDay": "Another request will be added in {{time}} day",
+ "NextHours": "Another request will be added in {{time} hours",
+ "NextHour": "Another request will be added in {{time} hour",
+ "NextMinutes": "Another request will be added in {{time}} minutes",
+ "NextMinute": "Another request will be added in {{time}} minute"
+ }
},
"Issues":{
"Title":"Issues",