-
{asset.originalFileName}
-
{getAssetResolution(asset)} - {getFileSize(asset)}
-
+
+
+
+ {asset.originalFileName}
+ {getAssetResolution(asset)} - {getFileSize(asset)}
+
+
+
+
+ {#if dateTime}
+ {dateTime.toLocaleString(
+ {
+ month: 'short',
+ day: 'numeric',
+ year: 'numeric',
+ },
+ { locale: $locale },
+ )}
+
+ {dateTime.toLocaleString(
+ {
+ // weekday: 'short',
+ hour: 'numeric',
+ minute: '2-digit',
+ timeZoneName: timeZone ? 'shortOffset' : undefined,
+ },
+ { locale: $locale },
+ )}
+ {:else}
+ {$t('unknown')}
+ {/if}
+
+
+
+
+ {#if locationParts.length > 0}
+ {locationParts.join(', ')}
+ {:else}
+ {$t('unknown')}
+ {/if}
+
+
+
{#await getAllAlbums({ assetId: asset.id })}
{$t('scanning_for_album')}
{:then albums}
@@ -104,6 +162,6 @@
{$t('in_albums', { values: { count: albums.length } })}
{/if}
{/await}
-
+