Skip to content

Commit

Permalink
fix: decapitalize localization message keys
Browse files Browse the repository at this point in the history
  • Loading branch information
chosww committed Nov 28, 2023
1 parent 613f789 commit 7812dfc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/Http/Requests/MeetingRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ public function attributes(): array
'meeting_url' => __('link to join the meeting'),
'meeting_phone' => __('phone number to join the meeting'),
'meeting_software' => __('meeting software'),
'street_address' => __('Street address'),
'postal_code' => __('Postal code'),
'street_address' => __('street address'),
'postal_code' => __('postal code'),
];
}

Expand Down
6 changes: 3 additions & 3 deletions app/Http/Requests/UpdateEngagementRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ public function attributes(): array
'meeting_software' => __('meeting software'),
'materials_by_date' => __('date for materials to be sent by'),
'complete_by_date' => __('due date'),
'postal_code' => __('Postal code'),
'postal_code' => __('postal code'),
'signup_by_date' => __('sign up deadline'),
'street_address' => __('Street address'),
'street_address' => __('street address'),
'accepted_formats' => __('accepted formats'),
'other_accepted_formats' => __('other accepted formats'),
'timezone' => __('Time zone'),
'timezone' => __('time zone'),

];
}
Expand Down

0 comments on commit 7812dfc

Please sign in to comment.