将文本转换为本地语言 - laravel 5.6

I am implementing text to speech calls with laravel and Nexmo. In the application, i am able to place calls to my clients with `English language' as below. The text placed to my customers is

To add a reply, please leave a message after the beep, then press the pound key

Is there a way to convert the text from english to my native language ? So the call will be in the language i converted to ?

Please help? Beginner with this

$currentHost = 'http://abc123.ngrok.io';
Nexmo::calls()->create([
    'to' => [[
        'type' => 'phone',
        'number' => $cc->user->phone_number
    ]],
    'from' => [
        'type' => 'phone',
        'number' => config('services.nexmo.sms_from')
    ],
    'answer_url' => [$currentHost.'/webhook/answer/'.$entry->id],
    'event_url' => [$currentHost.'/webhook/event']
]);

    return response()->json([
        [
            'action' => 'talk',
            'text' => $ticket->content
        ],
        [
            'action' => 'talk',
            'text' => 'To add a reply, please leave a message after the beep, then press the pound key',
            'voiceName' => 'Brian'
        ],
        [
            'action' => 'record',
            'endOnKey' => '#',
            'beepStart' => true
        ]
    ]);