diff --git a/src/components/imagedownloader/imagedownloader.js b/src/components/imagedownloader/imagedownloader.js
index ce53b5cf0..947a50135 100644
--- a/src/components/imagedownloader/imagedownloader.js
+++ b/src/components/imagedownloader/imagedownloader.js
@@ -109,7 +109,7 @@ define(['loading', 'apphost', 'dialogHelper', 'connectionManager', 'imageLoader'
html += '';
var startAtDisplay = totalRecordCount ? startIndex + 1 : 0;
- html += startAtDisplay + '-' + recordsEnd + ' of ' + totalRecordCount;
+ html += globalize.translate("ListPaging").replace("{0}", startAtDisplay + '-' + recordsEnd).replace("{1}", totalRecordCount);
html += '';
diff --git a/src/scripts/librarybrowser.js b/src/scripts/librarybrowser.js
index bd8980aed..a570558f4 100644
--- a/src/scripts/librarybrowser.js
+++ b/src/scripts/librarybrowser.js
@@ -83,7 +83,7 @@ define(["userSettings"], function (userSettings) {
if (html += '
', showControls) {
html += '';
- html += (totalRecordCount ? startIndex + 1 : 0) + "-" + recordsEnd + " of " + totalRecordCount;
+ html += Globalize.translate("ListPaging").replace("{0}", (totalRecordCount ? startIndex + 1 : 0) + "-" + recordsEnd).replace("{1}", totalRecordCount);
html += "";
}
diff --git a/src/strings/en-us.json b/src/strings/en-us.json
index 784fa7c7a..f3e7756f5 100644
--- a/src/strings/en-us.json
+++ b/src/strings/en-us.json
@@ -1470,5 +1470,6 @@
"Yes": "Yes",
"Yesterday": "Yesterday",
"PathNotFound": "The path could not be found. Please ensure the path is valid and try again.",
- "WriteAccessRequired": "Jellyfin Server requires write access to this folder. Please ensure write access and try again."
+ "WriteAccessRequired": "Jellyfin Server requires write access to this folder. Please ensure write access and try again.",
+ "ListPaging": "{0} of {1}"
}
diff --git a/src/strings/es.json b/src/strings/es.json
index 442459c9e..138d19f86 100644
--- a/src/strings/es.json
+++ b/src/strings/es.json
@@ -1478,5 +1478,6 @@
"AskAdminToCreateLibrary": "Solo un administrador puede crear librerías.",
"AllowFfmpegThrottling": "Acelerar transcodificación",
"PathNotFound": "No se encontró la ruta especificada. Asegúrate de que existe e inténtalo de nuevo.",
- "WriteAccessRequired": "Jellyfin requiere de permisos de escritura en esta carpeta. Asegúrate de que existe este permiso e inténtalo de nuevo."
+ "WriteAccessRequired": "Jellyfin requiere de permisos de escritura en esta carpeta. Asegúrate de que existe este permiso e inténtalo de nuevo.",
+ "ListPaging": "{0} de {1}"
}