1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Localized page flippers

This commit is contained in:
Hadi Charara 2022-07-03 13:46:54 -04:00
parent 6570c07c63
commit 66f33b368b
2 changed files with 2 additions and 2 deletions

View file

@ -90,7 +90,7 @@ export function getQueryPagingHtml (options) {
if (showControls) {
html += '<span style="vertical-align:middle;">';
html += globalize.translate('ListPaging', (totalRecordCount ? startIndex + 1 : 0), recordsEnd, totalRecordCount);
html += globalize.translate('ListPaging', (totalRecordCount ? startIndex + 1 : 0).toLocaleString(), recordsEnd.toLocaleString(), totalRecordCount.toLocaleString());
html += '</span>';
}