From 424316df9f75d9654e71c6fcebc4d6ca75d5bfc9 Mon Sep 17 00:00:00 2001 From: akemidx Date: Thu, 21 Nov 2024 14:32:22 -0500 Subject: [PATCH] fixing colon placements --- resources/lang/en-US/mail.php | 4 ++-- resources/views/notifications/FirstAdmin.blade.php | 4 ++-- resources/views/notifications/Welcome.blade.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/lang/en-US/mail.php b/resources/lang/en-US/mail.php index 626d50f4ed..7663a0167b 100644 --- a/resources/lang/en-US/mail.php +++ b/resources/lang/en-US/mail.php @@ -60,14 +60,14 @@ return [ 'item_checked_reminder' => 'This is a reminder that you currently have :count items checked out to you that you have not accepted or declined. Please click the link below to confirm your decision.', 'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.', 'link_to_update_password' => 'Please click on the following link to update your :web password:', - 'login' => 'Login:', + 'login' => 'Login', 'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:', 'low_inventory_alert' => 'There is :count item that is below minimum inventory or will soon be low.|There are :count items that are below minimum inventory or will soon be low.', 'min_QTY' => 'Min QTY', 'name' => 'Name', 'new_item_checked' => 'A new item has been checked out under your name, details are below.', 'notes' => 'Notes', - 'password' => 'Password:', + 'password' => 'Password', 'password_reset' => 'Password Reset', 'read_the_terms' => 'Please read the terms of use below.', 'read_the_terms_and_click' => 'Please read the terms of use below, and click on the link at the bottom to confirm that you read and agree to the terms of use, and have received the asset.', diff --git a/resources/views/notifications/FirstAdmin.blade.php b/resources/views/notifications/FirstAdmin.blade.php index b6d8e89db2..83a5c8bf04 100644 --- a/resources/views/notifications/FirstAdmin.blade.php +++ b/resources/views/notifications/FirstAdmin.blade.php @@ -1,8 +1,8 @@ @component('mail::message') {{ trans('mail.hello') }} {{ $first_name }} {{$last_name}}, -{{ trans('mail.login') }} {{ $username }}
-{{ trans('mail.password') }} {{ $password }} +{{ trans('mail.login') }}: {{ $username }}
+{{ trans('mail.password') }}: {{ $password }} @component('mail::button', ['url' => $url]) Go To {{$snipeSettings->site_name}} diff --git a/resources/views/notifications/Welcome.blade.php b/resources/views/notifications/Welcome.blade.php index 82dcd3e155..e6e72ad2cd 100644 --- a/resources/views/notifications/Welcome.blade.php +++ b/resources/views/notifications/Welcome.blade.php @@ -3,8 +3,8 @@ {{ trans('mail.admin_has_created', ['web' => $snipeSettings->site_name]) }} -{{ trans('mail.login') }} {{ $username }}
-{{ trans('mail.password') }} {{ $password }} +{{ trans('mail.login') }}: {{ $username }}
+{{ trans('mail.password') }}: {{ $password }} @component('mail::button', ['url' => $url]) Go To {{$snipeSettings->site_name}}