diff --git a/src/server/request-handler.ts b/src/server/request-handler.ts index 03bdf9a..8f2253c 100644 --- a/src/server/request-handler.ts +++ b/src/server/request-handler.ts @@ -800,7 +800,7 @@ function htmlPage(): string {
-
Hover: thumbnail · click: fullscreen · route: time sorted
+
Hover for thumbnail · click for fullscreen · route sorted by time

Timeline

-
No photos loaded yet.
+
No photos imported yet.
@@ -1181,7 +1181,7 @@ function htmlPage(): string { function formatTimelineSummary(photos, unit) { if (!photos.length) { - return "No photos loaded yet."; + return "No photos imported yet."; } const count = photos.length + (photos.length === 1 ? " photo" : " photos"); @@ -1307,9 +1307,9 @@ function htmlPage(): string { markers.clearLayers(); route.setLatLngs([]); photoList.replaceChildren(emptyState); - emptyState.textContent = "No images loaded yet."; + emptyState.textContent = "No images imported yet."; photoCount.textContent = "0 photos"; - timelineSummary.textContent = "No photos loaded yet."; + timelineSummary.textContent = "No photos imported yet."; timelineRange.textContent = "All photos"; timelineUnit.textContent = "Scale: day"; timelineClear.disabled = true; @@ -1520,11 +1520,11 @@ function htmlPage(): string { if (!visiblePhotos.length) { emptyState.textContent = state.photos.length ? "No photos match the selected range." - : "No images loaded yet."; + : "No images imported yet."; photoList.appendChild(emptyState); photoCount.textContent = "0 photos"; } else { - emptyState.textContent = "No images loaded yet."; + emptyState.textContent = "No images imported yet."; photoCount.textContent = visiblePhotos.length + (visiblePhotos.length === 1 ? " photo shown" : " photos shown"); @@ -1854,7 +1854,7 @@ function htmlPage(): string { updateStatus( "Nextcloud import complete: " + loaded + - " images loaded" + + " images imported" + (skipped ? ", " + skipped + " skipped" : "") + "." ); @@ -1898,7 +1898,7 @@ function htmlPage(): string { }); clearGallery(); - updateStatus("Ready to load a share."); + updateStatus("Ready to import a share."); `;