shaunakwyn / gTalents

it contains gTalents files repository...
0 stars 0 forks source link

[ issue #7 ] General / Spelling Errors #1

Open shaunakwyn opened 4 years ago

shaunakwyn commented 4 years ago

"View All Notification" -> View all notifications [Bell Icon on top right corner]

[File]

/home/gtalents/public_html/alpha/resources/views/partials/header-registrado.blade.php

[Changes]

in approbateCandidate() :
{code}
    <a href="{{route('viewalerts')}}" style="text-align:center;font-size:13px;">View all notifications</a>
{code}
shaunakwyn commented 4 years ago

"Cases you want to receive emails from us" -> In case you want to receive updates from us [Edit profile]

[File]

/home/gtalents/public_html/alpha/resources/lang/en/app.php

[Changes]

{code}
    'norifications_comment1' => 'In case you want to receive updates from us',
{code}
shaunakwyn commented 4 years ago

"Mail Notification" - Email notifications or just Notifications

[File]

/home/gtalents/public_html/alpha/resources/views/partials/header-registrado.blade.php

[Changes]

{code}
         <a href="/mailnotification">Notification</a>
{code}
shaunakwyn commented 4 years ago

"I want to receive a mail when candidate approved by poster." -> One of my candidates is approved by poster

[File]

/home/gtalents/public_html/alpha/app/Http/Controllers/VacancyController.php

[Changes]

in approbateCandidate() :
{code}
    if($approve == 'Yes' || true){
            $mailer->sendEmailForApproveCandidate($user_email, $vacancy->name, array_merge($request->all(), ['name' => $candname]));
        }
{code}
shaunakwyn commented 4 years ago

"I want to receive a mail when new supplier intrested for vacancy." -> A new supplier is interested in one of my vacancies

[File]

/home/gtalents/public_html/alpha/app/Http/Controllers/VacancyController.php

[Changes]

in post_supplier() :
{code}
    if(!empty($new_sup) || true){
            if($new_sup == 'Yes' || true){
                $mailer->sendEmail($vacancy->poster, ['vacancy' => $vacancy, 'supplier' => Auth::user()]);
            }
        }
{code}
shaunakwyn commented 4 years ago

"Forget your password?" -> I don't want to forget, I just forgot... Forgot password

[File]

/home/gtalents/public_html/alpha/resources/lang/en/app.php

[Changes]

{code}
    'i_forgot_my_password' => 'I don\'t want to forget, I just forgot...',
    'i_forgot_my_password_' => 'I don\'t want to forget, I just forgot...',
{code}