Localized page flippers
This commit is contained in:
@@ -122,7 +122,7 @@ import template from './imageDownloader.template.html';
|
||||
html += '<span style="margin-right: 10px;">';
|
||||
|
||||
const startAtDisplay = totalRecordCount ? startIndex + 1 : 0;
|
||||
html += globalize.translate('ListPaging', startAtDisplay, recordsEnd, totalRecordCount);
|
||||
html += globalize.translate('ListPaging', startAtDisplay.toLocaleString(), recordsEnd.toLocaleString(), totalRecordCount.toLocaleString());
|
||||
|
||||
html += '</span>';
|
||||
|
||||
|
||||
@@ -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>';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user