diff --git a/resources/lang/en/admin.php b/resources/lang/en/admin.php index a303988..be8230d 100644 --- a/resources/lang/en/admin.php +++ b/resources/lang/en/admin.php @@ -6,6 +6,7 @@ return [ ], 'about' => [ 'current_version' => 'You are running version', + 'date_published_label' => 'Release date:', 'github_link' => 'Github Project Website', 'intro' => 'Blue Twilight is an App by Andy. It is made with by UK software developer Andy Heathershaw.', 'latest_version_loading' => 'Checking for the latest release on Github...', @@ -13,7 +14,9 @@ return [ 'links_header' => 'Useful Links', 'title' => 'About Blue Twilight', 'up_to_date' => 'Good job - your installation of Blue Twilight is up-to-date!', + 'update_available' => 'An update is available to Blue Twilight.', 'user_guide_link' => 'User Guide', + 'version_label' => 'Version', 'versions_header' => 'About & Version', 'website_link' => 'Main Website' ], diff --git a/resources/lang/en/forms.php b/resources/lang/en/forms.php index adb127f..07f21b6 100644 --- a/resources/lang/en/forms.php +++ b/resources/lang/en/forms.php @@ -13,6 +13,7 @@ return [ 'bulk_edit_photos_label' => 'Bulk edit selected photos:', 'bulk_edit_photos_placeholder' => 'Select an action', 'cancel_action' => 'Cancel', + 'close_action' => 'Close', 'continue_action' => 'Continue', 'create_action' => 'Create', 'create_album_label' => 'Create a new album:', @@ -20,6 +21,7 @@ return [ 'default_storage_label' => 'Use as the default storage location for new albums', 'delete_action' => 'Delete', 'description_label' => 'Description:', + 'download_action' => 'Download', 'edit_action' => 'Edit', 'email_label' => 'E-mail address:', 'labels_label' => 'Labels:', diff --git a/resources/views/themes/base/admin/about.blade.php b/resources/views/themes/base/admin/about.blade.php index 9309221..3a94e04 100644 --- a/resources/views/themes/base/admin/about.blade.php +++ b/resources/views/themes/base/admin/about.blade.php @@ -46,8 +46,39 @@

- @lang('admin.about.up_to_date') + @lang('admin.about.up_to_date')

+ +
+

@lang('admin.about.update_available')

+

+

View details

+
+ + + @@ -71,7 +102,7 @@ var app = new Vue(viewModel); app.$watch('can_upgrade', function(value) { - alert('update available'); + $('#version-update-modal').modal(); }); app.init(); });