The Translator is responsible to translate the text of the notifications with the custom languages that you'll define in the configuration file. Translations are cached in storage/app/notifynder in a json format. Usage: [ 'it' => [ 'name.category' => 'text to {parse value} translate' ] ]
Inheritance: implements Fenos\Notifynder\Contracts\NotifynderTranslator
 /** @test */
 function it_translate_a_notification()
 {
     $translation = $this->translator->translate('it', 'welcome');
     $this->assertEquals('benvenuto', $translation);
 }