Skip to content

Commit feba860

Browse files
authored
Merge pull request #15850 from akemidx/bug/sc-27448
Adding colon to password translation string
2 parents b7aedb7 + 424316d commit feba860

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

resources/lang/en-US/mail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
'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.',
6161
'license_expiring_alert' => 'There is :count license expiring in the next :threshold days.|There are :count licenses expiring in the next :threshold days.',
6262
'link_to_update_password' => 'Please click on the following link to update your :web password:',
63-
'login' => 'Login:',
63+
'login' => 'Login',
6464
'login_first_admin' => 'Login to your new Snipe-IT installation using the credentials below:',
6565
'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.',
6666
'min_QTY' => 'Min QTY',

resources/views/notifications/FirstAdmin.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@component('mail::message')
22
{{ trans('mail.hello') }} {{ $first_name }} {{$last_name}},
33

4-
{{ trans('mail.login') }} {{ $username }} <br>
5-
{{ trans('mail.password') }} {{ $password }}
4+
{{ trans('mail.login') }}: {{ $username }} <br>
5+
{{ trans('mail.password') }}: {{ $password }}
66

77
@component('mail::button', ['url' => $url])
88
Go To {{$snipeSettings->site_name}}

resources/views/notifications/Welcome.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33

44
{{ trans('mail.admin_has_created', ['web' => $snipeSettings->site_name]) }}
55

6-
{{ trans('mail.login') }} {{ $username }} <br>
7-
{{ trans('mail.password') }} {{ $password }}
6+
{{ trans('mail.login') }}: {{ $username }} <br>
7+
{{ trans('mail.password') }}: {{ $password }}
88

99
@component('mail::button', ['url' => $url])
1010
Go To {{$snipeSettings->site_name}}

0 commit comments

Comments
 (0)