diff --git a/resources/lang/en/gallery.php b/resources/lang/en/gallery.php index 4681e4b..c8991e6 100644 --- a/resources/lang/en/gallery.php +++ b/resources/lang/en/gallery.php @@ -14,6 +14,7 @@ return [ 'camera_software' => 'Camera software:', 'child_albums' => 'more album|more albums', 'date_taken' => 'Date taken:', + 'date_uploaded' => 'Date uploaded:', 'file_name' => 'File name:', 'focal_length' => 'Focal length:', 'focal_length_units' => ':valuemm', diff --git a/resources/views/themes/base/gallery/photo.blade.php b/resources/views/themes/base/gallery/photo.blade.php index 2cc23eb..e380356 100644 --- a/resources/views/themes/base/gallery/photo.blade.php +++ b/resources/views/themes/base/gallery/photo.blade.php @@ -81,6 +81,11 @@ @endif + + @lang('gallery.date_uploaded') + {{ date(UserConfig::get('date_format'), strtotime($photo->created_at)) }} + + @if (!empty($photo->camera_make)) @lang('gallery.camera_make')